Replies: 1 comment 2 replies
-
debugpy is a debug adapter that implements the Debug Adapter Protocol. As such, it can be connected to by any DAP client or library that implements the protocol. Since debugpy itself is not a DAP client, it cannot connect to itself; it provides both I'm not familiar with third-party DAP client libraries, so I can't suggest any one in particular. The debugpy test suite has a very basic implementation of the client side, adequate for tests, which could be used as an example if you want to implement your own. Just bear in mind that anything in the |
Beta Was this translation helpful? Give feedback.
-
Hi,
I was wondering if one could connect to the debugger, using either the debupy cli or another python script, rather than VSCode.
Using:
I am running
listen.py
and try to connect via
Will get me this error
When trying to connect via
I am getting another longer error.
Is this a trivial question ? Or would you expect this to be working without using any VSCode ?
It works fine when connecting via VSCode, as described in the docs.
Beta Was this translation helpful? Give feedback.
All reactions