pudb


Namepudb JSON
Version 2024.1 PyPI version JSON
download
home_page
SummaryA full-screen, console-based Python debugger
upload_time2024-01-16 22:08:26
maintainer
docs_urlNone
authorAndreas Kloeckner
requires_python~=3.8
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            PuDB: a console-based visual debugger for Python
================================================

.. image:: https://gitlab.tiker.net/inducer/pudb/badges/main/pipeline.svg
    :alt: Gitlab Build Status
    :target: https://gitlab.tiker.net/inducer/pudb/commits/main
.. image:: https://github.com/inducer/pudb/workflows/CI/badge.svg?branch=main&event=push
    :alt: Github Build Status
    :target: https://github.com/inducer/pudb/actions?query=branch%3Amain+workflow%3ACI+event%3Apush
.. image:: https://badge.fury.io/py/pudb.png
    :alt: Python Package Index Release Page
    :target: https://pypi.org/project/pudb/

Its goal is to provide all the niceties of modern GUI-based debuggers in a
more lightweight and keyboard-friendly package. PuDB allows you to debug code
right where you write and test it--in a terminal.

Here are some screenshots:

* Light theme

  .. image:: doc/images/pudb-screenshot-light.png

* Dark theme

  .. image:: doc/images/pudb-screenshot-dark.png

You may watch screencasts too:

* `Meet Pudb, a debugger for Python code (2020) <https://www.youtube.com/watch?v=bJYkCWPs_UU>`_

* `PuDB Intro Screencast (2009) <http://vimeo.com/5255125>`_

Features
--------

* Syntax-highlighted source, the stack, breakpoints and variables are all
  visible at once and continuously updated. This helps you be more aware of
  what's going on in your program. Variable displays can be expanded, collapsed
  and have various customization options.

* Pre-bundled themes, including dark themes via "Ctrl-P". Could set a custom theme also.

* Simple, keyboard-based navigation using single keystrokes makes debugging
  quick and easy. PuDB understands cursor-keys and Vi shortcuts for navigation.
  Other keys are inspired by the corresponding pdb commands.

* Use search to find relevant source code, or use "m" to invoke the module
  browser that shows loaded modules, lets you load new ones and reload existing
  ones.

* Breakpoints can be set just by pointing at a source line and hitting "b" and
  then edited visually in the breakpoints window.  Or hit "t" to run to the line
  under the cursor.

* Drop to a Python shell in the current environment by pressing "!".
  Or open a command prompt alongside the source-code via "Ctrl-X".

* PuDB places special emphasis on exception handling. A post-mortem mode makes
  it easy to retrace a crashing program's last steps.

* Ability to control the debugger from a separate terminal.

* IPython integration (see `wiki <http://wiki.tiker.net/PuDB>`_)

* Should work with Python 3.6 and newer. (Versions 2019.2 and older continue
  to support Python 2.7.)

Links
-----

`PuDB documentation <https://documen.tician.de/pudb>`_

PuDB also has a `mailing list <http://lists.tiker.net/listinfo/pudb>`_ that
you may use to submit patches and requests for help.  You can also send a pull
request to the `GitHub repository <https://github.com/inducer/pudb>`_

Development Version
-------------------

You may obtain the development version using the `Git <http://git-scm.org/>`_
version control tool.::

    git clone https://github.com/inducer/pudb.git

