Flask-Debug is an extension for Flask that displays various debugging insights during development.
from flask import Flask
from flask_debug import Debug
app = Flask(__name__)
Debug(app)
app.run(debug=True)
It can be manually added but also (using Flask-Appconfig) be automatically instantiated only during development and invisible in production.
Opening http://localhost:5000/_debug will show some information about the application, such as a list of registered views, url maps or configuration values.
See the documentation for more details.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Flask-Debug-0.4.3.tar.gz
(5.9 kB
view details)
File details
Details for the file Flask-Debug-0.4.3.tar.gz.
File metadata
- Download URL: Flask-Debug-0.4.3.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc95339f802d3158ff9cc088f947382209d30942b86f79b221e72141b863f821
|
|
| MD5 |
884cfc8365ae9850405d9aadc3038a96
|
|
| BLAKE2b-256 |
e3a9e54d3ea6a04a809e83eb547bcec65f82a6e77570fbb0c7831e903000b969
|