Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/4thel00z/ptdb
Like pdb but with type completions
https://github.com/4thel00z/ptdb
interactive pdb ptpython python
Last synced: about 1 month 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 (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-28T08:18:59.000Z (almost 3 years ago)
- Last Synced: 2024-11-24T16:52:06.038Z (about 1 month 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
![Usage](https://raw.githubusercontent.com/4thel00z/ptdb/master/ptdb.png)
## 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.