Metadata-Version: 2.4
Name: dune-sdk
Version: 0.1.1
Summary: Python SDK for Dune sandboxes.
Project-URL: Homepage, https://github.com/dune-cloud/dune-sdk
Author: Dune contributors
License: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: aiohttp>=3.14.1
Requires-Dist: pydantic>=2.0
Requires-Dist: urllib3>=2.7.0
Description-Content-Type: text/markdown

# dune-sdk

## Install

```bash
pip install dune-sdk
```

The import name is `dune`:

```python
from dune import Dune, SandboxParams
```

## Configure

The client reads its endpoints and key from the environment (or pass a
`DuneConfig` explicitly):

```bash
export DUNE_API_URL=https://...       # control plane
export DUNE_PROXY_URL=https://...     # data plane (exec / fs)
export DUNE_API_KEY=...               # bearer token
export DUNE_NAMESPACE=default         # logical grouping bucket
```

## License

Apache-2.0. See [LICENSE](LICENSE).
