simpledbf icon indicating copy to clipboard operation
simpledbf copied to clipboard

A simple DBF file converter for Python3

Results 10 simpledbf issues
Sort by recently updated
recently updated
newest added

Whenever I try to load a .dbf file I am getting an error. ``` python >>> Dbf5('myfile.dbf') Traceback (most recent call last): File "", line 1, in File "C:\TARGET\WinPython-64bit-3.3.5.9\python-3.3.5.amd64\lib\site-packages\simpledbf\simpledbf.py", line...

- Code for memo fields. Works only with dBase IV memo fields. - Added parameter to output data with utf-8 codec. Currently used only with csv output.

I am using the versions: Python 3.8.5 simpledbf 0.2.6 When I run: from simpledbf import Dbf5 import pandas as pd dbf = Dbf5 (b "C: \ Clascon6_Tesomatic \ data \\...

I have a lot of DBF files in Dbf3 format. If I try to read with Dbf5 class, the records are shifted by 1 byte and the reading of records...

I have a dbf file where default date is coming as '00000000'. Is there any way to convert all columns into string before changing the format. My current code is-...

I'm working with the National Highway Transportation and Safety Administration's [Fatality Analysis Reporting Systems](https://www.nhtsa.gov/research-data/fatality-analysis-reporting-system-fars) which reports its data in DBF format from 1975-2016. The data starting in 2010 ( ftp://ftp.nhtsa.dot.gov/fars/2010/DBF/FARS2010.zip...

Have a look at my suggested patch: https://github.com/marcusj/simpledbf/pull/1

Change `print` statements to `warning` statements to make them easier to suppress. Alternatively one could use a logger. Let me know if that's preferred. Mike

Hi! I tried to conda install with `conda install -c rnelsonchem simpledbf `, and got the message: ``` UnsatisfiableError: The following specifications were found to be in conflict: - python...

Please add to _get_recs typ M, which is string. I have found this in files generated by a SIEMENS software. Thank you.