Skip to main content
GitHub Action tests PyPI version

Web-PDB is a web-interface for Python’s built-in PDB debugger. It allows to debug Python scripts remotely in a web-browser.

Important Notice

Currently this project is in a minimum maintenance mode. It means that I will try to maintain compatibility with new Python versions and address critical issues, if any arise. But at the moment I have no time or resources to develop new features or properly review external contributions. That is why only pull requests with bug fixes will be prioritized. Other issues or pull requests may or may not be reviewed or accepted.

Features

  • Responsive design based on Bootstrap with light and dark modes.

  • Python syntax highlighting with Prism (the default and “Okaida” themes).

  • Supports all PDB features.

  • Standard input and output can be redirected to the web-console to interact with Python scripts remotely.

  • Current file box tracks current position in the file being executed. Red line numbers indicate breakpoints, if any.

  • Globals and Locals boxes show local and global variables in the current scope. Special variables that start and end with double underscores __ are excluded (you can always view them using PDB commands).

  • Command history that stores up to 10 last unique PDB commands (accessed by arrow UP/DOWN keys).

Web-PDB screenshot

Web-PDB UI light mode

Web-PDB screenshot

Web-PDB UI dark mode

Usage

Install Web-PDB into your working Python environment:

pip install web-pdb

Insert the following line into your Python program at the point where you want to start debugging:

import web_pdb; web_pdb.set_trace()

The set_trace() call will suspend your program and open a web-UI at the default port 5555 (port value can be changed). Enter in your browser’s address bar: http://<your Python machine hostname or IP>:5555, for example http://monty-python:5555, and you should see the web-UI like the one on the preceding screenshot. Now you can use all PDB commands and features. Additional Current file, Globals and Locals information boxes help you better track your program runtime state.

Note: it is strongly recommended to work with the Web-PDB web-UI only in one browser session. With more than one browser window accessing the web-UI it may display incorrect data in one or more browser sessions.

Subsequent set_trace() calls can be used as hardcoded breakpoints.

Web-PDB is compatible with the new breakpoint() function added in Python 3.7. Set environment variable PYTHONBREAKPOINT="web_pdb.set_trace" to launch Web-PDB with breakpoint().

Additionally, Web-PDB provides catch_post_mortem context manager that can catch unhandled exceptions raised within its scope and automatically start PDB post-mortem debugging session. For example:

import web_pdb

with web_pdb.catch_post_mortem():
    # Some error-prone code
    assert foo == bar, 'Oops!'

For more detailed info about the Web-PDB API read docstrings in the ./web_pdb/__init__.py file.

The inspect Command

Web-PDB provides inspect or i command that is not present in the original PDB. This command outputs the list of object’s members along with their values. Syntax: inspect <object_name> or i <object_name>.

Special members with names enclosed in double underscores (__) are ignored.

Considerations for Multithreading and Multiprocessing Programs

Multithreading

Web-PDB maintains one debugger instance that traces only one thread. You should not call set_trace() from different threads to avoid race conditions. Each thread needs to be debugged separately one at a time.

Multiprocessing

Each process can have its own debugger instance provided you call set_trace with a different port value for each process. This way you can debug each process in a separate browser tab/window. To simplify this you can use set_trace(port=-1) to select a random port between 32768 and 65536.

Compatibility

  • Python: 3.8+

  • Browsers: All modern browsers should work

Implementation Details

Web-PDB uses a custom asynchronous HTTP server based on asyncio library that runs in a separate thread. Take this into account when using Web-PDB in your environment.

Starting from v2.0, Web-PDB Python backend has no external dependencies, except for Python Standard Library.

License

MIT, see LICENSE.txt.

The debugger icon made by Freepik from www.flaticon.com is licensed by CC 3.0 BY.

Release files for web-pdb 2.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for web-pdb 2.0.1
File Size Uploaded
web_pdb-2.0.1.tar.gz 424.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for web-pdb 2.0.1
File Interpreter ABI Platform
web_pdb-2.0.1-py3-none-any.whl Python 3 none any Details

Total release size: 847.0 kB

Release files / web_pdb-2.0.1.tar.gz

Download URL web_pdb-2.0.1.tar.gz
Size 424.8 kB
Tags Source
SHA-256 checksum
How to use checksums
7d0bf3e5a844780450d02969d72d9ddfd8b514d7d0393babd6dd53c8b746b6e4
BLAKE2b-256 checksum
How to use checksums
a1cc3371492ea814400c6d4c818024f9c0cd5131f8ff41d92a2953804367e2d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.12

Release files / web_pdb-2.0.1-py3-none-any.whl

Download URL web_pdb-2.0.1-py3-none-any.whl
Size 422.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
60144cf565baa4de537bf72da257fe1ec1f6293ecb43c2e9b0dd208402cf8a45
BLAKE2b-256 checksum
How to use checksums
a4bda7aea40336add41aabe375bdbb33d862e832364474caff13498ad103fa56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.12

Release history Release notifications | RSS feed

This release

2.0.1 This release

2 release files

2.0.0

2 release files

1.6.3

2 release files

1.6.2

2 release files

1.6.0

2 release files

1.5.7

2 release files

1.5.6

2 release files

1.5.3

2 release files

1.5.2

2 release files

1.5.1

2 release files

1.5.0

2 release files

1.4.4

2 release files

1.4.3

2 release files

1.4.2

2 release files

1.4.1

2 release files

1.4.0

2 release files

1.3.5

2 release files

1.3.4

2 release files

1.3.3

2 release files

1.3.2

3 release files

1.3.1

3 release files

1.3.0

3 release files

1.2.2

3 release files

1.2.1

3 release files

1.2.0

3 release files

1.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page