Installation

  1. Our python agent can be downloaded from pip repository.

pip install ctrlb-heimdall
  1. 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)

You can get your api key by clicking the user profile icon > Profile in IDE plugin.

Other configuration parameters can also be specified as mentioned in configuration.

  1. Now you can run your application as you normally would like

python app.py

Do go through Release Notes to read more about current possibilities and limitations.

Last updated