A Python debugging library for detailed code execution tracing
Project description
Spewer
A Python debugging library for detailed code execution tracing. This library provides utilities for tracing Python code execution with detailed information about variables, function calls, and execution flow.
Features
- Line-by-line execution tracing: See exactly which lines are being executed
- Function/method call tracing: Trace only function and method calls without line details
- Variable value inspection: View the values of variables at each execution step
- Module filtering: Trace only specific modules or all modules
- Context manager support: Use with
withstatements for automatic cleanup - Lightweight: Minimal overhead and dependencies
Note: Implemented to avoid using pdb manual effort. This is not going to replace pyinstrument, py-spy, and several other performance and profiling debugging tools. This is a simple tool just to counter manual effort of pdb, and it can go deep inside the dependency and print those traces in a basic format which can be done by pyinstrument and other profiling tools as well, but again this is targeting a basic pdb flaw of manual inspection. This is just an inspection tool.
Installation
From PyPI (when published)
pip install spewer
From source
git clone https://github.com/Agent-Hellboy/spewer.git
cd spewer
pip install -e .
Usage
Basic Usage
from spewer import spew, unspew
# Start tracing
spew(show_values=True)
# Your code here
def my_function():
x = 10
y = 20
return x + y
result = my_function()
# Stop tracing
unspew()
Using Context Manager
from spewer import SpewContext
# Automatic start/stop of tracing
with SpewContext(show_values=True):
def my_function():
x = 10
y = 20
return x + y
result = my_function()
Module-Specific Tracing
from spewer import spew, unspew
# Only trace specific modules
spew(trace_names=['my_module'], show_values=True)
# Your code here
import my_module
my_module.some_function()
unspew()
Tracing Without Variable Values
from spewer import SpewContext
# Trace execution without showing variable values
with SpewContext(show_values=False):
def my_function():
x = 10
y = 20
return x + y
result = my_function()
Function-Only Tracing
from spewer import SpewContext
# Trace only function/method calls without line details
with SpewContext(functions_only=True, show_values=True):
def my_function(x, y):
result = x + y
return result
result = my_function(10, 20)
This will output:
__main__:15: my_function()
args: x=10, y=20
API Reference
Functions
spew(trace_names=None, show_values=False, functions_only=False)
Install a trace hook which writes detailed logs about code execution.
Parameters:
trace_names(Optional[List[str]]): List of module names to trace. If None, traces all modules.show_values(bool): Whether to show variable values during tracing.functions_only(bool): Whether to trace only function/method calls instead of line-by-line execution.
unspew()
Remove the trace hook installed by spew().
Classes
SpewContext(trace_names=None, show_values=False, functions_only=False)
Context manager for automatic spew/unspew operations.
Parameters:
trace_names(Optional[List[str]]): List of module names to trace. If None, traces all modules.show_values(bool): Whether to show variable values during tracing.functions_only(bool): Whether to trace only function/method calls instead of line-by-line execution.
SpewConfig(trace_names=None, show_values=True, functions_only=False)
Configuration class for spewer debugging. Provides validation and centralized configuration management.
Parameters:
trace_names(Optional[List[str]]): List of module names to trace. If None, traces all modules.show_values(bool): Whether to show variable values during tracing.functions_only(bool): Whether to trace only function/method calls instead of line-by-line execution.
TraceHook(config)
Core trace hook implementation. This is the low-level class that handles the actual tracing logic.
Parameters:
config(SpewConfig): Configuration object for the trace hook.
Example Output
When tracing with show_values=True, you'll see output like:
__main__:15: x = 10
x=10
__main__:16: y = 20
y=20
__main__:17: result = x + y
x=10 y=20 result=30
__main__:18: print(f"Result: {result}")
result=30
Notes
- The library uses Python's
sys.settrace()which can impact performance - Only one trace hook can be active at a time
- The context manager automatically handles cleanup even if exceptions occur
- Variable inspection works best with simple variable names (avoid complex expressions)
License
This library is based on the Gunicorn debug module released under the MIT license. The original Gunicorn debug module is Copyright (c) 2009-2024 Benoît Chesneau and Copyright (c) 2009-2015 Paul J. Davis.
Attribution
This project builds upon the excellent debugging utilities from the Gunicorn web server project. The core tracing functionality was adapted from Gunicorn's debug module, which provides robust execution tracing capabilities. We've enhanced the original implementation with:
- Type hints for better IDE support
- Context manager integration for automatic cleanup
- Enhanced error handling for problematic objects
- Improved documentation and examples
- Modern Python packaging structure
The original Gunicorn debug module can be found at: https://github.com/benoitc/gunicorn/blob/master/gunicorn/debug.py
Future Enhancements: We plan to further enhance this library with additional features to improve usability, including more output formats, advanced filtering options, and better integration with existing debugging workflows.
Development
Setting up the development environment:
git clone https://github.com/Agent-Hellboy/spewer.git
cd spewer
python3 -m pip install -e ".[dev]"
Pre-commit Hooks
This project uses pre-commit hooks to ensure code quality. The hooks will automatically run on every commit and include:
- Ruff linting: Code linting and auto-fixing
- Ruff formatting: Code formatting
- File checks: Trailing whitespace, end-of-file, YAML validation, etc.
- Security checks: Private key detection, merge conflicts, etc.
To install the pre-commit hooks:
pre-commit install
To run the hooks manually:
pre-commit run --all-files
Note: The examples directory is excluded from pre-commit checks to avoid issues with example files.
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 spewer-0.1.2.tar.gz.
File metadata
- Download URL: spewer-0.1.2.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
718ca4cfdbba26c79f9f4d8f4879939699ba54ec2a71ec89494a147a8c65c86b
|
|
| MD5 |
e2cd09ed78ddda7435b4d7e2184e8d70
|
|
| BLAKE2b-256 |
a082d72631bf0ba212f45c9a71519fd8eab44365b707ebe59b194bf0ca0bb50e
|
File details
Details for the file spewer-0.1.2-py3-none-any.whl.
File metadata
- Download URL: spewer-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
611fb984f0641dfb97a7856a2e03e32b880384753b095da35b9c5b787aa2b0fe
|
|
| MD5 |
1dc298e6a7d58d2047af3b707c26da58
|
|
| BLAKE2b-256 |
fdf7d5ad05df9cfcef12defde520b3f0e6b0df11e0b5cedbf84b884411dcd12a
|