I want to convert the contents of *.sav file into a *.csv file in Python. I have written the following lines of code to access the details of variables in *.sav file. Now, I
I know that this solution uses R instead of python, but it is really simple and works well.
library(foreign) write.table(read.spss("inFile.sav"), file="outFile.csv", quote = TRUE, sep = ",")