Metadata-Version: 2.1
Name: list-flatten
Version: 0.1.4
Summary: A simple python package to flatten a list of lists. Works for 2d and 3d lists.
Home-page: https://github.com/SampurnaC/list-flatten
License: MIT
Author: Sampurna Chapagain
Author-email: sampurna.chapagainnn@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT 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
Project-URL: Repository, https://github.com/SampurnaC/list-flatten
Description-Content-Type: text/markdown

# list-flatten

list-flatten is a Python library used to flatten a list of lists. Works for 2d and 3d lists.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.

```bash
pip install list-flatten
```

## Usage

```python
import list-flatten as flatten_list2darr

# returns 'words'
print(flatten_list2darr([[1,2], [3,4,5]]))


## Contributing

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT](https://choosealicense.com/licenses/mit/)

