Metadata-Version: 2.1
Name: pycommons-lang
Version: 0.0.4
Summary: Python Commons Lang
Home-page: https://github.com/shashankrnr32/pycommons-lang
License: Apache-2.0
Author: Shashank Sharma
Author-email: shashankrnr32@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
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
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: importlib_metadata
Requires-Dist: pycommons-base (==0.0.5)
Description-Content-Type: text/markdown

# pycommons-lang

[![PyPI](https://img.shields.io/pypi/v/pycommons-lang)](https://pypi.org/project/pycommons-lang/)
![versions](https://img.shields.io/pypi/pyversions/pycommons-lang.svg)
![PyPI - License](https://img.shields.io/pypi/l/pycommons-lang)
![PyPI - Downloads](https://img.shields.io/pypi/dw/pycommons-lang)

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

Python Commons Lang package inspired by [Apache Commons Lang](https://commons.apache.org/proper/commons-lang/)
available in Java. Along with the utilities, mirroring Apache Commons Lang, this
library also provides additional language features borrowed from Java that can be used in Python like
Streams, Consumer, Predicates, Optional etc.

Visit the [documentation](https://pycommons.github.io/pycommons-lang) to view
the usage of each and every class and feature provided by this library.

## Get Started

To get started with this library, you can install this in your virtual environment
by running

```shell
pip install pycommons-lang
```

With [poetry](https://python-poetry.org/), you can run the following command to add the library to your
project

```shell
poetry add pycommons-lang
```

## License

Apache-2.0 (See [License](LICENSE))

## Author

[Shashank Sharma](https://github.com/shashankrnr32).


