ZROS: ZeroMQ ROS-like framework
Project description
ZROS: A fast, lightweight ROS-like library
ZROS is a fast, lightweight ROS-like library designed to bring the ease of ROS-2 to Python projects that require minimal overhead and high performance, using ZeroMQ for fast, asynchronous communication.
It provides a simple, pure Python alternative for robotic applications, computer vision pipelines, and distributed systems where a full ROS installation might be overkill.
Key Features
- Fast & Lightweight: Built on top of ZeroMQ, ensuring low-latency communication between nodes.
- ROS-like API: Uses familiar concepts like
Node,Publisher,Subscriber,Timer, andspin()making it easy for ROS-2 developers to adapt. - No Complex Build System: Pure Python. No
catkin_make, nocolcon build, nosource setup.bash. Just run your Python scripts. - Computer Vision Ready: Includes a built-in
CvBridgefor seamless OpenCV image transport.
Installation
From PyPI (Recommended)
uv venv
uv pip install zros
From Source
git clone https://github.com/juliodltv/zros.git
cd zros
uv sync
Quick Start
Create a Publisher (publisher.py)
from zros import Node, CvBridge
import cv2
class CameraPublisher(Node):
def __init__(self):
super().__init__("camera_pub")
self.pub = self.create_publisher("video_topic")
self.bridge = CvBridge()
self.cap = cv2.VideoCapture(0)
self.create_timer(1/60, self.timer_callback)
def timer_callback(self):
ret, frame = self.cap.read()
if ret:
# Payload is a dictionary
msg = {
"image": self.bridge.cv2_to_msg(frame),
"info": "My Camera Frame"
}
self.pub.publish(msg)
if __name__ == "__main__":
CameraPublisher().spin()
Create a Subscriber (subscriber.py)
from zros import Node, CvBridge
import cv2
class VideoSubscriber(Node):
def __init__(self):
super().__init__("video_sub")
self.bridge = CvBridge()
self.create_subscriber("video_topic", self.callback)
def callback(self, payload):
img = self.bridge.msg_to_cv2(payload["image"])
cv2.imshow("Video", img)
cv2.waitKey(1)
if __name__ == "__main__":
VideoSubscriber().spin()
Running Examples
You can find another examples in the examples/ directory.
# Terminal 1
uv run zroscore
# Terminal 2
uv run publisher.py
# Terminal 3
uv run subscriber.py
Documentation
For detailed usage instructions, please refer to the ZROS Documentation.
Citation
@software{zros2026,
author = {Julio De La Torre-Vanegas},
title = {ZROS: A fast, lightweight ZeroMQ ROS-like library},
year = {2026},
url = {https://github.com/juliodltv/zros}
}
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 zros-0.1.5.tar.gz.
File metadata
- Download URL: zros-0.1.5.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
741655f066509d10e702f179d1befc40fa27ed5159758bba30f00f8c1ebde514
|
|
| MD5 |
2e4d4cdbb454dd15f06f27f7db2b9ff9
|
|
| BLAKE2b-256 |
f1e75147093a393899063fe75fdcf0dc8ab8b38d3e029f7bc07e27fa61f0810c
|
File details
Details for the file zros-0.1.5-py3-none-any.whl.
File metadata
- Download URL: zros-0.1.5-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1ef662d1bad547a3a4423bc8ca99db18730496727a520eec9a1975ec2b7f0ab
|
|
| MD5 |
befa47be63f60256c7cf5cc57bacb930
|
|
| BLAKE2b-256 |
328561c455ec7325de54670538e65a98dfb62240132ca009bc171f1efbe81846
|