Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ra101/fpdb.py
Forkable Python Debugger, a wrapper on python-pdb to debug forked child processes as well (multi-threaded and multi-processing code).
https://github.com/ra101/fpdb.py
fork forked-pdb multiprocessing multithreading pdb python python3 threading
Last synced: 3 days ago
JSON representation
Forkable Python Debugger, a wrapper on python-pdb to debug forked child processes as well (multi-threaded and multi-processing code).
- Host: GitHub
- URL: https://github.com/ra101/fpdb.py
- Owner: ra101
- License: mit
- Created: 2023-12-11T05:38:18.000Z (about 1 year ago)
- Default Branch: core
- Last Pushed: 2024-12-17T19:07:14.000Z (22 days ago)
- Last Synced: 2024-12-17T20:20:00.227Z (21 days ago)
- Topics: fork, forked-pdb, multiprocessing, multithreading, pdb, python, python3, threading
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FPdb: A Forkable Python Debugger
A wrapper on python-pdb to debug forked child processes as well (multi-threaded and multi-processing code).
### Installation
```bash
pip install git+https://github.com/ra101/fpdb.py.git# Install with other ratools.py utils.
pip install git+https://github.com/ra101/ratools.py.git
```### Usage
```python
import fpdb
fpdb.set_trace()
```