How can I debug a cherrypy application using pyscripter?

461 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 best solutions below

0
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.