How can I debug a cherrypy application using pyscripter?

434 views Asked by At

Been looking around a bit and I can't seem to find any help on setting up debugging within pyscripter for cherrypy. I have found django, but not cherrypy.

I'm using the remote engine, but the breakpoints aren't catching.

1

There are 1 answers

0
0xc0de On BEST ANSWER

I suggest you can debug with pdb, or preferably with ipdb (which provides some extra features like tab completions). pdb is the standard( & builtin, as opposed to ipdb) python debugger.