I'm in the process of converting really old data from years ago. The DBF won't convert into a CSV file, which I need because I will eventually use the data in SQL
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa5 in position 4: invalid start byte
My full code here:
import dbf
import simpledbf
from simpledbf import Dbf5
db = Dbf5('CREDIT.dbf')
db.to_csv('test.csv')