Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 days 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 (about 12 years ago)
- Default Branch: main
- Last Pushed: 2023-06-16T15:58:22.000Z (over 1 year ago)
- Last Synced: 2024-05-05T10:45:18.482Z (6 months 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: 11
- Forks: 13
- 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)
```[![Latest PyPI Release](https://img.shields.io/pypi/v/itertable.svg)](https://pypi.org/project/itertable)
[![Release Notes](https://img.shields.io/github/release/wq/itertable.svg)](https://github.com/wq/itertable/releases)
[![License](https://img.shields.io/pypi/l/itertable.svg)](https://github.com/wq/itertable/blob/master/LICENSE)
[![GitHub Stars](https://img.shields.io/github/stars/wq/itertable.svg)](https://github.com/wq/itertable/stargazers)
[![GitHub Forks](https://img.shields.io/github/forks/wq/itertable.svg)](https://github.com/wq/itertable/network)
[![GitHub Issues](https://img.shields.io/github/issues/wq/itertable.svg)](https://github.com/wq/itertable/issues)[![Tests](https://github.com/wq/itertable/actions/workflows/test.yml/badge.svg)](https://github.com/wq/itertable/actions/workflows/test.yml)
[![Python Support](https://img.shields.io/pypi/pyversions/itertable.svg)](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