Metadata-Version: 2.4
Name: kotharcomputing
Version: 0.80.0
Summary: Python SDK for the Kothar API
Author: Kothar Computing
License-Expression: Apache-2.0
Keywords: kothar,api,sdk
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: poethepoet>=0.30; extra == "dev"
Requires-Dist: ruff>=0.9; extra == "dev"
Requires-Dist: pytest>=8; extra == "dev"
Requires-Dist: build>=1.2; extra == "dev"
Dynamic: license-file

# kotharcomputing

Python SDK for the Kothar API.

- No runtime dependencies (Python standard library only)
- Fully typed public API

## Install

```bash
pip install kotharcomputing
```

## Documentation

- Kothar Computing docs: https://docs.kotharcomputing.com/
- API docs: https://docs.kotharcomputing.com/docs/the-forge/API
- Changelog: https://docs.kotharcomputing.com/changelog/tags/platform

## Usage

```python
from kotharcomputing import KotharClient

client = KotharClient(
    access_token="<api_token>",
)

files = client.workspaces.id("<workspace_id>").files.list()
print(files)
```
