Metadata-Version: 2.5
Name: vention-grpc-py-sdk
Version: 0.0.65.dev31832050328
Summary: Generated Python gRPC clients for vention-protos
Project-URL: Homepage, https://github.com/VentionCo/vention-protos-clients
Project-URL: Repository, https://github.com/VentionCo/vention-protos-clients
Author: VentionCo
License: Proprietary
Keywords: client,grpc,protobuf,vention
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: grpcio<2,>=1.74.0
Requires-Dist: protobuf<7,>=6.31.1
Description-Content-Type: text/markdown

# vention-grpc-py-sdk

Generated Python gRPC clients for [vention-protos](https://github.com/VentionCo/vention-protos).

This package is produced by [vention-protos-clients](https://github.com/VentionCo/vention-protos-clients). Generated stubs are not committed; CI regenerates them from the `vention-protos` submodule pin before publishing.

## Install

```bash
pip install vention-grpc-py-sdk
```

## Usage

```python
import grpc
from vention.robots.v1 import robot_service_pb2_grpc
from vention import PROTOS_SHA

channel = grpc.insecure_channel("localhost:50550")
stub = robot_service_pb2_grpc.RobotServiceStub(channel)
print(f"built from vention-protos@{PROTOS_SHA}")
```

`PROTOS_SHA` is the `vention-protos` commit this wheel was generated from.
