Metadata-Version: 2.1
Name: pypiscout
Version: 1.3
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
Description: # 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")
        SCout.error("error")
        SCout.warning("Warning")
        ```
        
        Example output:
        
        <div align="left">
        <img src="https://github.com/holzkohlengrill/SCout/raw/master/output.png" height="160" alt="Output Image: https://github.com/holzkohlengrill/SCout/raw/master/output.png"/>
        </div>
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
