pylibrabbitmq - Python bindings to librabbitmq-c
- Version:
0.5.0
- Download:
- Code:
- Keywords:
rabbitmq, amqp, messaging, librabbitmq, rabbitmq-c, python
Experimental Python bindings to the RabbitMQ C-library librabbitmq.
You should probably use amqplib instead, but when needed you can come back to this if the extra performance is needed.
Installation
To install you need to compile librabbitmq:
$ mkdir -p /opt/Build/rabbit $ cd /opt/Build/rabbit $ hg clone http://hg.rabbitmq.com/rabbitmq-codegen/ $ hg clone http://hg.rabbitmq.com/rabbitmq-c/ $ cd rabbitmq-c $ autoreconf -i $ ./configure $ make $ make install
Then you can install this package:
$ cd pylibrabbitmq-x.x.x $ python setup.py install
Examples
>>> from pylibrabbitmq import Connection, Message>>> conn = Connection(host="localhost", userid="guest", ... password="guest", virtual_host="/")>>> channel = conn.channel() >>> channel.exchange_declare(exchange, type, ...) >>> channel.queue_declare(queue, ...) >>> channel.queue_bind(queue, exchange, routing_key)
Produce
>>> m = Message(body, content_type=None, content_encoding=None, ... delivery_mode=1) >>> channel.basic_publish(m, exchange, routing_key, ...)
Consume
>>> def dump_message(message): ... print("Body:'%s', Proeprties:'%s', DeliveryInfo:'%s'" % ( ... message.body, message.properties, message.delivery_info)) ... message.ack()>>> channel.basic_consume(queue, ..., callback=dump_message)>>> while True: ... connection.drain_events()
Poll
>>> message = channel.basic_get(queue, ...)
>>> if message:
... dump_message(message)
... print("Body:'%s' Properties:'%s' DeliveryInfo:'%s'" % (
... message.body, message.properties, message.delivery_info))
Other
>>> channel.queue_unbind(queue, ...) >>> channel.close() >>> connection.close()
License
This software is licensed under the Mozilla Public License. See the LICENSE-MPL-RabbitMQ file in the top distribution directory for the full license text.
Release files for pylibrabbitmq 0.5.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pylibrabbitmq-0.5.0.tar.gz | 30.6 kB | Details |
Release files / pylibrabbitmq-0.5.0.tar.gz
| Download URL | pylibrabbitmq-0.5.0.tar.gz |
|---|---|
| Size | 30.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a22d57fcd4e8dfa289b5a8921c6d869170347b07b4116e420e1dac20fa6e7662
|
|
BLAKE2b-256 checksum How to use checksums |
778e297cb11400939280c407a8701bac9bba96c8e80964b0285551dd80a91ef7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |