Skip to main content

Accelerated communication library using Zenoh for robotics and AI

Project description

DexComm - High-Performance Communication Library

High-efficiency pub/sub and RPC for robotics and AI. Zero configuration required.

Installation

System Dependencies

Linux (Ubuntu/Debian):

sudo apt-get update
sudo apt-get install ffmpeg libjpeg-turbo8 -y

macOS:

brew install ffmpeg libjpeg-turbo

Install

pip install dexcomm

dexcomm-video has been merged into dexcomm; current users should install only dexcomm.

Platform Support

  • Python: 3.10+
  • Linux: x86_64, aarch64
  • macOS: x86_64, arm64 (Apple Silicon)

Quick Start

Raw API (Simplest)

from dexcomm import Publisher, Subscriber
from dexcomm.codecs import PickleDataCodec

# Publisher
pub = Publisher("sensor/temperature", encoder=PickleDataCodec.encode)
pub.publish({"value": 25.5, "unit": "celsius"})

# Subscriber
sub = Subscriber("sensor/temperature",
                 decoder=PickleDataCodec.decode,
                 callback=lambda msg: print(f"Received: {msg}"))

Node Pattern (ROS-like)

from dexcomm import Node
from dexcomm.codecs import PickleDataCodec

class RobotController:
    def __init__(self):
        self.node = Node("controller", namespace="robot1")
        self.cmd_pub = self.node.create_publisher("cmd_vel", encoder=PickleDataCodec.encode)
        self.node.create_subscriber("odometry", self.on_odometry, decoder=PickleDataCodec.decode)

    def on_odometry(self, msg):
        self.cmd_pub.publish({"linear": 0.5, "angular": 0.0})

robot = RobotController()
input("Press Enter to stop...\n")

Manager Pattern (Dynamic Topics)

from dexcomm import SubscriberManager
from dexcomm.codecs import PickleDataCodec

manager = SubscriberManager()

# Add/remove topics at runtime
manager.add("sensors/lidar", callback=lambda msg: print(msg), decoder=PickleDataCodec.decode)
manager.add("sensors/imu", callback=lambda msg: print(msg), decoder=PickleDataCodec.decode)
manager.remove("sensors/lidar")

Services (RPC)

from dexcomm import Service, ServiceClient
from dexcomm.codecs import PickleDataCodec

# Server
service = Service("math/add",
                  lambda req: {"sum": req["a"] + req["b"]},
                  request_decoder=PickleDataCodec.decode,
                  response_encoder=PickleDataCodec.encode)

# Client
client = ServiceClient("math/add",
                       request_encoder=PickleDataCodec.encode,
                       response_decoder=PickleDataCodec.decode)
result = client.call({"a": 5, "b": 3})
print(result)  # {"sum": 8}

High-Throughput Data

For video frames, point clouds, and other large payloads, use raw/buffer APIs and latest-only polling to avoid extra Python serialization work:

from dexcomm import LocalFrameBuffer, Publisher, Service, ServiceClient, Subscriber
import numpy as np

frame = np.zeros((1200, 1920, 3), dtype=np.uint8)

pub = Publisher("camera/raw")
pub.publish_buffer(frame)

sub = Subscriber("camera/raw")
latest = sub.get_latest_raw()

service = Service("vision/score", handler=lambda req: b"ok")
client = ServiceClient("vision/score")
client.wait_for_service(timeout=1.0)
response = client.call_buffer(frame, timeout=1.0)

frames = LocalFrameBuffer.shared_memory([1200, 1920, 3], dtype="uint8")
frames.write_from(frame)
target = np.empty_like(frame)
header = frames.read_into(target)

Remote Robot Connection

Connect directly to a remote robot with a single environment variable:

# Port defaults to 7447 if omitted:
export ROBOT_IP=192.168.50.20
# Or with explicit port:
export ROBOT_IP=192.168.50.20:7447

