# pdbp (Pdb+) [![](https://img.shields.io/pypi/v/pdbp.svg)](https://pypi.python.org/pypi/pdbp)
<img width="680" alt="Pdb+ Advanced Python Console Debugger" src="https://github.com/mdmintz/pdbp/assets/6788579/221038fd-df12-465e-958d-88eb9436a92d"><br />
**[pdbp (Pdb+)](https://github.com/mdmintz/pdbp)** is an advanced console debugger for Python. It can be used as a drop-in replacement for [pdb](https://docs.python.org/3/library/pdb.html) and [pdbpp](https://github.com/pdbpp/pdbpp).
<p><b>pdbp (Pdb+)</b> makes Python debugging a lot easier (and more fun!)</p>
--------
## Installation:
```bash
pip install pdbp
```
Then add ``import pdbp`` to an ``__init__.py`` of your project, which will automatically make **``Pdb+``** the default debugger at breakpoints:
```python
import pdbp
```
(If using ``flake8`` for code-linting, you may want to add ``# noqa`` to that line):
```python
import pdbp # noqa
```
You can also make ``pdbp`` the default debugger by setting an environmental variable:
```bash
PYTHONBREAKPOINT=pdbp.set_trace
```
## Usage:
To trigger a breakpoint in your code with ``pytest``, add ``--trace`` (to start tests with a breakpoint) or ``--pdb`` (to trigger a breakpoint if a test fails).
To trigger a breakpoint from a pure ``python`` run, use:
```bash
python -m pdbp <script.py>
```
--------
Basic **``Pdb+``** console commands:
``n``, ``c``, ``s``, ``u``, ``d`` => ``next``, ``continue``, ``step``, ``up``, ``down``
(To learn more **Pdb+** console commands, type ``help`` in the **Pdb+** console and press ``Enter/Return``.)
--------
**``pdbp`` (Pdb+)** makes improvements to ``pdbpp`` so that it works in all environments. It also includes other bug-fixes. "Sticky" mode is the default option, which shows multiple lines of code while letting you see where you're going (while typing ``n`` + ``Enter``).
If you somehow reset ``pdb`` to Python's built-in version, you can always replace ``pdb`` with **``pdbp``** again as the default debugger by running this:
```python
import pdb
import pdbp
for key in pdbp.__dict__.keys():
pdb.__dict__[key] = pdbp.__dict__[key]
```
Here's how to customize **``pdbp``**/``pdb`` options if you don't like the default settings: (<i>Shown below are the default settings.</i>)
```python
import pdb
if hasattr(pdb, "DefaultConfig"):
pdb.DefaultConfig.filename_color = pdb.Color.fuchsia
pdb.DefaultConfig.line_number_color = pdb.Color.turquoise
pdb.DefaultConfig.truncate_long_lines = False
pdb.DefaultConfig.sticky_by_default = True
```
You can also trigger **``Pdb+``** activation like this:
```python
import pdbp
pdbp.set_trace()
```
### pdbp (Pdb+) commands:
<img width="760" alt="Pdb+ commands" src="https://user-images.githubusercontent.com/6788579/232948402-8700033f-a1b2-45f6-82e5-6b1a83d3d6c4.png">
### Post Mortem Debug Mode:
<img width="640" alt="Pdb+ Post Mortem Debug Mode" src="https://user-images.githubusercontent.com/6788579/232537816-0b9e9048-724f-48cb-81e3-5cc403109de9.png">
### The ``where`` / ``w`` command, which displays the current stack:
<img width="870" alt="Example of the 'where' command" src="https://user-images.githubusercontent.com/6788579/232962807-2d469603-a1d0-4891-8d0e-f03a4e1d0d00.png">
--------
### Sticky Mode vs Non-Sticky Mode:
The default mode (``sticky``) lets you see a lot more lines of code from the debugger when active. In Non-Sticky mode, only one line of code is shown at a time. You can switch between the two modes by typing ``sticky`` in the **Pdb+** console prompt and pressing ``Enter/Return``.
> **Sticky Mode:**
<img width="600" alt="Pdb+ Stick Mode" src="https://user-images.githubusercontent.com/6788579/204890148-53d2567b-9a56-4243-a7d7-66100a284312.png">
> **Non-Sticky Mode:**
<img width="600" alt="Pdb+ Non-Sticky Mode" src="https://user-images.githubusercontent.com/6788579/204890164-8465bc22-0f20-43f1-8ab7-b4316718a4c6.png">
--------
### Tab completion:
<img width="584" alt="Pdb+ Tab Completion" src="https://user-images.githubusercontent.com/6788579/254074593-31fcd816-7a3f-445d-82e9-fc2c8d4d873c.png">
--------
### Multi-layer highlighting in the same stack:
<img width="536" alt="Pdb+ Advanced Python Console Debugger" src="https://user-images.githubusercontent.com/6788579/207925754-4d4ffce5-be6c-44b6-b614-ae0e800a93d8.png">
### More examples:
**``Pdb+``** is used by packages such as **``seleniumbase``**:
* https://pypi.org/project/seleniumbase/
* https://github.com/seleniumbase/SeleniumBase
--------
<img width="650" alt="Pdb+ Advanced Python Console Debugger" src="https://user-images.githubusercontent.com/6788579/234669562-30dae4ad-1207-47e4-8327-fbd5662c8b9c.png">
--------
(**Pdb+** is maintained by the [SeleniumBase Dev Team](https://github.com/seleniumbase/SeleniumBase))
Raw data
{
"_id": null,
"home_page": "https://github.com/mdmintz/pdbp",
"name": "pdbp",
"maintainer": "Michael Mintz",
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "pdb debugger tab color completion",
"author": "Michael Mintz",
"author_email": "mdmintz@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/87/e5/23c023b7710dd472e87e8262dffd069803930632ccac68f534f384e12ca6/pdbp-1.6.0.tar.gz",
"platform": "Windows",
"description": "# pdbp (Pdb+) [![](https://img.shields.io/pypi/v/pdbp.svg)](https://pypi.python.org/pypi/pdbp)\n\n<img width=\"680\" alt=\"Pdb+ Advanced Python Console Debugger\" src=\"https://github.com/mdmintz/pdbp/assets/6788579/221038fd-df12-465e-958d-88eb9436a92d\"><br />\n\n**[pdbp (Pdb+)](https://github.com/mdmintz/pdbp)** is an advanced console debugger for Python. It can be used as a drop-in replacement for [pdb](https://docs.python.org/3/library/pdb.html) and [pdbpp](https://github.com/pdbpp/pdbpp).\n\n<p><b>pdbp (Pdb+)</b> makes Python debugging a lot easier (and more fun!)</p>\n\n--------\n\n## Installation:\n\n```bash\npip install pdbp\n```\n\nThen add ``import pdbp`` to an ``__init__.py`` of your project, which will automatically make **``Pdb+``** the default debugger at breakpoints:\n\n```python\nimport pdbp\n```\n\n(If using ``flake8`` for code-linting, you may want to add ``# noqa`` to that line):\n\n```python\nimport pdbp # noqa\n```\n\nYou can also make ``pdbp`` the default debugger by setting an environmental variable:\n\n```bash\nPYTHONBREAKPOINT=pdbp.set_trace\n```\n\n## Usage:\n\nTo trigger a breakpoint in your code with ``pytest``, add ``--trace`` (to start tests with a breakpoint) or ``--pdb`` (to trigger a breakpoint if a test fails).\n\nTo trigger a breakpoint from a pure ``python`` run, use:\n\n```bash\npython -m pdbp <script.py>\n```\n\n--------\n\nBasic **``Pdb+``** console commands:\n``n``, ``c``, ``s``, ``u``, ``d`` => ``next``, ``continue``, ``step``, ``up``, ``down``\n\n(To learn more **Pdb+** console commands, type ``help`` in the **Pdb+** console and press ``Enter/Return``.)\n\n--------\n\n**``pdbp`` (Pdb+)** makes improvements to ``pdbpp`` so that it works in all environments. It also includes other bug-fixes. \"Sticky\" mode is the default option, which shows multiple lines of code while letting you see where you're going (while typing ``n`` + ``Enter``).\n\nIf you somehow reset ``pdb`` to Python's built-in version, you can always replace ``pdb`` with **``pdbp``** again as the default debugger by running this:\n\n```python\nimport pdb\nimport pdbp\nfor key in pdbp.__dict__.keys():\n pdb.__dict__[key] = pdbp.__dict__[key]\n```\n\nHere's how to customize **``pdbp``**/``pdb`` options if you don't like the default settings: (<i>Shown below are the default settings.</i>)\n\n```python\nimport pdb\nif hasattr(pdb, \"DefaultConfig\"):\n pdb.DefaultConfig.filename_color = pdb.Color.fuchsia\n pdb.DefaultConfig.line_number_color = pdb.Color.turquoise\n pdb.DefaultConfig.truncate_long_lines = False\n pdb.DefaultConfig.sticky_by_default = True\n```\n\nYou can also trigger **``Pdb+``** activation like this:\n\n```python\nimport pdbp\npdbp.set_trace()\n```\n\n\n### pdbp (Pdb+) commands:\n\n<img width=\"760\" alt=\"Pdb+ commands\" src=\"https://user-images.githubusercontent.com/6788579/232948402-8700033f-a1b2-45f6-82e5-6b1a83d3d6c4.png\">\n\n\n### Post Mortem Debug Mode:\n\n<img width=\"640\" alt=\"Pdb+ Post Mortem Debug Mode\" src=\"https://user-images.githubusercontent.com/6788579/232537816-0b9e9048-724f-48cb-81e3-5cc403109de9.png\">\n\n\n### The ``where`` / ``w`` command, which displays the current stack:\n\n<img width=\"870\" alt=\"Example of the 'where' command\" src=\"https://user-images.githubusercontent.com/6788579/232962807-2d469603-a1d0-4891-8d0e-f03a4e1d0d00.png\">\n\n--------\n\n### Sticky Mode vs Non-Sticky Mode:\n\nThe default mode (``sticky``) lets you see a lot more lines of code from the debugger when active. In Non-Sticky mode, only one line of code is shown at a time. You can switch between the two modes by typing ``sticky`` in the **Pdb+** console prompt and pressing ``Enter/Return``.\n\n> **Sticky Mode:**\n\n<img width=\"600\" alt=\"Pdb+ Stick Mode\" src=\"https://user-images.githubusercontent.com/6788579/204890148-53d2567b-9a56-4243-a7d7-66100a284312.png\">\n\n> **Non-Sticky Mode:**\n\n<img width=\"600\" alt=\"Pdb+ Non-Sticky Mode\" src=\"https://user-images.githubusercontent.com/6788579/204890164-8465bc22-0f20-43f1-8ab7-b4316718a4c6.png\">\n\n--------\n\n### Tab completion:\n\n<img width=\"584\" alt=\"Pdb+ Tab Completion\" src=\"https://user-images.githubusercontent.com/6788579/254074593-31fcd816-7a3f-445d-82e9-fc2c8d4d873c.png\">\n\n--------\n\n### Multi-layer highlighting in the same stack:\n\n<img width=\"536\" alt=\"Pdb+ Advanced Python Console Debugger\" src=\"https://user-images.githubusercontent.com/6788579/207925754-4d4ffce5-be6c-44b6-b614-ae0e800a93d8.png\">\n\n\n### More examples:\n\n**``Pdb+``** is used by packages such as **``seleniumbase``**:\n\n* https://pypi.org/project/seleniumbase/\n* https://github.com/seleniumbase/SeleniumBase\n\n--------\n\n<img width=\"650\" alt=\"Pdb+ Advanced Python Console Debugger\" src=\"https://user-images.githubusercontent.com/6788579/234669562-30dae4ad-1207-47e4-8327-fbd5662c8b9c.png\">\n\n--------\n\n(**Pdb+** is maintained by the [SeleniumBase Dev Team](https://github.com/seleniumbase/SeleniumBase))\n",
"bugtrack_url": null,
"license": "PSF",
"summary": "pdbp (Pdb+): A drop-in replacement for pdb and pdbpp.",
"version": "1.6.0",
"project_urls": {
"Bug Tracker": "https://github.com/mdmintz/pdbp/issues",
"Changelog": "https://github.com/mdmintz/pdbp/releases",
"Download": "https://pypi.org/project/pdbp/#files",
"Homepage": "https://github.com/mdmintz/pdbp",
"PyPI": "https://pypi.org/project/pdbp/",
"Source": "https://github.com/mdmintz/pdbp"
},
"split_keywords": [
"pdb",
"debugger",
"tab",
"color",
"completion"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "d0944899ce3a8518154718b784175e5a602d5050dd250ca45a5398d7436f0b57",
"md5": "1b48d85c42b1c9e4a5618db44e74cb9e",
"sha256": "eea75f697ad5c402b9848457a059a94d519dcb6b8c7ae0db81db067ee4c60eb6"
},
"downloads": -1,
"filename": "pdbp-1.6.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1b48d85c42b1c9e4a5618db44e74cb9e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 21587,
"upload_time": "2024-10-28T01:02:57",
"upload_time_iso_8601": "2024-10-28T01:02:57.992750Z",
"url": "https://files.pythonhosted.org/packages/d0/94/4899ce3a8518154718b784175e5a602d5050dd250ca45a5398d7436f0b57/pdbp-1.6.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87e523c023b7710dd472e87e8262dffd069803930632ccac68f534f384e12ca6",
"md5": "cc3a1d6f6dce8416450b5435bd7b0398",
"sha256": "07d541ea31ba4a89d64ed981b2a71d59d58ef4e995c94b001e9324b5d2e72a37"
},
"downloads": -1,
"filename": "pdbp-1.6.0.tar.gz",
"has_sig": false,
"md5_digest": "cc3a1d6f6dce8416450b5435bd7b0398",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 25412,
"upload_time": "2024-10-28T01:02:59",
"upload_time_iso_8601": "2024-10-28T01:02:59.387455Z",
"url": "https://files.pythonhosted.org/packages/87/e5/23c023b7710dd472e87e8262dffd069803930632ccac68f534f384e12ca6/pdbp-1.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-28 01:02:59",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "mdmintz",
"github_project": "pdbp",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "pdbp"
}