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

# Python SDK

> Preview the coming-soon Bevor Security Python SDK

The Bevor Security SDK provides typed async and sync Python clients for security analyses, findings, remediations, and related workflows.

<Warning>
  The Bevor SDK is coming soon and is not published for installation. This reference previews the planned interface; do not run these examples yet.
</Warning>

## Installation preview

```bash Preview — do not run theme={null}
# Coming soon; the package is not publicly installable.
# pip install bevor-security-sdk
```

## Client preview

<CodeGroup>
  ```python Async theme={null}
  from bevor_security_sdk import SecurityClient

  async with SecurityClient(api_key="YOUR_API_KEY") as client:
      analyses = await client.analyses.list()
  ```

  ```python Sync theme={null}
  from bevor_security_sdk.sync_client import SecurityClient

  with SecurityClient(api_key="YOUR_API_KEY") as client:
      analyses = client.analyses.list()
  ```
</CodeGroup>

## Resources

<CardGroup cols={2}>
  <Card title="Analyses" icon="code" href="/sdk-reference/python/analyses">
    Reference for `client.analyses`.
  </Card>

  <Card title="Chats" icon="code" href="/sdk-reference/python/chats">
    Reference for `client.chats`.
  </Card>

  <Card title="Findings" icon="code" href="/sdk-reference/python/findings">
    Reference for `client.findings`.
  </Card>

  <Card title="Remediations" icon="code" href="/sdk-reference/python/remediations">
    Reference for `client.remediations`.
  </Card>

  <Card title="Summary" icon="code" href="/sdk-reference/python/summary">
    Reference for `client.summary`.
  </Card>

  <Card title="Versions" icon="code" href="/sdk-reference/python/versions">
    Reference for `client.versions`.
  </Card>
</CardGroup>
