
Behold, a simple Python Remote Debugger.
Well, it's not really a debugger (yet). It's more of a "Current State of the System".
There are two servers shipped with it: a plain, pickle-based server (meant to be used to develop richer applications, though it may be abandoned in the future), and a simple web server, based on CherryPy.
It's still in beta, but has many neat features, including:
- Listing of all currently running threads. Each entry includes a snapshot of the values of all of their local and global variables, as well as the current stack trace.
- Listing of all loaded modules
sys.pathlisting- SSL support
- Simple username / password authentication
I would be more than happy to take feature requests. Though, the source is available, fairly simple (and hopefully easy to use), and licensed under the MIT license, so you are free to use or modify it as you see fit.
If I have time in the future, I would love to develop some kind of fancy Ajax-based actual remote debugger, with IPython-like functionality, but it probably won't happen for a while.
