https://github.com/wq/itertable
⇔ IterTable is a Pythonic API for iterating through tabular data formats, including CSV, XLSX, XML, and JSON.
https://github.com/wq/itertable
csv data-processing excel export import iterable json openpyxl pandas pythonic spreadsheet tabular-data xml
Last synced: about 1 month ago
JSON representation
⇔ IterTable is a Pythonic API for iterating through tabular data formats, including CSV, XLSX, XML, and JSON.
- Host: GitHub
- URL: https://github.com/wq/itertable
- Owner: wq
- License: mit
- Created: 2012-08-22T19:42:56.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2023-06-16T15:58:22.000Z (almost 2 years ago)
- Last Synced: 2025-03-30T11:02:31.639Z (about 1 month ago)
- Topics: csv, data-processing, excel, export, import, iterable, json, openpyxl, pandas, pythonic, spreadsheet, tabular-data, xml
- Language: Python
- Homepage: https://django-data-wizard.wq.io/itertable/
- Size: 248 KB
- Stars: 51
- Watchers: 10
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-starred - wq/itertable - ⇔ IterTable is a Pythonic API for iterating through tabular data formats, including CSV, XLSX, XML, and JSON. (xml)
README
**IterTable** is a Pythonic API for iterating through tabular data formats, including CSV, XLSX, XML, and JSON.
```python
from itertable import load_filefor row in load_file("example.xlsx"):
print(row.date, row.name)
```[](https://pypi.org/project/itertable)
[](https://github.com/wq/itertable/releases)
[](https://github.com/wq/itertable/blob/master/LICENSE)
[](https://github.com/wq/itertable/stargazers)
[](https://github.com/wq/itertable/network)
[](https://github.com/wq/itertable/issues)[](https://github.com/wq/itertable/actions/workflows/test.yml)
[](https://pypi.python.org/pypi/itertable)### [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