Metadata-Version: 1.1
Name: lode
Version: 0.2.1
Summary: Tiny and minimalistic logging utility
Home-page: https://github.com/kragniz/lode
Author: Louis Taylor
Author-email: kragniz@gmail.com
License: GPL
Description: ====
        lode
        ====
        
        .. image:: https://pypip.in/v/lode/badge.png
            :target: https://pypi.python.org/pypi/lode
            :alt: Latest PyPI version
        
        .. image:: https://travis-ci.org/kragniz/lode.png?branch=master
            :target: https://travis-ci.org/kragniz/lode
        
        Tiny and minimalistic logging utility module.
        
        Lode is designed to be used in the case where normally simple print statement
        style debugging would be useful, like checking whether or not a section of code
        is executed, but stdout or stderr has been robbed from you by something like a
        devilishly clever test framework.  Rather than try to uncover which dark
        alleyway your calls to print end up, lode just outputs it to a friendly file.
        
        Lode is tested and supported on python versions 2.6, 2.7, 3.2, 3.3 and 3.4.
        
        Installing
        ==========
        
        .. code:: bash
        
            $ pip install lode
        
        Using this thing
        ================
        
        .. code:: python
        
            import lode; lode.log('hi there!')
        
Keywords: logging debugging
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
