Metadata-Version: 2.1
Name: pyfileloader
Version: 0.0.7
Summary: Load common JSON formats quickly, CSV too.
Author: Scott Walsh
Author-email: scott@invisiblethreat.ca
Maintainer: Scott Walsh
Maintainer-email: scott@invisiblethreat.ca
Project-URL: homepage, https://github.com/invisiblethreat/pyfileloader
Project-URL: documentation, https://github.com/invisiblethreat/pyfileloader/blob/main/README.md
Project-URL: repository, https://github.com/invisiblethreat/pyfileloader
Keywords: json,jsonl,ndjson,gzip,fileloader
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# fileloader

`fileloader` are functions for quickly loading files into lists. Supported types
are `txt`, `jsonl/ndjson`, and `csv`.

### Building

`pip3 install build && python3 -m build`

### Installing

`pip3 install pyfileloader`

### Usage

```
>>> from fileloader import load_jsonl
>>> items = load_jsonl('test-10.jsonl')
>>> len(items)
10
>>> comp_items = load_jsonl('compress-10.jsonl.gz')
>>> len(comp_items)
10
```
