Metadata-Version: 2.1
Name: goolog
Version: 0.0.4
Summary: colorful printer
Home-page: https://github.com/YiXiaoCuoHuaiFenZi/goolog
Author: YiXiaoCuoHuaiFenZi
Author-email: 249664317@qq.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/YiXiaoCuoHuaiFenZi/goolog/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# goolog
This is local colorful log printer. It prints colorful message for different log level.

## Usage:
```python
from goolog import info, suc, warn, fatal, err

info("This is a info message")
suc("This is a successful message")
warn("This is a warning message")
err("This is a error message")
fatal("This is a fatal error message")
```
![demo.png](https://raw.githubusercontent.com/YiXiaoCuoHuaiFenZi/goolog/main/output/demo.png)

