⇔ IterTable is a Pythonic API for iterating through tabular data formats, including CSV, XLSX, XML, and JSON.
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][docs]
[Installation][installation]
[API][api]
[CLI][cli] • [GIS][gis]
[Extending IterTable][custom]
[BaseIter][base] • [Loaders][loaders] • [Parsers][parsers] • [Mappers][mappers]
[docs]: https://django-data-wizard.wq.io/itertable/
[installation]: https://django-data-wizard.wq.io/itertable/#getting-started [api]: https://django-data-wizard.wq.io/itertable/#overview [cli]: https://django-data-wizard.wq.io/itertable/#command-line-interface [custom]: https://django-data-wizard.wq.io/itertable/custom [base]: https://django-data-wizard.wq.io/itertable/base [loaders]: https://django-data-wizard.wq.io/itertable/loaders [parsers]: https://django-data-wizard.wq.io/itertable/parsers [mappers]: https://django-data-wizard.wq.io/itertable/mappers [gis]: https://django-data-wizard.wq.io/itertable/gis