Itertable
⇔ IterTable is a Pythonic API for iterating through tabular data formats, including CSV, XLSX, XML, and JSON.
Install / Use
/learn @wq/ItertableREADME
IterTable is a Pythonic API for iterating through tabular data formats, including CSV, XLSX, XML, and JSON.
from itertable import load_file
for row in load_file("example.xlsx"):
print(row.date, row.name)
Documentation
Extending IterTable <br> BaseIter • Loaders • Parsers • Mappers
