Metadata-Version: 2.4
Name: darwin-sdk
Version: 0.1.0
Summary: Official Python SDK for Darwin
Author: Darwin
License-Expression: MIT
Project-URL: Documentation, https://docs.darwin.so/sdks/python
Project-URL: Issues, https://github.com/darwin-studios/darwin/issues
Project-URL: Repository, https://github.com/darwin-studios/darwin-python
Keywords: darwin,agent,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: anyio>=3.0.0
Requires-Dist: httpx>=0.23.0
Requires-Dist: pydantic<3,>=1.9.2
Requires-Dist: typing-extensions>=4.0.0
Dynamic: license-file

# Darwin Python SDK

The official Python client for the Darwin API. Fern generates the client from Darwin's reviewed
public OpenAPI contract.

```bash
pip install darwin-sdk
```

```python
import os

from darwin_sdk import Darwin

darwin = Darwin(token=os.environ["DARWIN_API_KEY"])
turn = darwin.agent.create_message(
    content="Help me plan a product launch.",
)
```

See [docs.darwin.so](https://docs.darwin.so/sdks/python) for authentication and API guides.
