Package common :: Module dbf
[frames] | no frames]

Module dbf

source code

This is a DBF reader which reads Visual Fox Pro DBF format with Memo field

Usage:

>>> rec = readDbf('test.dbf')
>>> for line in rec:
>>>     print line['name']

:date: 13/07/2007

http://www.physics.ox.ac.uk/users/santoso/Software.Repository.html page says code is "available as is without any warranty or support".

Classes
  Dbase
Functions
 
readDbf(filename)
Read the DBF file specified by the filename and return the records as a list of dictionary.
source code
Function Details

readDbf(filename)

source code 

Read the DBF file specified by the filename and return the records as a list of dictionary.

:param: filename File name of the DBF :return: List of rows