https://github.com/idlesign/dbf_light
Light and easy DBF reader
https://github.com/idlesign/dbf_light
cli dbf python python2 python3
Last synced: 6 months ago
JSON representation
Light and easy DBF reader
- Host: GitHub
- URL: https://github.com/idlesign/dbf_light
- Owner: idlesign
- License: bsd-3-clause
- Created: 2018-06-26T12:32:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-18T11:51:25.000Z (about 6 years ago)
- Last Synced: 2025-05-21T17:41:13.562Z (10 months ago)
- Topics: cli, dbf, python, python2, python3
- Language: Python
- Homepage: https://github.com/idlesign/dbf_light
- Size: 115 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING
- License: LICENSE
Awesome Lists containing this project
README
dbf_light
=========
https://github.com/idlesign/dbf_light
.. image:: https://idlesign.github.io/lbc/py2-lbc.svg
:target: https://idlesign.github.io/lbc/
:alt: LBC Python 2
----
|release| |lic| |ci| |coverage|
.. |release| image:: https://img.shields.io/pypi/v/dbf_light.svg
:target: https://pypi.python.org/pypi/dbf_light
.. |lic| image:: https://img.shields.io/pypi/l/dbf_light.svg
:target: https://pypi.python.org/pypi/dbf_light
.. |ci| image:: https://img.shields.io/travis/idlesign/dbf_light/master.svg
:target: https://travis-ci.org/idlesign/dbf_light
.. |coverage| image:: https://img.shields.io/coveralls/idlesign/dbf_light/master.svg
:target: https://coveralls.io/r/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
---
.. code-block:: python
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]`).
.. code-block:: bash
$ dbf_light describe myfile.dbf
$ dbf_light show myfile.dbf