dbfread
dbfread copied to clipboard
Read DBF Files with Python
returns decoded value if value comes back as bytes
I am reading a memo file where i dont retrive the full length of my field due to different termination of fields. there is a #Todo for this: from dbfread/memo/DB4MemoFile...
How would I be able to import dbf data into a specific schema e.g. For e.g. if table was people.dbf I want to not import into the main public schema...
This allows report files, which are also just dbf files, to be opened. if you rename the memo file foxpro wont be able to open it.
I'm trying to read a database produced by an ancient version of the ACDsee photo manager program (don't ask). When I try to read it simply as: ``` table =...
I ran a benchmark dumping a DBF to CSV 1,000 times using dbfread 2.0.7 and Pandas 0.24.1 and comparing it to https://github.com/yellowfeather/dbf2csv. The file I used was a 1.5 MB...
I wrote this change because I was importing a .dbf file to Pandas. I was continually getting a set of errors of this format: ValueError: could not convert string to...
I'm trying to make a python code for converting a .dbf file into an .xlsx file, but it throws an exception (with the name of a column in question, which...
I am trying to open a simple dbase III file and I am getting ``` File "C:/Users/user/Documents/Python/SAG/dbftest.py", line 4, in test = DBF('SystemRecord.dbf') ``` ``` File "C:\Python36-32\lib\site-packages\dbfread\dbf.py", line 122, in...
This is not something we need to support directly in the code, but it would be nice to have a documented way to create dataclasses from records. I think it...