Metadata-Version: 2.1
Name: pretlog
Version: 0.1.2
Summary: Simple colorizer for python outputs
Author-email: Ekter <ektermoi1@proton.me>
Project-URL: Homepage, https://github.com/Ekter/python-pretty-logger
Project-URL: Issues, https://github.com/Ekter/python-pretty-logger/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: COPYING
Requires-Dist: colorama

# Python pretty logger
Simple colorizer for python outputs. Has some useful features for approaching the behavior of print, but we are not there yet :)

Example:
```python
import pretlog as pl

pl.error("This is an error message")
pl.warning("This is a warning message")
pl.info("This is an info message")
pl.valid("This is a valid message")
```
