Better, prettier commandline logging.
Project description
Better console logging for Python.
Find us on PyPi: https://pypi.python.org/pypi/console-logging
Getting Started
Dependencies
Python 2.6+ or Python 3.5+
termcolor
Installation
pip install console-logging
If building from source: bash pipe from inside this repo.
Usage
New:
from console_logging.console import Console console = Console() console.log("Hello world!")
Old:
from console_logging import console console.log("Hello World!")
Exhaustive Reference
console.log("This is a log.") console.error("This is an error.") console.info("This is some neutral info.") console.success("This is a success message.") # If using the new usage: console.setVerbosity(4) # verbosity from 1 - 5, in order: ''' [1] Errors [2] Successes [3] Logs [4] Info [5] Secure ''' console.mute() # shorthand for setVerbosity(0)
Example
For an exhaustive example, see tests/example.py.
Credit
termcolor module for colors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for console_logging-0.0.5.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f41a11667c200adefdf9a346a914aeb9d6b919915a0bbc3a69f88ecd3e72d8e0 |
|
MD5 | d3295fda6c3388456ac4eb9472f6e448 |
|
BLAKE2b-256 | 52373031196e48f40a209989ed85f3fa6afa10b957acd118152ee163eeab305d |