Evidently Cloud
How to set up Evidently Cloud account.
Last updated
How to set up Evidently Cloud account.
You are looking at the old Evidently documentation: this API is available with versions 0.6.7 or lower. Check the newer version here.
If not yet, sign up for a free Evidently Cloud account.
After logging in, create an Organization and name it.
You will need an access token to interact with Evidently Cloud from your Python environment.
Do I always need this? No, only for data uploads or to run evaluations in Python. You can view data, edit dashboards, upload CSVs and run no-code evaluations without the token.
Click the Key icon in the left menu to open the (Token page). Generate and save the token securely.
To connect to the Evidently Cloud from Python, first install the Evidently Python library.
pip install evidentlyImport the cloud workspace and pass your API token to connect:
Now, you are all set to start using Evidently Cloud! Create your first Project and choose your next step.
Last updated
from evidently.ui.workspace.cloud import CloudWorkspace
ws = CloudWorkspace(
token="YOUR_TOKEN_HERE",
url="https://app.evidently.cloud")