Metadata-Version: 2.1
Name: pypiscout
Version: 1.0
Summary: Prints formatted console output tagged as info, warning or error. Usage is similar to `print()`.
Home-page: https://github.com/holzkohlengrill/SCout
Author: Marcel Schmalzl
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# SCout - Standard Character Out
Small python 3 library to print uniformly formatted console output tagged as

* info,
* warning,
* error or
* header.

If your console supports it coloured output will be used.

# Usage
Similar to `print()`:

```python3
import SCout

SCout.header("Welcome to SCout :)")
SCout.info("Test text")
SCout.error("Error text")
SCout.warning("Warning text")
```

Example output:

<div align="left">
<img src="output.png" height="160" />
</div>


