Metadata-Version: 1.1
Name: console-logging
Version: 0.0.2.1
Summary: Better, prettier commandline logging.
Home-page: https://github.com/pshah123/console-logging
Author: Priansh Shah
Author-email: me@priansh.com
License: MIT
Description: console-logging
        ===============
        
        
        Better console logging for Python.
        
        .. figure:: https://github.com/pshah123/console-logging/raw/master/images/example.png
           :alt: 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
Keywords: logging color colors commandline console error timestamp
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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
