Metadata-Version: 1.1
Name: python-remote-pdb
Version: 0.2.0
Summary: Remote vanilla PDB (over TCP sockets).
Home-page: https://github.com/ionelmc/python-remote-pdb
Author: Ionel Cristian Mărieș
Author-email: contact@ionelmc.ro
License: BSD
Description: =========================
            python-remote-pdb
        =========================
        
        .. image:: https://secure.travis-ci.org/ionelmc/python-remote-pdb.png?branch=master
            :alt: Build Status
            :target: http://travis-ci.org/ionelmc/python-remote-pdb
        
        .. image:: https://coveralls.io/repos/ionelmc/python-remote-pdb/badge.png?branch=master
            :alt: Coverage Status
            :target: https://coveralls.io/r/ionelmc/python-remote-pdb
        
        .. image:: https://badge.fury.io/py/remote-pdb.png
            :alt: PYPI Package
            :target: https://pypi.python.org/pypi/remote-pdb
        
        Remote vanilla PDB (over TCP sockets) *done right*: no extras, proper handling around connection failures and CI.
        Based on `pdbx <https://pypi.python.org/pypi/pdbx>`_.
        
        Usage
        =====
        
        To open a remote PDB on first available port::
        
            from remote_pdb import set_strace
            set_strace() # you'll see the port number in the logs
        
        To use some specific host/port::
        
            from remote_pdb import RemotePdb
            RemotePdb(4444).set_trace()
        
        To connect just run ``telnet 127.0.0.1 4444`` ...
        
        Requirements
        ============
        
        Python 2.6, 2.7, 3.2, 3.3 and PyPy are supported.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
