Debbugging dojo for Python developers
Project description
debug dojo, a place for zen debugging
debug-dojo is a Python package providing utilities for enhanced debugging and inspection in the terminal. It leverages rich for beautiful output and offers helpers for side-by-side object comparison, improved tracebacks from rich, and easy integration with different debuggers. All tools can be installed at once or individually, allowing for flexible debugging setups.
Features
- Convenient CLI Quickly run your code with debugging tools enabled.
- Simple API: Install all tools or only what you need.
- Debugger integration: Quickly enable Debugpy, PuDB, PDB, or IPDB as your default debugger.
- Rich tracebacks: Get readable, colorized tracebacks for easier debugging.
- Side-by-side object inspection: Visually compare Python objects, their attributes, and methods in the terminal.
Usage
CLI
Run your Python script with debugging tools enabled using the debug-dojo command:
dojo my_script.py
You can optionally set configuration file and verbose mode:
dojo --config dojo.toml --verbose my_script.py
From the code
In the PuDB style, you can install all debugging tools and enter the debugging mode with a single command:
import debug_dojo.install; b()
object_1 = {"foo": 1, "bar": 2}
object_2 = [1, 2, 3]
p(object_1) # Pretty print an object with Rich
i(object_1) # Inspect an object
c(object_1, object_2) # Compare two objects side-by-side
Where:
b()is a builtin-injected function that sets a breakpoint using PuDB'sset_trace().p(object_1)is pretty printing of an object using Rich.i(object_1)to inspect an object using Rich.c(object_1, object_2)to compare two objects side-by-side.
Configuration
You can configure the debugging tools using a dojo.toml or pyproject.toml file. The configuration allows you to specify which debugger to use, enable or disable features, and set other options.
Example dojo.toml:
debugger = "ipdb"
[features]
rich_inspect = true
rich_print = true
comparer = false
Installation
The package is available on PyPI and can be installed using standard Python package management tools.
pip install debug-dojo
You can also use poetry or uv to add it to your project:
poetry add debug-dojo
uv add debug-dojo
Note that dojo most likely will not work when installed via pipx or uvx, as it relies on the current Python environment dependencies.
Development
Lint and type check
ruff check src/debug_dojo --fix
basedpyright src/debug_dojo
Changelog
v0.3.0 (2025-07-20)
release tag: [v0.3.0]
What's Changed
- New logo for the project.
- Typer used for CLI implementation.
- Dojo is configured via
dojo.tomlorpyproject.toml.
Fixes
- Fixed documentation and history.
v0.2.0 (2025-07-20)
release tag: [v0.2.0]
What's Changed
- Added
dojocommand for easy debugging setup. - Added
p()function for rich printing. - Added history file for tracking changes.
- Moved to
hatchfor building and packaging.
Fixes
- Fixed
pyproject.tomlto point to GitHub repository as the homepage.
v0.1.0 (2025-07-19)
release tag: [v0.1.0]
What's Changed
- Initial module to install debugging tools.
- Debug mode utilities for PuDB, rich tracebacks, and object inspection.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file debug_dojo-0.3.1.tar.gz.
File metadata
- Download URL: debug_dojo-0.3.1.tar.gz
- Upload date:
- Size: 171.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f795179baa11782868f91bad00d5b7bec7c790c38df47997bed775eb45357f8
|
|
| MD5 |
b74d9c7c666ef7dbb4775302cd15fe9e
|
|
| BLAKE2b-256 |
d3af05cb18fb3587e62ffb3d84052cbce1dd65d2db58ae12f2a24c0855967a46
|
File details
Details for the file debug_dojo-0.3.1-py3-none-any.whl.
File metadata
- Download URL: debug_dojo-0.3.1-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e92c2f36a9910e11d787be87219fbe974b3a00953a0178e14bea720616f05f9d
|
|
| MD5 |
27613dcf4b8ce1f6f2a7ea35d6f3e9cb
|
|
| BLAKE2b-256 |
080705a316de17e9b3c84e1f1c7983b303b0be0ab8ad5a447a402414f2bc6d3c
|