Jump to content

Dbfread: Difference between revisions

From EDM2
Created page with "'''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 syste..."
 
Ak120 (talk | contribs)
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
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.


==Version==  
==Version==  
* dbfread version 2.05 (2015-11-30)
* 2.0.5 (Nov 2015)
:Last known version
* 2.0.6 (Jun 2016)
* 2.0.7 (Nov 2016)
 
==Licence==
* [[MIT Licence]]
* Author: Ole Martin Bjørndalen


==Links==
==Links==
* [https://github.com/olemb/dbfread dbfread on GitHub]
* [https://github.com/olemb/dbfread dbfread on GitHub]


==Licence==
[[Category:Python]][[Category:xBase]]
Open source software released under the [[MIT Licence]]
 
==Author==
* [[Ole Martin Bjørndalen]]
 
[[Category:Tools]]
[[Category:Python]]
[[Category:Databases]]
[[Category:xBase]]
[[Category:Generic Unix Tools]]
[[Category:MS Windows Tools]]

Latest revision as of 17:03, 23 May 2021

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

  • 2.0.5 (Nov 2015)
  • 2.0.6 (Jun 2016)
  • 2.0.7 (Nov 2016)

Licence

Links