Metadata-Version: 2.3
Name: archil-openapi
Version: 0.0.4
Summary: Generated low-level Python client for the Archil control plane API
Keywords: archil,openapi
Author: Archil, Inc.
Author-email: Archil, Inc. <support@archil.com>
License: MIT License
         
         Copyright (c) 2026 Archil, Inc.
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Typing :: Typed
Requires-Dist: attrs>=22.2.0
Requires-Dist: httpx>=0.23.0,<0.29.0
Requires-Dist: python-dateutil>=2.8.0,<3
Requires-Dist: pytest>=8 ; extra == 'dev'
Requires-Dist: ruff>=0.14 ; extra == 'dev'
Requires-Python: >=3.10
Project-URL: Documentation, https://docs.archil.com
Project-URL: Homepage, https://archil.com
Provides-Extra: dev
Description-Content-Type: text/markdown

# archil-openapi

Generated low-level Python client for the Archil control plane API.

```sh
pip install archil-openapi
```

```python
from archil_openapi import AuthenticatedClient
from archil_openapi.api.disks import get_disk

client = AuthenticatedClient(
    base_url="https://api.archil.com",
    token="key-...",
)

disk = get_disk.sync(id="dsk-...", client=client)

async def fetch_disk():
    return await get_disk.asyncio(id="dsk-...", client=client)
```

The package is generated from `api/controlplane/openapi.yaml` in this repository.
Use the high-level [`archil`](https://pypi.org/project/archil/) package for the
recommended disk, object, workspace, and agent-tool APIs.

## Publishing

Changes to the canonical OpenAPI schema generate and test this package on every
pull request. After merge, `openapi-release.yml` compares the generated
client with the latest PyPI wheel and publishes the next patch version only
when the generated client changed.

PyPI trusted publishing for `archil-openapi` must use repository
`archil-data/archil`, workflow `openapi-release.yml`, and environment
`pypi`.
