I have to dump data from SAS datasets. I found a Python module called sas7bdat.py that says it can read SAS .sas7bdat datasets, and I think it would be simpler and more straigh
I know I'm late for the answer, but in case someone searches for similar question. The best option is:
import sas7bdat from sas7bdat import * foo = SAS7BDAT('/support/sas/locked_data.sas7bdat') # This converts to dataframe: ds = foo.to_data_frame()