Metadata-Version: 2.1
Name: pychunk
Version: 0.1.0
Summary: Chunks an iterator
License: Apache
Author: Bhavani Ravi
Author-email: bhavanicodes@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# PyChunk

A Python library to chunk list based on number of items or number of chunks

## Why?

Python doesn't come with out of box chunking functionality for lists. Hence I thought of writing a library instead of referring stackoverflow everytime

## Tech Used

1. Peotry for package management
2. Pytest for testing
3. Mypy for static code checking

> This is my first time using python types in my project
