A high-performance Python client for real-time management of XTablesServer network tables, designed for robotics and complex data-driven systems.
Project description
XTablesClient
XTablesClient is a Python client library for connecting to an XTABLES server, supporting both direct socket and ZeroMQ-based communication. This client provides methods for data operations on network tables and offers convenient functionality for interacting with robotic applications or distributed systems.
Features
- Flexible Initialization: Connects to a server directly or discovers it via mDNS.
- Data Operations: Supports multiple data types (
Boolean,String,Integer,Float,Array,Class,Bytes) for seamless data transmission. - ZeroMQ Support: Configurable ZeroMQ PUSH/PULL and PUB/SUB communication for real-time message streaming.
- Robust Connection Management: Includes automatic reconnection and resubscription after disconnection.
- Subscription: Allows for subscriptions to data updates for specific keys, invoking consumer functions on updates.
Installation
Install xtables-client from PyPI:
pip install xtables-client
Usage
Import and Initialization
from xtables_client import XTablesClient
# Initialize the client
client = XTablesClient(server_ip="192.168.1.10", server_port=1735, useZeroMQ=True)
Data Operations
-
Setting Values
- Boolean:
client.executePutBoolean("key", True) - String:
client.executePutString("key", "value") - Integer:
client.executePutInteger("key", 42) - Float:
client.executePutFloat("key", 3.14)
- Boolean:
-
Retrieving Values
- Get Integer:
value = client.getInteger("key") - Get String:
value = client.getString("key") - Get Float:
value = client.getFloat("key")
- Get Integer:
-
Subscriptions
- Subscribe to updates for a key and handle updates with a custom function:
def my_consumer(key, value): print(f"Update for {key}: {value}") client.subscribeForUpdates("key", my_consumer)
- Subscribe to updates for a key and handle updates with a custom function:
-
ZeroMQ Operations
- Push Data:
client.push_frame("identifier", "message") - Receive Next:
key, value = client.recv_next()
- Push Data:
Connection Management
- Reconnect: Automatic reconnection and re-subscription to previously subscribed keys.
- Shutdown: Gracefully shuts down the client connection.
client.shutdown()
Example
from xtables_client import XTablesClient
client = XTablesClient(useZeroMQ=True, server_port=1735)
client.subscribe("image")
while True:
key, value = client.recv_next()
if key is not None:
print(f"Received data for {key}: {value}")
License
This project is licensed under the MIT License.
This README provides a clear overview of the client’s capabilities, installation instructions, and usage examples to facilitate integration with any XTABLES server.
Project details
Release history Release notifications | RSS feed
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 xtablesclient-4.0.6.tar.gz.
File metadata
- Download URL: xtablesclient-4.0.6.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
834934b4c8f6721142189a17ae5c9174cc7e786f7137250191a60ae0c72d6a68
|
|
| MD5 |
30117920a29683ab317dfc317cb42363
|
|
| BLAKE2b-256 |
2c88fb4273ba16f1272df47923e465d4418d65c37816361bdde2e84acde1db04
|
File details
Details for the file XTablesClient-4.0.6-py3-none-any.whl.
File metadata
- Download URL: XTablesClient-4.0.6-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cb17ba8063302eddd8c8d2fed826b4c7a47aeb64caf875ee32cbbde49c8e468
|
|
| MD5 |
998c0db0459ad48ba5818396d7c02fa3
|
|
| BLAKE2b-256 |
6a354d7427881590a44686a7fa0a467acd27f746c5de14226257aac494256111
|