Metadata-Version: 2.4
Name: pyarraytools
Version: 0.1.0
Summary: Flatten, chunk, deduplicate, rotate, shuffle, and group lists
Author: PyLib Contributors
License: MIT
Keywords: array,list,utilities,data-structures
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pyarraytools

Flatten, chunk, deduplicate, rotate, shuffle, and group lists.

## Installation

```bash
pip install pyarraytools
```

## Usage

```python
from pyarraytools import flatten, chunk, deduplicate

flatten([[1, 2], [3, 4]])  # [1, 2, 3, 4]
chunk([1, 2, 3, 4, 5], 2)  # [[1, 2], [3, 4], [5]]
deduplicate([1, 2, 2, 3])  # [1, 2, 3]
```

## License

MIT

