UNDER CONSTRUCTION
A Debug Adapter Protocol for the ipdb debugger.
pip install git+https://github.com/mvds314/ipdab.git
Or, clone the repository and install with:
pip install -e .
Just like ipdb
, use ipdab
in the code you want to debug:
print("Hello, world!")
print("Starting ipdab...")
import ipdab
ipdab.set_trace()
print("This will be debugged.")