Metadata-Version: 1.1
Name: python-debug
Version: 0.1
Summary: Useful debugging tools.
Home-page: https://github.com/un1t/python-debug
Author: Ilya Shalyapin
Author-email: ishalyapin@gmail.com
License: MIT License
Download-URL: https://github.com/un1t/python-debug/tarball/master
Description: #  python-debug
        
        Useful debugging tools.
        
        ## Save text to temp file
        
            >>> text = 'Lorem ipsum dolor sit amet,\n consectetur adipiscing elit...'
            >>> import pydebug
            >>> pydebug.save(text)
            '/tmp/tmpSTTRow'
        
        ## Use less from python console
        
            >>> text = 'Lorem ipsum dolor sit amet,\n consectetur adipiscing elit...'
            >>> import pydebug
            >>> pydebug.less(text)
        
        ## Use ack-grep from python console
        
            >>> text = 'Lorem ipsum dolor sit amet,\n consectetur adipiscing elit...'
            >>> import pydebug
            >>> pydebug.grep(text, '-i lorem')
            Lorem ipsum dolor sit amet, consectetur adipiscing elit...
        
        ## XML formatting
        
            >>> xml = '<settings><a>hellow world</a></settings>'
            >>> import pydebug
            >>> print pydebug.xmlformat(xml)
            <settings>
              <a>hellow world</a>
            </settings>
        
        
Keywords: django
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Requires: python (>= 2.5)
