Jump to content

Dbfread: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
'''dbfread''' is a small open source [[Python]] library that allows you program to read .dbf files as used by [[xBase]] database systems and applications like accounting systems. It does work out of the box on OS/2 but the [[codepage]] conversion function may need slight alteration for the OS/2 codepage conventions, in most cases that conversion is not needed however.
'''dbfread''' is a small open source [[Python]] library that allows you program to read .dbf files as used by [[xBase]] database systems and applications like accounting systems. It does work out of the box on OS/2 but the codepage conversion function may need slight alteration for the OS/2 codepage conventions, in most cases that conversion is not needed however.


The program is short and sweet while providing features like the codepage conversion mentioned above that most .dbf libraries forget to offer, it does therefore make an excellent small example for those learning Python to take a look at.
The program is short and sweet while providing features like the codepage conversion mentioned above that most .dbf libraries forget to offer, it does therefore make an excellent small example for those learning Python to take a look at.
Line 14: Line 14:


==Author==
==Author==
* [[Ole Martin Bjørndalen]]
*Ole Martin Bjørndalen


[[Category:Python]][[Category:xBase]]
[[Category:Python]][[Category:xBase]]

Revision as of 00:10, 6 February 2017

dbfread is a small open source Python library that allows you program to read .dbf files as used by xBase database systems and applications like accounting systems. It does work out of the box on OS/2 but the codepage conversion function may need slight alteration for the OS/2 codepage conventions, in most cases that conversion is not needed however.

The program is short and sweet while providing features like the codepage conversion mentioned above that most .dbf libraries forget to offer, it does therefore make an excellent small example for those learning Python to take a look at.

Version

  • dbfread version 2.05 (2015-11-30)
Last known version

Links

Licence

Open source software released under the MIT Licence

Author

  • Ole Martin Bjørndalen