Metadata-Version: 2.4
Name: toolkami
Version: 0.1.2
Summary: Python gRPC client for the local toolkami daemon
Author-email: Aperoc <aperoc@users.noreply.github.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/aperoc/toolkami
Project-URL: Source, https://github.com/aperoc/toolkami
Project-URL: Issues, https://github.com/aperoc/toolkami/issues
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: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: grpcio==1.78.0
Requires-Dist: protobuf==6.33.0
Provides-Extra: dev
Requires-Dist: grpcio-tools==1.78.0; extra == "dev"
Requires-Dist: pytest==8.4.2; extra == "dev"
Requires-Dist: build==1.3.0; extra == "dev"
Dynamic: license-file

# toolkami

Python gRPC client for the local `toolkami` daemon.

## Install

```bash
pip install toolkami
```

The packaged distribution downloads the matching Linux x64 daemon from the GitHub release for the package version on first client start. Repository checkouts use the local Cargo debug binary.

## Usage

```python
from toolkami import Client

client = Client.open(tcp_address="127.0.0.1:50061")
print(client.get_version().version)
print(client.ping("python").message)
client.close()
```

## Development

```bash
make proto-generate
make test
make release-build
make integration-smoke-local
```