When ROBOT_IP is set, dexcomm switches to client mode and connects directly to the specified address. Port 7447 is used by default if not specified.

Release hardening

Released wheels are built through scripts/build_wheel.py which applies path remapping, symbol stripping, extra ELF-note scrubbing, SBOM removal from the wheel tree, and a pinned Rust toolchain (rust-toolchain.toml) for reproducible output. Debug/trace tracing events are compiled out of release builds via release_max_level_info; INFO/WARN/ERROR logs are preserved for operations.

Verify a wheel locally:

python scripts/verify_wheel_security.py path/to/dexcomm-*.whl

See docs/PACKAGING_HARDENING_PLAN.md for the full roadmap and implementation status.

Tests and CI

pytest tests/unit/ -v
pytest tests/integration/ -v
DEXCOMM_RUN_STRESS=1 pytest tests/stress/ -v
DEXCOMM_RUN_STRESS=1 DEXCOMM_RUN_SOAK=1 DEXCOMM_SOAK_SECONDS=1800 pytest tests/stress/ -v

CI runs Rust checks, Python quality checks, wheel builds, cross-platform unit tests, Linux integration tests, and Linux x86_64/ARM64 stress tests for pushes to main, pull requests targeting main, and merge-queue checks. The separate production validation workflow runs router-backed distributed tests and long-running soak tests on main, nightly, and on demand.

License

Proprietary — Copyright © 2026 Dexmate. All rights reserved.

For licensing inquiries: contact@dexmate.ai

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dexcomm-0.6.0rc1-cp310-abi3-win_amd64.whl (5.5 MB view details)

Uploaded CPython 3.10+Windows x86-64

dexcomm-0.6.0rc1-cp310-abi3-manylinux_2_35_x86_64.whl (18.1 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.35+ x86-64

dexcomm-0.6.0rc1-cp310-abi3-manylinux_2_35_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.35+ ARM64

dexcomm-0.6.0rc1-cp310-abi3-macosx_11_0_arm64.whl (16.8 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

File details

Details for the file dexcomm-0.6.0rc1-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: dexcomm-0.6.0rc1-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for dexcomm-0.6.0rc1-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 7fc59e62403f301fde8cd9fb26f24a37689c81bdd5dbc295602da57f59d401f9
MD5 ed1a14da4d8b9a078434af9671cde148
BLAKE2b-256 4c51cc187969f3cfafca2b4ae339ed5c847ca4c3f7717b2e803b3282c8c3d0e8

See more details on using hashes here.

File details

Details for the file dexcomm-0.6.0rc1-cp310-abi3-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for dexcomm-0.6.0rc1-cp310-abi3-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 d45e992427d91fd04a09502244f263d87aac930c16453c503cb7125b43bd75e8
MD5 a8668b616c4a63f56a52f3faffe1c6e1
BLAKE2b-256 869dca3077d5ae5800cff3d50fcba79acfcf825280bbcfe7af6b36bc378f60f7

See more details on using hashes here.

File details

Details for the file dexcomm-0.6.0rc1-cp310-abi3-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for dexcomm-0.6.0rc1-cp310-abi3-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 5ad7ebc2e10d855d5a2b244affc32f12183cd1fe2b4c6ffc0af596cc5cb411e4
MD5 6eda75483efd54bfd5a9bda2dfbb833a
BLAKE2b-256 5f51531949d3909b69d99de8ec9f29e0fe0019c8b63b933bd78a26fbab77a6d2

See more details on using hashes here.

File details

Details for the file dexcomm-0.6.0rc1-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dexcomm-0.6.0rc1-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97cae5d90a7151be17d9c40455ab0d75889e45358ead80faf2413e4750395da3
MD5 2db55b36ae5d0545d3d35fbb5ea41d1c
BLAKE2b-256 7b05a3b1ae02cc354d7976a721190c4e5dcf6b0fe1e8eb5dfea31f5c71d032a7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page