JamesWang
JamesWang

Reputation: 1545

pycharm - Does Pycharm have debugging mode for API debugging

I use Pycharm for my Python written API and wondering if there is kind of debugging mode in Pycharm that when I make http.get request from my browser to this API it can run in debugging mode so that I can check code line by line (as well as creating breaking point...)? Thanks.

Upvotes: 0

Views: 1307

Answers (1)

Sanyam Goel
Sanyam Goel

Reputation: 9

Yes, the debugging mode is available in Pycharm also available in Community Edition. You have to make configuration of your server and directly run the API with Pycharm button

Kindly follow the JetBrains guide links:

  1. https://www.jetbrains.com/help/pycharm/debugging-code.html
  2. https://www.jetbrains.com/help/pycharm/part-1-debugging-python-code.html
  3. https://www.jetbrains.com/help/pycharm/debugging-your-first-python-application.html

Upvotes: 1

Related Questions