> ## Documentation Index
> Fetch the complete documentation index at: https://docs.epigos.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Started

> Set up the Python SDK in your application

The Epigos Python Package is a python wrapper around the core Epigos AI web application and REST API.

<Card title="Python SDK" icon="github" href="https://github.com/Epigos-AI/epigos-python">
  Visit the GitHub Repo
</Card>

<Note>
  You'll need to [Create an API Key](/workspace/api-keys) to
  [Authentication](/api-reference/introduction#authentication) with Epigos AI.
</Note>

## Install

To add epigos to your project simply install with `pip`:

```bash theme={null}
pip install epigos
```

or with `poetry`:

```bash theme={null}
poetry add epigos
```

## Modules

```python theme={null}
import epigos

client = epigos.Epigos("api_key")

# load classification model
ic = client.classification("model_id")

# load object detection model
od = client.object_detection("model_id")
```

***

Checkout the code on [Github](https://github.com/Epigos-AI/epigos-python)
