Getting Started

Quickstart

We recommend using the SDK in Athena Notebooks.

Install Athena Python SDK

1!pip install -U athena-intelligence

Initialize Athena client

1import os
2
3ATHENA_API_KEY = os.environ["ATHENA_API_KEY"]
4
5from athena import Model, Tools
6from athena.client import Athena
7
8athena = Athena(
9 api_key=ATHENA_API_KEY,
10)

To get API early access, reach out to team@athenaintelligence.ai

Continue

Explore examples and sample notebooks of end-to-end workflows with Athena SDK. Click Athena Notebooks -> File Viewer -> Sample Notebooks.