vention-grpc-py-sdk
Generated Python gRPC clients for vention-protos.
Install
pip install vention-grpc-py-sdk
Usage
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.
Vision service backends
The vention/vision/v1 services also ship generated backend interfaces, so calling
code can be written against an ABC and swapped between gRPC and a local
implementation.
from vention.vision.v1 import image_pb2
from vention.vision.v1.vision_service_abc import (
ImageServiceBackend,
create_image_service_backend,
register_image_service_backend,
)
backend = create_image_service_backend("grpc", target="localhost:41051")
response = backend.capture_image(image_pb2.CaptureImageRequest())
class InProcessImageService(ImageServiceBackend):
def capture_image(self, request): ...
def upload_image(self, requests): ...
def download_image(self, request): ...
register_image_service_backend("in_process", InProcessImageService)
backend = create_image_service_backend("in_process")
There is one <Service>Backend ABC, one <Service>GrpcBackend, and one
register_/create_ pair per service in vision_service.proto.
Release files for vention-grpc-py-sdk 0.0.72
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| vention_grpc_py_sdk-0.0.72.tar.gz | 127.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| vention_grpc_py_sdk-0.0.72-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 403.5 kB
Release files / vention_grpc_py_sdk-0.0.72.tar.gz
| Download URL | vention_grpc_py_sdk-0.0.72.tar.gz |
|---|---|
| Size | 127.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
34a6d3ce380ce28d3b845355c8f49ba3fe9e1d0a96f14513ef44b50a0fec7770
|
|
BLAKE2b-256 checksum How to use checksums |
0b379e9f0d436d7398ab5fb6144f426cba4bb285b91082db6ac6509fc67c3b5e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.10.12
|
Release files / vention_grpc_py_sdk-0.0.72-py3-none-any.whl
| Download URL | vention_grpc_py_sdk-0.0.72-py3-none-any.whl |
|---|---|
| Size | 275.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c440238fb354bf7425a17caf851f0052f68b38137e32d30b7832ab9fb1f59e4b
|
|
BLAKE2b-256 checksum How to use checksums |
66691239f6caba5d7ec69185e0538ec57d89aa89d908a877050b9ef285ff84d3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.10.12
|