https://github.com/s0rg/microdbf
Tiny stream-oriented dbf reader
https://github.com/s0rg/microdbf
Last synced: 7 months ago
JSON representation
Tiny stream-oriented dbf reader
- Host: GitHub
- URL: https://github.com/s0rg/microdbf
- Owner: s0rg
- License: mit
- Created: 2016-02-23T10:03:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-23T11:13:56.000Z (over 9 years ago)
- Last Synced: 2025-01-18T05:31:04.490Z (9 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# microdbf
Tiny pure python stream-oriented dbf reader```python
from microdbf import parse_dbfwith open('some.dbf', 'rb') as fd:
for record in parse_dbf(fd):
print(record)```
---
or
---```python
from microdbf import parse_dbfwith open('some.dbf', 'rb') as fd:
data = fd.read()
for record in parse_dbf(data):
print(record)```
This project is based on [dbfread](https://github.com/olemb/dbfread/) code
# Restrictions
* No memo-files handling (FPT and DBT)
* No deleted records handling# License
-------microdbf is released under the terms of the [MIT license](http://en.wikipedia.org/wiki/MIT_License>)