This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/examples/app_cprofile.py

10 lines
310 B
Python
Raw Normal View History

from werkzeug.middleware.profiler import ProfilerMiddleware
2021-12-01 12:44:24 +00:00
from ereuse_devicehub.devicehub import Devicehub
2021-12-01 12:44:24 +00:00
app = Devicehub(inventory='dbtest')
app.config["SQLALCHEMY_RECORD_QUERIES"] = True
app.config['PROFILE'] = True
app.wsgi_app = ProfilerMiddleware(app.wsgi_app, restrictions=[30])
app.run(debug=True)