Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xibra/python-data-reader
Lightweight Python package that can lazily read large data files.
https://github.com/0xibra/python-data-reader
data-reader file-reader python python-library python3
Last synced: about 2 months ago
JSON representation
Lightweight Python package that can lazily read large data files.
- Host: GitHub
- URL: https://github.com/0xibra/python-data-reader
- Owner: 0xIbra
- Created: 2021-03-30T07:51:47.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-02T01:24:57.000Z (over 3 years ago)
- Last Synced: 2024-10-08T12:41:49.627Z (3 months ago)
- Topics: data-reader, file-reader, python, python-library, python3
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[Data Reader](https://github.com/polkovnik-z/python-data-reader/blob/master/README.md)
===========
> Python package that **lazily** reads data from large **JSON**, **XML** and **CSV** files.Why not use the already existing libs you ask ?
Well, for me, it was crucial to have a small package size that can be deployed to a **Serverless** environment as this was the main goal.This package has only one dependency, and that is `ijson` which itself is small.
Installation
------------
```sh
pip install data-reader
```API Reference
-------------
* [Mapper - `data_reader.mapper`](https://github.com/polkovnik-z/python-data-reader/blob/master/docs/mapper.md)
* Readers
* [CSVReader - `data_reader.readers.csv_reader`](https://github.com/polkovnik-z/python-data-reader/blob/master/docs/csv-reader.md)
* [JSONReader - `data_reader.readers.json_reader`](https://github.com/polkovnik-z/python-data-reader/blob/master/docs/json-reader.md)
* [XMLReader - `data_reader.readers.xml_reader`](https://github.com/polkovnik-z/python-data-reader/blob/master/docs/xml-reader.md)