A python grpc client for calling vention firmware endpoints
Project description
Vention Firmware gRPC Client
A Python gRPC client for calling Vention firmware endpoints. It is commonly referred to as Vention Robot Motion Control Stack (VRMCS)
Features
- Robot Management: Register and manage robots
- Motion Control: Execute movements, plan trajectories, and control robot motion
- Kinematics: Forward and inverse kinematics operations
- Real-time Streaming: Stream robot states, joint states, position data, and alarms
- Operating Modes: Control normal and freedrive modes
- TCP/Payload Configuration: Set tool center point and payload properties
Installation
Install the package using pip:
pip install vention-firmware-grpc-client
Quick Start
from vrmcs.client import VRMCSClient
from vrmcs.types import MoveRequest, JointPosition
# Connect to the VRMCS server
client = VRMCSClient("localhost:50550")
# List available robots
robots = client.list_robots()
for robot in robots.robots:
print(f"Robot ID: {robot.id}")
print(f"Name: {robot.name}")
print(f"Type: {robot.robot_type}")
# Use types for type-safe requests
move_request = MoveRequest(
robot_id="my_robot",
joint_position=JointPosition(positions=[0.0, 0.0, 0.0, 0.0, 0.0, 0.0])
)
response = client.move(move_request)
Requirements
- Python >= 3.10
License
Copyright © Vention
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vention_firmware_grpc_client-0.1.0.tar.gz.
File metadata
- Download URL: vention_firmware_grpc_client-0.1.0.tar.gz
- Upload date:
- Size: 58.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.10.12 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcb03bc37cfe0033d0eddf01f58477fc208d1d0eb7a20c4a65ae8aabadbf781e
|
|
| MD5 |
fd666e5d20f8f9999e198666213e46dd
|
|
| BLAKE2b-256 |
15477ec04cfbf74650956d5d2f3d0b0144de42a7c1c13f64623db9d4621cda54
|
File details
Details for the file vention_firmware_grpc_client-0.1.0-py3-none-any.whl.
File metadata
- Download URL: vention_firmware_grpc_client-0.1.0-py3-none-any.whl
- Upload date:
- Size: 132.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.10.12 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2c92331095fef9e03bc163d62f87289173de0728053a0a5f0e14e21d9f06ff6
|
|
| MD5 |
57603109b794459ea29ddebf169520f6
|
|
| BLAKE2b-256 |
5ea2a44c6dc542240f831bebab8b49a830338f3ce6303bb4e09083df613e9086
|