Metadata-Version: 2.4
Name: yet-another-ansi-lib
Version: 0.1.0
Summary: Cool ANSI styling!
Author: robert-ish
License: MIT
Project-URL: Homepage, https://github.com/robert-ish/yet-another-ansi-lib
Project-URL: Repository, https://github.com/robert-ish/yet-another-ansi-lib
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# yet-another-ansi-lib
Zero-dependency ANSI colors and styles for Python.

## Installation:
```bash
pip install yet-another-ansi-lib
```

## Usage:
```python
from yet_another_ansi_lib import ansi
ansi = ansi()
print(ansi.red("Hello world!"))
```
you can even do:
```python
from yet_another_ansi_lib import ansi
ansi = ansi()
with ansi.styleman('bold', 'red'):
    print('Hello world!')
```

## License:
MIT.
