A ZeroMQ messaging router and client
Project description
Hydra Router
A standalone ZeroMQ-based message routing system that provides reliable communication between multiple clients and a single server.
Features
- Centralized Message Routing: Routes messages between multiple clients and a single server
- Message Format Conversion: Automatic conversion between internal and router message formats
- Heartbeat Monitoring: Automatic client health monitoring and connection tracking
- Comprehensive Error Handling: Detailed validation and error reporting
- Simple Examples: Includes simple client/server examples for quick testing
- Client Registry Query: Query router for connected client information
Installation
pip install hydra-router
Quick Start
Start the Router
# Basic usage
hydra-router
# Custom configuration
hydra-router --address 0.0.0.0 --port 5556 --log-level INFO
Simple Client/Server Demo
# Terminal 1: Start the router
hydra-router --log-level DEBUG
# Terminal 2: Start the simple server
hydra-server_simple --router tcp://localhost:5556
# Terminal 3: Start the simple client
hydra-client_simple --router tcp://localhost:5556
# Then enter numbers to see their squares calculated by the server
Using the MQClient Library
from hydra_router import MQClient, RouterConstants
# Create a client
client = MQClient(
router_address="tcp://localhost:5556",
client_type=RouterConstants.HYDRA_CLIENT,
client_id="my-client-001"
)
# Connect and send messages
await client.connect()
await client.send_message(my_message)
# Query connected clients
client_table = await client.request_client_registry()
print("Connected clients:", client_table)
Architecture
The Hydra Router system consists of:
- HydraRouter: Central message routing component
- MQClient: Generic client library for applications
- RouterConstants: Message format definitions and constants
- SimpleClient/SimpleServer: Example applications
Configuration
The router supports the following command-line options:
--address, -a: IP address to bind to (default: 0.0.0.0)--port, -p: Port to bind to (default: 5556)--log-level: Logging level (DEBUG, INFO, WARNING, ERROR, default: INFO)--help, -h: Show help message
Requirements
- Python 3.11+
- ZeroMQ (pyzmq)
License
GPL-3.0
Contributing
This project follows the specification-driven development methodology. See the .kiro/specs/ directory for detailed requirements, design, and implementation tasks.
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 hydra_router-0.3.10.tar.gz.
File metadata
- Download URL: hydra_router-0.3.10.tar.gz
- Upload date:
- Size: 39.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.11.14 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26197e199ab3d8f50fe8cd61d991ef744e1b6278b8c8981c07a1519e14ee26d7
|
|
| MD5 |
1def916adb9bfbba3713155f5a14f804
|
|
| BLAKE2b-256 |
4f95202498df22e2ee967781353713ba73c5ae6e538c82acd0e2ad9e5fbe6bad
|
File details
Details for the file hydra_router-0.3.10-py3-none-any.whl.
File metadata
- Download URL: hydra_router-0.3.10-py3-none-any.whl
- Upload date:
- Size: 45.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.11.14 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0db4d1e1b673b54adccf69e4dd3412727a812832fc237601b3ab29fc03d731ab
|
|
| MD5 |
a0c9a92f4d847d507a4f9c4cebbd2a16
|
|
| BLAKE2b-256 |
3cac59ceb377ef2437cba6bdaf0e453d7908ae758fba1b5293ae7e06976a5b4d
|