fabioz / PyDev.Debugger

Sources for the debugger used in PyDev, PyCharm and VSCode Python
Eclipse Public License 1.0
432 stars 122 forks source link

any tutorial to show how to integrate this debugger in IDE project? #194

Closed kingctan closed 3 years ago

kingctan commented 3 years ago

any tutorial to show how to integrate this debugger in IDE project?

fabioz commented 3 years ago

Unfortunately no... The best place to see how to setup things would be in the tests.

Most of what'd be in a client is in one of the following files:

https://github.com/fabioz/PyDev.Debugger/blob/main/tests_python/debugger_unittest.py https://github.com/fabioz/PyDev.Debugger/blob/main/tests_python/debugger_fixtures.py

https://github.com/fabioz/PyDev.Debugger/blob/main/tests_python/test_debugger_json.py covers tests using the Debug Adapter Protocol

https://github.com/fabioz/PyDev.Debugger/blob/main/tests_python/test_debugger.py covers tests using the custom XML protocol.