How to debug Google App Engine scripts using PyScripter

The situation is this: I downloaded the Google App Engine SDK. I wrote my helloworld application, which runs locally on my computer. I have to use PyScripter as an IDE. I cannot use Eclipse, this will not be the right solution for my problem.

In PyScripter, I set "Run Configuration" so that the server instance runs locally (either in "start" mode or in "debug mode"), and it can access the application through a web browser, gaining access to "localhost" ".

Now the problem is that breakpoints are ignored. I set a breakpoint, restarted the browser, and the answer appears without stopping debugging at the breakpoint that I set in my own function. I can’t debug at all.

The question is, how can I debug the application using the configuration you described?

(Note: I already use the python "remote" mechanism in PyScripter to start the local server)

+3
source share
1 answer

I think this is a PyScripter bug . I tested version 1.9.9.7 and the same problem still exists.

+2
source

Source: https://habr.com/ru/post/1707119/


All Articles