Skip to content

mbr/Flask-Debug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-Debug

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.

About

A small debugging helper for Flask.

Resources

License

Stars

Watchers

Forks

Packages

No packages published