Is it possible? By debug I mean setting breakpoints, inspect values and advance step by step.
|
|
You can do remote debugging of python web apps over TCP/IP with winpdb. |
|||
|
|
|
I haven't used web2py, but if it runs in a terminal window, you can use standard pdb stuff. Add this line somewhere in your code:
This will invoke the debugger and break. Then you can use PDB commands: n to step to the next line, l to list code, s to step into a function, p to print values, etc. |
|||
|
|
|
One can debug applications built on Web2py using the following set-up:
|
||||
|
|
|
You can also use Visual Studio 2010. Here's how:
This is a nice setup if you already use visual studio. |
|||
|
|
|
Yes, it is possible, Due to the "span prevention" I am still not allowed to post screenshots, but here is a full screenshot hosted at my website: |
|||
|
|
|
I'm debugging web2py applications with Eclipse and PyDev. Here is an article: http://www.web2pyslices.com/main/slices/take_slice/2 |
|||
|
|
|
Here is an article on debugging python with pdb, which will work with web2py. http://sontek.net/debugging-python-with-pdb |
|||
|
|
|
As Carl stated, it is as easy as:
No other plugins or downloads are needed. |
||||
|
|