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

# Python SDK

> Interact with Paradime programmatically using the official Python SDK.

The Paradime Python SDK (`paradime-io`) lets you manage Bolt schedules, trigger DinoAI agents, query audit logs, sync lineage data, and more — all from your Python scripts, notebooks, or CI/CD pipelines.

```bash theme={"system"}
pip install paradime-io
```

<Card title="Getting Started" href="/developers/python-sdk/getting-started" icon="play">
  Install the SDK, generate API credentials, and initialize the client.
</Card>

## SDK modules

Each module maps to a Paradime product area with dedicated methods and usage examples.

<CardGroup cols={2}>
  <Card title="Bolt" href="/developers/python-sdk/modules/bolt" icon="bolt">
    Trigger and monitor Bolt schedule runs programmatically.
  </Card>

  <Card title="DinoAI Agents" href="/developers/python-sdk/modules/dinoai-programmable-agents" icon="robot">
    Start agent runs, send prompts, and retrieve results.
  </Card>

  <Card title="Audit Log" href="/developers/python-sdk/modules/audit-log" icon="clipboard-list">
    Query workspace activity logs for security and compliance.
  </Card>

  <Card title="Custom Integration" href="/developers/python-sdk/modules/custom-integration" icon="puzzle-piece">
    Ingest external nodes into Paradime's lineage and catalog.
  </Card>

  <Card title="Lineage Diff" href="/developers/python-sdk/modules/lineage-diff" icon="code-compare">
    Compare lineage versions to understand model-level changes.
  </Card>

  <Card title="Metadata" href="/developers/python-sdk/modules/metadata" icon="database">
    Access and manage workspace metadata.
  </Card>

  <Card title="User Management" href="/developers/python-sdk/modules/user-management" icon="users">
    Invite, update, and remove workspace users.
  </Card>

  <Card title="Workspace Management" href="/developers/python-sdk/modules/workspace-management" icon="building">
    Manage workspace configuration and settings.
  </Card>
</CardGroup>


## Related topics

- [Getting Started](/developers/python-sdk/getting-started.md)
- [Metadata](/developers/python-sdk/modules/metadata.md)
- [Triggering from the API](/products/dino-ai/programmable-agents/api-reference.md)
- [Bolt](/developers/python-sdk/modules/bolt.md)
- [Using Azure Pipelines](/products/bolt/ci-cd/continuous-deployment-with-bolt/using-azure-pipelines.md)
