Replies: 3 comments
|
Transferring to Q/A. Not a bug in debugpy. |
0 replies
|
You might try this: Debugpy talks the Debug Adapter Protocol (https://microsoft.github.io/debug-adapter-protocol/specification). In order to control the debugger you have to send it messages in that protocol. \ It looks like that |
0 replies
|
There's also this in our wiki that explains how to talk to debugpy: |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I came across this debugger recently, but I am not able to understand how I could attach a custom client to the debugger.
I have a simple Python script
a.pythat I want to debug:At this point, I run the debugger:
Now, I would like to write a simple client in Python, which connects to the debugger and i) get all the defined variables, ii) continue to the next instruction and iii) repeat until there is code to run.
I couldn't find any documentation on that. Could you please guide me on how I could do this?
All reactions