agate-dbf 0.2.3#

Build status Coverage status PyPI downloads Version License Support Python versions

agate-dbf adds read support for dbf files to agate.

Important links:

Install#

To install:

pip install agate-dbf

For details on development or supported platforms see the agate documentation.

Usage#

agate-dbf uses a monkey patching pattern to add read for dbf files support to all agate.Table instances.

import agate
import agatedbf

Importing agate-dbf adds new methods to agate.Table.

table = agate.Table.from_dbf('examples/test.dbf')

print(table)

API#

agatedbf.table.from_dbf(cls, path, encoding=None)#

Parse a DBF file.

Parameters:

path – Path to an DBF file to load. Note that due to limitations of the dependency you can not pass a file handle. It must be a path.

Authors#

The following individuals have contributed code to agate-excel:

Changelog#

0.2.3 - February 23, 2024#

  • Add Python 3.8, 3.9, 3.10, 3.11, 3.12 support.

  • Drop support for Python 2.7 (EOL 2020-01-01), 3.4 (2019-03-18), 3.5 (2020-09-13), 3.6 (2021-12-23), 3.7 (2023-06-27).

0.2.2 - July 7, 2020#

  • No longer lowercase column names.

0.2.1 - March 16, 2019#

  • agate-dbf is now tested against Python 3.6 and 3.7.

  • Drop support for Python 3.3 (EOL 2017-09-29).

0.2.0 - December 19, 2016#

  • Remove dependency on monkeypatching.

  • Upgrade required agate to 1.5.0.

0.1.0 - February 5, 2016#

  • Initial version.

License#

The MIT License

Copyright (c) 2016 Christopher Groskopf and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Indices and tables#