Debugging tool thats lets you easily inspect/visualize objects and variables in your running python code in real time.
It uses the Debug Adapter Protocol (DAP) to retrieve the objects in your running python program. It then displays them in a web app.
Everytime you refresh the page, it briefly pauses your running code and displays a snapshot of its current state.
On the project you wish to debug, install debugpy:
pipenv install debugpy
From the project you with to debug:
pipenv run python -m debugpy --listen localhost:5678 your-script.py
Clone this repo and run:
HD_PORT=9000 pipenv run python pov.py
Then open your browser at http://localhost:9000