Metadata-Version: 1.0
Name: pudb
Version: 0.91.3
Summary: Python Urwid debugger
Home-page: http://pypi.python.org/pypi/pudb
Author: Andreas Kloeckner
Author-email: inform@tiker.net
License: UNKNOWN
Description: 
        PuDB is a visual debugger for Python. It runs in the same terminal
        where you run your code. Installing it is as easy as::
        
        easy_install pudb
        
        Here's a screenshot:
        
        .. image:: http://tiker.net/pub/pudb-screenshot.png
        
        Features
        --------
        
        Why would you want to use pudb?
        
        * Easy to use!
        * Syntax Highlighting
        * Offers better situational awareness than CLI-based debuggers
        * Single keystroke for most commands
        * Self-documenting
        * Set breakpoints visually
        * Easy access to a Python shell
        
        Getting Started
        ---------------
        
        To start debugging, simply insert::
        
        from pudb import set_trace; set_trace()
        
        into the piece of code you want to debug, or run the entire script with::
        
        python -m pudb.run my-script.py
        
        Getting the Development Version
        -------------------------------
        
        You may obtain the development version using the `Git <http://git-scm.org/>`_
        version control tool.::
        
        git clone http://git.tiker.net/trees/pudb.git
        
        You may also `browse the code <http://git.tiker.net/pudb.git>`_ online.
        
        PuDB relies on the following excellent pieces of software:
        
        * Ian Ward's `urwid <http://excess.org/urwid>`_ console UI library
        * Georg Brandl's `pygments <http://pygments.org>`_ syntax highlighter
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Console :: Curses
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: System :: Recovery Tools
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
