Name | pudb JSON |
Version |
2024.1.3
JSON |
| download |
home_page | None |
Summary | A full-screen, console-based Python debugger |
upload_time | 2024-10-18 17:04:01 |
maintainer | None |
docs_url | None |
author | None |
requires_python | ~=3.8 |
license | None |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
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": null,
"name": "pudb",
"maintainer": null,
"docs_url": null,
"requires_python": "~=3.8",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Andreas Kloeckner <inform@tiker.net>",
"download_url": "https://files.pythonhosted.org/packages/36/27/fb087bdf2cd9c8e56d0347b863ce5995967c15a3e2a0b9245c7a8f6f1598/pudb-2024.1.3.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": null,
"summary": "A full-screen, console-based Python debugger",
"version": "2024.1.3",
"project_urls": null,
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e400592eeb47eb30d9a4e34512eb1208537546c1073d43cabe7def26d89a7134",
"md5": "fa317e87d868aefe6cebbb92f66d8831",
"sha256": "b1c64447fcee5848d0376231672b97ca8580ca6d3297c82cba6b0ba5bd5ee640"
},
"downloads": -1,
"filename": "pudb-2024.1.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "fa317e87d868aefe6cebbb92f66d8831",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "~=3.8",
"size": 87963,
"upload_time": "2024-10-18T17:03:59",
"upload_time_iso_8601": "2024-10-18T17:03:59.234003Z",
"url": "https://files.pythonhosted.org/packages/e4/00/592eeb47eb30d9a4e34512eb1208537546c1073d43cabe7def26d89a7134/pudb-2024.1.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3627fb087bdf2cd9c8e56d0347b863ce5995967c15a3e2a0b9245c7a8f6f1598",
"md5": "dc73886506e57c8ba2116e5cbe112fb8",
"sha256": "264f239e0538e52e83d3d020143100b3171cae17227674bb1b9f8b075f34849c"
},
"downloads": -1,
"filename": "pudb-2024.1.3.tar.gz",
"has_sig": false,
"md5_digest": "dc73886506e57c8ba2116e5cbe112fb8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "~=3.8",
"size": 219443,
"upload_time": "2024-10-18T17:04:01",
"upload_time_iso_8601": "2024-10-18T17:04:01.267450Z",
"url": "https://files.pythonhosted.org/packages/36/27/fb087bdf2cd9c8e56d0347b863ce5995967c15a3e2a0b9245c7a8f6f1598/pudb-2024.1.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-18 17:04:01",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "pudb"
}