Metadata-Version: 2.0
Name: console-logging
Version: 0.0.1
Summary: Better, prettier commandline logging.
Home-page: https://github.com/pshah123/console-logging
Author: Priansh Shah
Author-email: me@priansh.com
License: MIT
Keywords: logging color colors commandline console error timestamp
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: termcolor
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

# console-logging

Better console logging for Python.

![Showcase](https://github.com/pshah123/console-logging/raw/master/images/example.png "Demo of console-logging")

## Getting Started

### Dependencies

* Python 2.6+ or Python 3.5+
* `termcolor`

### Installation

```
pip install console-logging
```

### Usage

```
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.")
```

### Example

For an exhaustive example, see `tests/example.py`.

### Credit

* `termcolor` module for colors

