Metadata-Version: 2.1
Name: cli-log
Version: 0.1.6
Summary: Command line interface logging.
Home-page: https://github.com/DeltaBotics/cli-log
Author: DeltaBotics
License: MIT
Project-URL: Source, https://github.com/DeltaBotics/cli-log
Keywords: logging
Classifier: Intended Audience :: Developers
Classifier: Topic :: System :: Logging
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# Command Line Interface

This python module is used to make your command line / terminal more fancy when printing / logging certain events.

## Quick install

```bash
pip install cli-log
```

## Examples

```python
import cli

cli.info("Hello world!\nInfo event.")
cli.debug("Debug event.")
cli.warn(prefix="CORE", message="Warning event.")
cli.error("Error event.")
```

```log
[16:30:52 / INFO] Hello world!
[16:30:52 / INFO] Info event.
[16:30:52 / DEBUG] Debug event.
[16:30:52 / WARN][CORE] Warning event.
[16:30:52 / ERROR] Error event.
```
