Python and GIS: Data Interchange

Python read dbf file

import pandas as pd
from simpledbf import Dbf5 \# install it for first use

dbf = Dbf5('test.dbf')
df = dbf.to_dataframe()