Skip to main content

ZeroMQ-based client-server communication framework

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.

Packaging & publishing 🔁

  • Local development and install (recommended):
poetry lock      # update lockfile
poetry install   # install deps into the active environment
  • Run the console command from the Poetry environment:
poetry run hydra-router   # or `poetry run hydra_router`
# or: python -m hydra_router
  • Publishing is handled by a GitHub Actions workflow that publishes on tag push (v*.*.*). See .github/workflows/pypi-publish.yml for the exact steps (install Poetry, build, and poetry publish).

Note: The project uses Poetry/PEP621 [project.scripts] to declare console entry points (no setuptools entry-points). If you bump the package version, tag a release vX.Y.Z to trigger the publish workflow.

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

hydra_router-0.5.0.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

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

hydra_router-0.5.0-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file hydra_router-0.5.0.tar.gz.

File metadata

  • Download URL: hydra_router-0.5.0.tar.gz
  • Upload date:
  • Size: 5.6 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

Hashes for hydra_router-0.5.0.tar.gz
Algorithm Hash digest
SHA256 7364a7f6144311c62cbf319522df34d6f45ba08d4bb1606fd2b4fb028f02b660
MD5 e72f7beec793340ebfac01c284cc84e5
BLAKE2b-256 572be77aeb46a3bdd5fed96580b7731062aff661c4b7bf3362a2ba61420b3291

See more details on using hashes here.

File details

Details for the file hydra_router-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: hydra_router-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 8.4 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

Hashes for hydra_router-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2bca53600f0b0b604777ff5a881d2dca0318a78d9c063d78309d564ab2e083c5
MD5 668c452a15969ef2e05ccc3341792055
BLAKE2b-256 ad720f6ecf4ab8809e1ec44d36e3a3ee758a628ca78e93b123a7f7b1cc1e28c9

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