I have a lot of hobby projects, and as a result getting any one of them to a state where I wouldn’t be completely embarrassed to share it takes forever. I started working on pyrabbit around May or June of this year, and I’m happy to say that, while it’ll never be totally ‘done’ (it is software, after all), it’s now in a state where I’m not embarrassed to say I wrote it.
What is it?
It’s a Python module to help make managing and testing RabbitMQ servers easy. RabbitMQ has, for some time, made available a RESTful interface for programmatically performing all of the operations you would otherwise perform using their browser-based management interface.
So, pyrabbit lets you write code to manipulate resources like vhosts & exchanges, publish and get messages, set permissions, and get information on the running state of the broker instance. Note that it’s *not* suitable for writing AMQP consumer or producer applications; for that you want an *AMQP* module like pika.
PyRabbit is tested with Python versions 2.6-3.2. The testing is automated using tox. In fact, PyRabbit was a project I started in part because I wanted to play with tox.
Here’s the example, ripped from the documentation (which is ripped right from my own terminal session):
>>> from pyrabbit.api import Client >>> cl = Client('localhost:55672', 'guest', 'guest') >>> cl.is_alive() True >>> cl.create_vhost('example_vhost') True >>> [i['name'] for i in cl.get_all_vhosts()] [u'/', u'diabolica', u'example_vhost', u'testvhost'] >>> cl.get_vhost_names() [u'/', u'diabolica', u'example_vhost', u'testvhost'] >>> cl.set_vhost_permissions('example_vhost', 'guest', '.*', '.*', '.*') True >>> cl.create_exchange('example_vhost', 'example_exchange', 'direct') True >>> cl.get_exchange('example_vhost', 'example_exchange') {u'name': u'example_exchange', u'durable': True, u'vhost': u'example_vhost', u'internal': False, u'arguments': {}, u'type': u'direct', u'auto_delete': False} >>> cl.create_queue('example_queue', 'example_vhost') True >>> cl.create_binding('example_vhost', 'example_exchange', 'example_queue', 'my.rtkey') True >>> cl.publish('example_vhost', 'example_exchange', 'my.rtkey', 'example message payload') True >>> cl.get_messages('example_vhost', 'example_queue') [{u'payload': u'example message payload', u'exchange': u'example_exchange', u'routing_key': u'my.rtkey', u'payload_bytes': 23, u'message_count': 2, u'payload_encoding': u'string', u'redelivered': False, u'properties': []}] >>> cl.delete_vhost('example_vhost') True >>> [i['name'] for i in cl.get_all_vhosts()] [u'/', u'diabolica', u'testvhost']
Hopefully you’ll agree that this is simple enough to use in a Python interpreter to get information and do things with RabbitMQ ‘on the fly’.
How Can I Get It?
Well, there’s already a package on PyPI called ‘pyrabbit’, and it’s not mine. It’s some planning-stage project that has no actual software associated with it. I’m not sure when the project was created, but the PyPI page has a broken home page link, and what looks like a broken RST-formatted doc section. I’ve already pinged someone to see if it’s possible to take over the name, because I can’t think of a cool name to change it to.
Until that issue is cleared up, you can get downloadable packages or clone/fork the code at the pyrabbit github page (see the ‘Tags’ section for downloads), and the documentation is hosted on the (awesome) ReadTheDocs.org site.