Light and easy DBF reader
Project description
https://github.com/idlesign/dbf_light
Description
Light and easy DBF reader
No fancy stuff, just DBF reading for most common format versions.
Python 2.7, 3.5+;
Uses namedtuple for row representation and iterative row reading to minimize memory usage;
Works fine with cyrillic (supports KLADR and CBRF databases);
Reads .dbf from zip files.
API
from dbf_light import Dbf
with Dbf.open('some.dbf') as dbf:
for field in dbf.fields:
print('Field: %s' % field)
print('Rows (%s):' % dbf.prolog.records_count)
for row in dbf:
print(row)
# Read `some.dbf` from zip (ignoring filename case):
with Dbf.open_zip('some.dbf', 'here/myarch.zip', case_sensitive=False) as dbf:
...
CLI
Requires click package (can be installed with: pip install dbf_light[cli]).
$ dbf_light describe myfile.dbf
$ dbf_light show myfile.dbf
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dbf_light-1.0.0.tar.gz
(108.5 kB
view hashes)
Built Distribution
Close
Hashes for dbf_light-1.0.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4ec7552c6738d10102e9c8ecc180e7a5d4c8a02e85673194f49503298d130b5 |
|
MD5 | a41538dda8260b57705e5a4f1a028c5e |
|
BLAKE2b-256 | faf49c367f283adcb57378cc394c5990c812734e84215d9dc5deb4cdc8492022 |