Quick Start¶
Create an account¶
First visit https://engine.exploretech.ai and follow the prompts to create an account. If you need an Organization ID, please reach out to us at info@exploretech.ai.
Create an API Key¶
An API key is what allows you to programmatically access ET Engine via the Python SDK and CLI.
Once you have your account set up, navigate to the API keys page and click the “+ New” button. Fill out the form and you will receive an API key.
Using Your API Key¶
To securely use your API key, set the token to the environment variable ET_ENGINE_API_KEY
, e.g.
export ET_ENGINE_API_KEY=$(cat /path/to/my/api-key.txt)
and then verify that it’s set properly
echo $ET_ENGINE_API_KEY
Install the ET Engine Python SDK and CLI¶
First, make sure you are using Python >=3.11.9. When ready, install the SDK and CLI via pip.
pip install et-engine
pip install et-engine-cli
Start developing¶
See the Examples page to learn how to work with ET Engine.