I have dbf database encoded in cp1250 and I am reading this database using folowing code:
import csv from dbfpy import dbf import os import sys filename = s
Try using my dbf library:
import dbf with dbf.Table('test.dbf') as table: dbf.export(table, 'junk.csv')