Metadata-Version: 2.1
Name: staticon
Version: 0.0.3
Summary: A python library for printing pretty status messages
Home-page: https://github.com/nathansmerrill/staticon
Author: Nathan Merrill
Author-email: mathiscool3000@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Staticon
A python library for printing pretty status messages
## Installation
`pip install --user staticon`
## Usage
`message` returns the text to print  
`sprint` calls `message` and prints the output
```python
from staticon import Level, sprint

sprint(Level.INFO, 'This is the info level')
sprint(Level.SUCCESS, 'This is the success level')
sprint(Level.WARNING, 'This is the warning level')
sprint(Level.ERROR, 'This is the error level')
sprint(Level.CRITICAL, 'This is the critical level')
```

