Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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).

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()
```