Lightrun for Flask¶
To run a Flask web app with the Lightrun agent, follow these steps:
- In your application folder, install the Python agent by running
python -m pip install lightrun
-
Add the following code to your application's main
init.py
orapp.py
(The import statement must be added to the main code, not to a specific routed method):try: import lightrun lightrun.enable(company_key="<COMPANY_SECRET>") except ImportError as e: print("Error importing Lightrun: ", e) # Example route @app.route("/") def hello_world(): return "Hello world!"
Last update: November 19, 2024