I was successful in opening a paradox .db file using PyPxLib and now I am searching for some type of code to insert the rows into a Pandas dataframe.
from pypxlib import Table
table = Table('d:/Projects/Lakeport/Data/bbrptfav.db')
try:
for row in table:
print(row)
finally:
table.close()
The resulting data prints out as follows:
Row(Account Code='.5')
Row(Account Code='01', Account Description='PLAN CHECK')
Row(Account Code='02', Account Description='BUILDING PERMIT FEE')
I would like the resulting data to be inserted into a dataframe
Thank you