You may also `browse the code <https://github.com/inducer/pudb>`_ online.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pudb",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Andreas Kloeckner",
    "author_email": "inform@tiker.net",
    "download_url": "https://files.pythonhosted.org/packages/b3/a1/db467e7c828e2ced173d9dbb47abc17ca0e0b3225cb1f4066293e63a2ed9/pudb-2024.1.tar.gz",
    "platform": null,
    "description": "PuDB: a console-based visual debugger for Python\n================================================\n\n.. image:: https://gitlab.tiker.net/inducer/pudb/badges/main/pipeline.svg\n    :alt: Gitlab Build Status\n    :target: https://gitlab.tiker.net/inducer/pudb/commits/main\n.. image:: https://github.com/inducer/pudb/workflows/CI/badge.svg?branch=main&event=push\n    :alt: Github Build Status\n    :target: https://github.com/inducer/pudb/actions?query=branch%3Amain+workflow%3ACI+event%3Apush\n.. image:: https://badge.fury.io/py/pudb.png\n    :alt: Python Package Index Release Page\n    :target: https://pypi.org/project/pudb/\n\nIts goal is to provide all the niceties of modern GUI-based debuggers in a\nmore lightweight and keyboard-friendly package. PuDB allows you to debug code\nright where you write and test it--in a terminal.\n\nHere are some screenshots:\n\n* Light theme\n\n  .. image:: doc/images/pudb-screenshot-light.png\n\n* Dark theme\n\n  .. image:: doc/images/pudb-screenshot-dark.png\n\nYou may watch screencasts too:\n\n* `Meet Pudb, a debugger for Python code (2020) <https://www.youtube.com/watch?v=bJYkCWPs_UU>`_\n\n* `PuDB Intro Screencast (2009) <http://vimeo.com/5255125>`_\n\nFeatures\n--------\n\n* Syntax-highlighted source, the stack, breakpoints and variables are all\n  visible at once and continuously updated. This helps you be more aware of\n  what's going on in your program. Variable displays can be expanded, collapsed\n  and have various customization options.\n\n* Pre-bundled themes, including dark themes via \"Ctrl-P\". Could set a custom theme also.\n\n* Simple, keyboard-based navigation using single keystrokes makes debugging\n  quick and easy. PuDB understands cursor-keys and Vi shortcuts for navigation.\n  Other keys are inspired by the corresponding pdb commands.\n\n* Use search to find relevant source code, or use \"m\" to invoke the module\n  browser that shows loaded modules, lets you load new ones and reload existing\n  ones.\n\n* Breakpoints can be set just by pointing at a source line and hitting \"b\" and\n  then edited visually in the breakpoints window.  Or hit \"t\" to run to the line\n  under the cursor.\n\n* Drop to a Python shell in the current environment by pressing \"!\".\n  Or open a command prompt alongside the source-code via \"Ctrl-X\".\n\n* PuDB places special emphasis on exception handling. A post-mortem mode makes\n  it easy to retrace a crashing program's last steps.\n\n* Ability to control the debugger from a separate terminal.\n\n* IPython integration (see `wiki <http://wiki.tiker.net/PuDB>`_)\n\n* Should work with Python 3.6 and newer. (Versions 2019.2 and older continue\n  to support Python 2.7.)\n\nLinks\n-----\n\n`PuDB documentation <https://documen.tician.de/pudb>`_\n\nPuDB also has a `mailing list <http://lists.tiker.net/listinfo/pudb>`_ that\nyou may use to submit patches and requests for help.  You can also send a pull\nrequest to the `GitHub repository <https://github.com/inducer/pudb>`_\n\nDevelopment Version\n-------------------\n\nYou may obtain the development version using the `Git <http://git-scm.org/>`_\nversion control tool.::\n\n    git clone https://github.com/inducer/pudb.git\n\nYou may also `browse the code <https://github.com/inducer/pudb>`_ online.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A full-screen, console-based Python debugger",
    "version": "2024.1",
    "project_urls": {
        "Homepage": "https://documen.tician.de/pudb/",
        "Source": "https://github.com/inducer/pudb",
        "Tracker": "https://github.com/inducer/pudb/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3a1db467e7c828e2ced173d9dbb47abc17ca0e0b3225cb1f4066293e63a2ed9",
                "md5": "65639ff646f9e1f452446f4364b2e47f",
                "sha256": "fc9d6a976a59b590764c8379ec200fecd47faa84259b64efd8cd86066a0af338"
            },
            "downloads": -1,
            "filename": "pudb-2024.1.tar.gz",
            "has_sig": false,
            "md5_digest": "65639ff646f9e1f452446f4364b2e47f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 226023,
            "upload_time": "2024-01-16T22:08:26",
            "upload_time_iso_8601": "2024-01-16T22:08:26.581175Z",
            "url": "https://files.pythonhosted.org/packages/b3/a1/db467e7c828e2ced173d9dbb47abc17ca0e0b3225cb1f4066293e63a2ed9/pudb-2024.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-16 22:08:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "inducer",
    "github_project": "pudb",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "pudb"
}
        
Elapsed time: 0.15871s