Metadata-Version: 2.1
Name: consoler
Version: 0.1.1
Summary: 
Home-page: https://github.com/hactar-is/consoler
License: MIT
Keywords: console,terminal,logging
Author: Hactar
Author-email: systems@hactar.is
Requires-Python: >=3.6,<4.0
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: arrow (>=0.15.5,<0.16.0)
Requires-Dist: loguru (>=0.4.1,<0.5.0)
Project-URL: Repository, https://github.com/hactar-is/consoler
Description-Content-Type: text/markdown

## Consoler

A terminal printer that's totally tailored to how I like terminal printouts. If this happens to also be how you like terminal printouts, this package may well be for you too.

### Installing

`poetry add consoler` or `pip install consoler`

### Usage

    from consoler import console
    console.log("This is a log level print out")
    console.info("This is an info level print out")
    console.warn("This is a warning level print out")

    try:
        1 / 0
    except Exception as e:
        console.error("Oh no!", e)


