Metadata-Version: 1.1
Name: PrintDebug
Version: 0.0.4
Summary: A small debug printing module that prints extra info like filenames, function names, and line numbers. It can also recursively print lists, tuples, and dicts.

Home-page: http://pypi.python.org/pypi/PrintDebug/
Author: Christopher Welborn
Author-email: cj@welbornprod.com
License: LICENSE.txt
Description: PrintDebug
        ==========
        
        A small debug printing module that prints extra info like filenames,
        function names, and line numbers. It can also recursively print objects
        such as lists, tuples, and dicts.
        
        More useful stuff may be added in the future.
        
        Example Usage:
        --------------
        
        ::
        
            from printdebug import printdebug, printobject
            def myfunction():
                printdebug('Hello from myfunction.')
        
            myfunction()
        
            # Output:
            #   myfile.py line #3 in myfunction: Hello from myfunction.
        
            o = {'key1': {'subkey1': 'value1', 'subkey2': 'value2'}}
            printobject(o)
        
            # Output:
            #    key1:
            #        subkey1:
            #            value1
            #        subkey2:
            #            value2
        
        
Keywords: python module library 2 3 print debug
Platform: UNKNOWN
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
