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

# Python SDK (Coming Soon)

> Python SDK for configuring Docker containers to route through the OneCLI gateway. Currently in development. Coming soon.

<Info>The Python SDK is currently in development. Check back soon or follow us on [GitHub](https://github.com/onecli/onecli) for updates.</Info>

The Python SDK will allow you to programmatically configure Docker containers to route through the OneCLI proxy from Python applications.

## Planned installation

```bash theme={null}
pip install onecli
```

## Planned usage

```python theme={null}
from onecli import OneCLI

oc = OneCLI(onecli_url="http://localhost:18080")

# Get container configuration
config = oc.get_container_config()
print(config.env)
print(config.mounts)
```

Want this SDK sooner? [Let us know on GitHub](https://github.com/onecli/onecli/issues).
