Metadata-Version: 2.5
Name: talon-client
Version: 0.2.6
Summary: Generated Talon protobuf and gRPC client bindings
License-Expression: AGPL-3.0-only
Requires-Python: >=3.10
Requires-Dist: grpcio<2,>=1.76
Requires-Dist: protobuf<7,>=6.33
Description-Content-Type: text/markdown

# talon-client

Generated Python protobuf and gRPC bindings plus a small Talon clientset facade.

```python
import grpc
from talon_client import ListNamespacesRequest, TalonClient

channel = grpc.insecure_channel("127.0.0.1:50051")
client = TalonClient(channel)
client.namespaces.List(ListNamespacesRequest())
```
