> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.hellosign.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.hellosign.com/_mcp/server.

> Quick reference for the Dropbox Sign Python SDK — install, authenticate, and find links to docs and examples.

# Python SDK

The official Dropbox Sign Python SDK is generated from our [OpenAPI specification](https://github.com/hellosign/hellosign-openapi/blob/main/openapi.yaml) and provides full API coverage.

## Install

```bash
pip install dropbox-sign
```

Package: [`dropbox-sign`](https://pypi.org/project/dropbox-sign) on PyPI

## Authenticate

Pass a `Configuration` to an `ApiClient`, then instantiate API classes such as `SignatureRequestApi`.

```python
from dropbox_sign import Configuration

configuration = Configuration(
    username="YOUR_API_KEY",
)
```

```python
from dropbox_sign import Configuration

configuration = Configuration(
    access_token="YOUR_ACCESS_TOKEN",
)
```

## Resources

* [GitHub repository](https://github.com/hellosign/dropbox-sign-python)
* [Per-method reference docs](https://github.com/hellosign/dropbox-sign-python/tree/main/docs)
* [Working examples](https://github.com/hellosign/dropbox-sign-python/tree/main/examples)
* [Migration guide](/docs/sdks/migration-guides/python) (for users of the legacy `hellosign-python-sdk`)