Metadata-Version: 2.1
Name: fsai-file-split
Version: 0.1.1
Summary: Split a json or jsonl file into different chunks.
Home-page: https://github.com/fsai-dev/fsai-file-split
License: MIT
Author: Michael Mohamed
Author-email: michael@foundationstack.com
Requires-Python: >=3.7.1,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: loguru (>=0.6.0,<0.7.0)
Project-URL: Repository, https://github.com/fsai-dev/fsai-file-split
Description-Content-Type: text/markdown

# fsai-file-split
Split a json or jsonl file into different chunks.

## Installation 
```shell
pip install fsai-file-split
```

## Usage
```shell
file-split \
--input_file_path ./tests/data/test.jsonl \
--save_to_dir /tmp/output/ \
--output_file_name test.jsonl \
--split_by number_of_buckets \
--chunk_size 10
```
