Skip to main content

Easy RabbitMQ messaging queue support for Django.

Project description

==========
carrot
==========

:Authors:
Ask Solem (askh@opera.com)
:Version: 0.1.0

Simple `RabbitMQ`_/`ZeroMQ`_ (`AMQP`_) messaging queue support for `Django`_.

.. _`RabbitMQ`: http://www.rabbitmq.com/
.. _`ZeroMQ`: http://www.zeromq.org/
.. _`AMQP`: http://amqp.org
.. _`Django`: http://www.djangoproject.com/

Introduction
------------

`carrot` is a messaging queue framework for `Django_`, built on top of
`py-amqplib`_. Before you start playing with ``carrot``, you should
read the excellent article on RabbitMQ under python by Jason: `Rabbits and
warrens`_.

.. _`Rabbits and warrens`: http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/
.. _`py-amqplib`: http://barryp.org/software/py-amqplib/

Installation
-------------

You can install ``carrot`` either via the Python Package Index (PyPI)
or from source.

To install using ``pip``:

::
$ pip install carrot

To install using ``easy_install``

$ easy_install carrot

If you have downloaded a source tarball you can install it
in the following way:
::
$ python setup.py build
# python setup.py install # as root


Example
-------

This is a `carrot` implementation of the example publisher and
consumer described in the article `Rabbits and warrens`_

>>> from carrot.messaging import Publisher, Consumer

>>> class PostOfficePublisher(Publisher):
... exchange = "sorting_room"
... routing_key = "jason"

>>> class PostOfficeConsumer(Consumer):
... queue = "po_box"
... exchange = "sorting_room"
... routing_key = "json"
...
... def receieve(self, message_data, message):
... """This is the method that is called whenever we
... receieve a message in this queue."""
... print("Received: %s" % message_data)

By default every message is encoded using `JSON`_, if you don't want
this you have to set the ``encoding`` attribute in the producer and
the ``decoding`` attribute in the consumer to ``lambda x: x``.

There are lots of other options for producers and consumers for which
the only documentation right now is the source code (sorry!)

To start sending and receveing messages with these classes, you first
have to configure the AMQP server for your django app. If you have a
`RabbitMQ`_ server running on localhost you can add these settings
to your ``settings.py``:

::
AMQP_SERVER = "localhost"
AMQP_PORT = 5678
AMQP_USER = "my_rabbitmq_user"
AMQP_PASSWORD = "my_rabbitmq_user_password"
AMQP_VHOST = "virtual_host_to_use"


Then, finally, we can send and receive some messages:

>>> PostOfficePublisher().send({"My message": ["foo", "bar", "baz"]})
>>> PostOfficeConsumer().next()
Receieved: {"My message": ["foo", "bar", "baz"]}


.. _`JSON`: http://www.json.org/

.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround

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

carrot-0.2.1.tar.gz (8.9 kB view details)

Uploaded Source

File details

Details for the file carrot-0.2.1.tar.gz.

File metadata

  • Download URL: carrot-0.2.1.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for carrot-0.2.1.tar.gz
Algorithm Hash digest
SHA256 68c1d209a81803453de993872cf899229a8df0a90fcb6d0dd74d73f535634eba
MD5 e3dd1effe01c0e021ce1f0a16ef17af6
BLAKE2b-256 9a650ca4156e5ba26bfe1696fe03bfc01043810e26e1e985771c493a6eaca23f

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