A Pythonic interface to the RabbitMQ Management HTTP API. Version 1.1.0, low release cadence (last release 2013).
pip install pyrabbitVerified import paths — ran on the pinned version, not inferred.
Connect to RabbitMQ Management API and check if server is alive.
Switch to a library with active maintenance and async support.
from pyrabbit.api import Client
Use http://host:15672 as the base URL.
Use 'from pyrabbit.api import Client' instead of 'from pyrabbit import Client'.
Check available methods: get_nodes(), get_queues(), etc. Use client.is_alive() only if available; otherwise use client.aliveness_test('/').Enable management plugin: rabbitmq-plugins enable rabbitmq_management. Use port 15672.