Skip to main content

Python bindings to librabbitmq-c

Project description

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(hostname="localhost", port=5672, userid="guest",
...                   password="guest", vhost="/")
>>> conn.connect()
>>> 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.

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

pylibrabbitmq-0.0.1.tar.gz (22.2 kB view details)

Uploaded Source

File details

Details for the file pylibrabbitmq-0.0.1.tar.gz.

File metadata

File hashes

Hashes for pylibrabbitmq-0.0.1.tar.gz
Algorithm Hash digest
SHA256 3f0452629fa3ae00350430a0b3ecec4ae01e32c065122506acc08cf26beab7cc
MD5 b28b6c706c3d8a0f2b8054a3452f7653
BLAKE2b-256 732062e056701acf06aff2dad8e311bef6c267332bd30abf06a9783c47ee8409

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page