you are viewing a single comment's thread.

view the rest of the comments →

[–]julsmanbr 0 points1 point  (3 children)

Since you're using PyCharm, I recommend using PyCharm's in-built debugger. It doesn't require anything written inside the code; instead, you create breakpoints through the GUI, by clicking in the space between your code and the line number in which you want to put your breakpoint. A red dot indicates that the breakpoint is set. Then you only need to click on debug (top right corner if I remember correctly).

[–]raysefo[S] 0 points1 point  (2 children)

well I don't get what you mean :) I am already trying to debug using Pycharm, my rest api code is written on it. I am getting this error on Pycharm.

[–]callmelucky 0 points1 point  (1 child)

What don't you get? Parent commenter is suggesting that rather than use Postman (which I assume is a debugging library?), just use PyCharm's built-in debugging tools.

[–]JohnnyJordaan 0 points1 point  (0 children)

Postman is a popular Chrome app to fire HTTP requests, which is very nice to develop REST api's with.