A better exception printer for Tornado web server.
Project description
tornado-debugger
A debugger for Tornado server for a better development experience.
Tornado's default exception reporter is very basic and primitive. tornado-debugger
is
a drop-in replacement for the built-in debugger.
Install
$ pip install tornado-debugger
Usage
Use the DebuggerMixin
class to automatically add the debugger features.
This mixin class overrides RequestHandler.write_error
method and will display
a detailed error page.
from tornado import web
from tornado_debugger import DebuggerMixin
class IndexHandler(DebuggerMixin, web.RequestHandler):
# always inherit from mixin class BEFORE the base class
def get(self):
1/0
Note: The DebuggerMixin
only works in debug mode (i.e. when debug=True
in the Application settings).
Screenshot
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tornado-debugger-0.9.2.tar.gz
(8.0 kB
view hashes)
Built Distribution
Close
Hashes for tornado_debugger-0.9.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ae185769896ec8b90b248ae1ca5a23ac95a71b428b541965fd53465ae13cabf |
|
MD5 | 7d9b1db35b9df0a52a9e67ceaffeff0e |
|
BLAKE2b-256 | 97f11168cd83a05b6cb60dcc7daf6068223201d7407c5124642b12cd513d6194 |