Metadata-Version: 1.1
Name: outlawg
Version: 0.0.3
Summary: Not your grandmother's logging tool
Home-page: UNKNOWN
Author: Richard Pappalardo
Author-email: rpappalax@gmail.com
License: MPL2
Description: outlawg
        =======================
        
        Description
        -----------
        
        Not your grandmother's logging tool.
        Simple logging, designed for non-application output.
        No timestamping, no component listing with focus on header customization.
        
        |travis| |pypi|
        
        .. |travis| image:: https://travis-ci.org/rpappalax/outlawg.svg?branch=master
            :target: https://travis-ci.org/rpappalax/outlawg
        
        .. |pypi| image:: https://badge.fury.io/py/outlawg.svg
            :target: http://badge.fury.io/py/outlawg
        
        
        Install
        -------
        
        .. code:: bash
        
            $ pip install outlawg 
        
        or
        
        .. code:: bash
        
            $ git clone https://github.com/rpappalax/outlawg.git
            $ cd outlawg
            $ python setup.py develop
        
        Example
        -----
        
        (example output)[https://github.com/rpappalax/outlawg/blob/master/Examples/output.txt]
        
        example code: 
        
        .. code:: bash
        
            from outlawg import Outlawg
        
            out = Outlawg()
            out.header('YOUR HEADER')
            print('some stuff here')
            out.subheader('MY_SUB_HEADER')
            print('some stuff here')
            out.header('YOUR HEADER', 'XL')
            print('some stuff here')
            out.header('YOUR HEADER', 'L')
            print('some stuff here')
            out.header('YOUR HEADER', 'M')
            print('some stuff here')
            out.header('YOUR HEADER', 'S')
            print('some stuff here')
            out.header('YOUR HEADER', 'XL', '~')
            print('some stuff here')
        
            out.header('YOUR HEADER')
            out.subheader('YOUR SUB-HEADER')
            print('some stuff here\n\n\n')
            out.banner('YOUR BANNER')
            print('some stuff here\n\n\n')
        
        
        0.0.1 (2016-03-09)
        ------------------
        
        - [feature] Get the basic function working.
        
        
        How to get more details?
        ------------------------
        
        Use git to see what happend since last release::
        
            git diff 0.9.0...
        
        Or git to see what happend between two releases::
        
            git diff 0.8.0..0.9.0
        
Keywords: [logging,test]
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
