Installation
Our python agent can be downloaded from pip repository.
pip install ctrlb-heimdall
Once installed, import our agent at the top of your code as follows.
try:
import heimdall
heimdall.start(apikey="<API_KEY>")
except ImportError as e:
print("Error importing Heimdall: ", e)
Now you can run your application as you normally would like
python app.py
Last updated