Metadata-Version: 2.4
Name: talon-client
Version: 0.1.3
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 for the Talon gateway.

```python
import grpc
from talon_client.proto import gateway_pb2, gateway_pb2_grpc

channel = grpc.insecure_channel("127.0.0.1:50051")
client = gateway_pb2_grpc.GatewayServiceStub(channel)
client.ListNamespaces(gateway_pb2.ListNamespacesRequest())
```
