Skip to content

Instantly share code, notes, and snippets.

@rppowell-lasfs
Created April 16, 2018 05:32
Show Gist options
  • Save rppowell-lasfs/d4915cbf33b2505a744876e80aa8b7a9 to your computer and use it in GitHub Desktop.
Save rppowell-lasfs/d4915cbf33b2505a744876e80aa8b7a9 to your computer and use it in GitHub Desktop.
Java/Python DBF notes (convention registration database)

DBF notes

Java

javadbf

// https://mvnrepository.com/artifact/com.linuxense/javadbf
compile group: 'com.linuxense', name: 'javadbf', version: '0.4.0'

Python dbfpy notes

Install

pip install dbfpy

Test / dev

>>> from dbfpy import dbf
>>> db = dbf.Dbf('/Users/rpowell/dev/lasfs/conreg/databases/master.dbf', new=False)

for r in db:
  print r

Python References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment