Replies: 3 comments
-
Transferring to Q/A. Not a bug in debugpy. |
Beta Was this translation helpful? Give feedback.
-
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 |
Beta Was this translation helpful? Give feedback.
-
There's also this in our wiki that explains how to talk to debugpy: |
Beta Was this translation helpful? Give feedback.
-
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.py
that 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?
Beta Was this translation helpful? Give feedback.
All reactions