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

# Python

> Install the Threadify SDK for Python projects

### Installation

<CodeGroup>
  ```bash pip theme={null}
  pip install threadify-sdk
  ```

  ```bash uv theme={null}
  uv pip install threadify-sdk
  ```
</CodeGroup>

## Import

<CodeGroup>
  ```python Standard Import theme={null}
  from threadify import Threadify
  ```

  ```python With Alias theme={null}
  import threadify
  ```
</CodeGroup>

## Requirements

* **Python version**: 3.9 or higher
* **Dependencies**: Automatically managed by pip

#### Next Steps

<CardGroup cols={2}>
  <Card title="Connecting" icon="plug" href="/core-concepts/connecting">
    Connect to Threadify Engine with your API key
  </Card>

  <Card title="Tracking Workflows" icon="chart-line" href="/core-concepts/tracking-workflows">
    Start tracking your first workflow
  </Card>
</CardGroup>
