Hi!
I'm creating an ETL - SQL Server for SAS with python, but my output is a panda dataframe, which I'm not able to convert to sas7bdat with saspy.
I'm using this function:
saspy.dataframe2sasdata(df='mydf',
table="my_clients",
libref='my_lib',
datetimes={'dt_client ' : 'DATE9.'},
outfmts={'id':'11.','payment':'BEST.'}
)
But return a error: AttributeError: 'str' object has no attribute 'columns'
Is this function correct for what I need?