https://github.com/4thel00z/ptdb
Like pdb but with type completions
https://github.com/4thel00z/ptdb
interactive pdb ptpython python
Last synced: 11 months ago
JSON representation
Like pdb but with type completions
- Host: GitHub
- URL: https://github.com/4thel00z/ptdb
- Owner: 4thel00z
- License: gpl-3.0
- Created: 2022-01-10T17:18:59.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-28T08:18:59.000Z (almost 4 years ago)
- Last Synced: 2025-01-29T07:43:59.717Z (about 1 year ago)
- Topics: interactive, pdb, ptpython, python
- Language: Python
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# ptb

## Motivation
pdb sucks, the other packages do weird stuff and type completion does not work in interact mode (looking at you ipdb).
## Installation
```
pip install ptb
```
## Usage
Simple do:
```python3
from ptdb import set_trace
# some where in your code do:
set_trace()
# Then just type the following to be thrown into a ptpython shell
interact
```
## License
This project is licensed under the GPL-3 license.