How to convert a DBF to CSV? I need, use this library but it gave error: http://pythonhosted.org/dbf
import dbf
dbf.export('crop1-fx')
print 'Done'
"C:\Users\User\Anaconda2\python.exe" "C:/Users/User/Desktop/Python/23/dbf/insertValuesDBF.py" Traceback (most recent call last): File "C:/Users/User/Desktop/Python/23/dbf/insertValuesDBF.py", line 3, in dbf.export('crop1-fx') File "C:\Users\User\Anaconda2\lib\site-packages\dbf\ver_2.py", line 7824, in export table = source_table(table_or_records[0]) File "C:\Users\User\Anaconda2\lib\site-packages\dbf\ver_2.py", line 7956, in source_table table = thingie._meta.table() AttributeError: 'str' object has no attribute '_meta'
Process finished with exit code 1
You almost had it:
The above will create a
crop1-fx.csv
file; however, I'm not sure this will work with a 24-digit numeric field in the table.