qpid-proton

AMQP 1.0 messaging library for building distributed applications

brewmacoslinux
Try with needOr install directly
Source

About

High-performance, lightweight AMQP 1.0 messaging library

Commands

proton-pythonproton-c

Examples

Send a message to an AMQP broker$ python3 -c "from proton import Message, send; send(Message(body='Hello'), 'amqp://localhost:5672/queue')"
Receive messages from an AMQP queue$ python3 -c "from proton import receive; msg = receive('amqp://localhost:5672/queue'); print(msg.body)"
Install Python bindings for Qpid Proton$ pip install qpid-proton