Metadata-Version: 2.4
Name: colorog
Version: 1.0.0
Summary: Make Python output not boring!
Author: Alex Holland
Author-email: <alexh9392@hotmail.com>
License: MIT License
Keywords: colorog
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Development Status :: 6 - Mature
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: termcolor
Requires-Dist: colorama
Requires-Dist: affixr
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# colorog

[![PyPI version](https://img.shields.io/pypi/v/colorog.svg?logo=pypi&logoColor=FFE873)](https://pypi.org/project/colorog)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/colorog.svg?logo=python&logoColor=FFE873)](https://pypi.org/project/colorog)
[![GitHub Actions status](https://github.com/termcolor/termcolor/workflows/Test/badge.svg)](https://github.com/termcolor/termcolor/actions)
[![Licence](https://img.shields.io/pypi/l/colorog)](LICENSE.txt)
[![Code style: Black](https://img.shields.io/badge/code%20style-Black-000000.svg)](https://github.com/psf/black)

![Demo](https://raw.githubusercontent.com/tughw/colorog/main/colors.png)

## Installation

### From PyPI

```bash
python3 -m pip install --upgrade colorog
```

### Demo

To see demo output, run:

```bash
python3 -m colorog
```

## Example

```python
from colorog import log_info, log_success

log_info("This is info")
log_success("This is success")
# ...
```
