Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • intros
  • live_sources
  • bootstrap4
  • modules
5 results

profiling.py

Forked from Video AG Infrastruktur / website
699 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
profiling.py 189 B
#!/usr/bin/python3
from werkzeug.contrib.profiler import ProfilerMiddleware
from server import app
app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
app.run(debug = True)