{ "info": { "author": "Ask Solem", "author_email": "ask@celeryproject.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Communications", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Distributed Computing" ], "description": "##############################################\n carrot - AMQP Messaging Framework for Python\n##############################################\n\n:Version: 0.10.7\n\n**NOTE** This release contains backward-incompatible changes.\nPlease read the `Changelog`_ for more information.\n\n.. _`Changelog`: http://ask.github.com/carrot/changelog.html\n\n\nIntroduction\n------------\n\n`carrot` is an `AMQP`_ messaging queue framework. AMQP is the Advanced Message\nQueuing Protocol, an open standard protocol for message orientation, queuing,\nrouting, reliability and security.\n\nThe aim of `carrot` is to make messaging in Python as easy as possible by\nproviding a high-level interface for producing and consuming messages. At the\nsame time it is a goal to re-use what is already available as much as possible.\n\n`carrot` has pluggable messaging back-ends, so it is possible to support\nseveral messaging systems. Currently, there is support for `AMQP`_\n(`py-amqplib`_, `pika`_), `STOMP`_ (`python-stomp`_). There's also an\nin-memory backend for testing purposes, using the `Python queue module`_.\n\nSeveral AMQP message broker implementations exists, including `RabbitMQ`_,\n`ZeroMQ`_ and `Apache ActiveMQ`_. You'll need to have one of these installed,\npersonally we've been using `RabbitMQ`_.\n\nBefore you start playing with ``carrot``, you should probably read up on\nAMQP, and you could start with the excellent article about using RabbitMQ\nunder Python, `Rabbits and warrens`_. For more detailed information, you can\nrefer to the `Wikipedia article about AMQP`_.\n\n.. _`RabbitMQ`: http://www.rabbitmq.com/\n.. _`ZeroMQ`: http://www.zeromq.org/\n.. _`AMQP`: http://amqp.org\n.. _`STOMP`: http://stomp.codehaus.org\n.. _`python-stomp`: http://bitbucket.org/asksol/python-stomp\n.. _`Python Queue module`: http://docs.python.org/library/queue.html\n.. _`Apache ActiveMQ`: http://activemq.apache.org/\n.. _`Django`: http://www.djangoproject.com/\n.. _`Rabbits and warrens`: http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/\n.. _`py-amqplib`: http://barryp.org/software/py-amqplib/\n.. _`pika`: http://github.com/tonyg/pika\n.. _`Wikipedia article about AMQP`: http://en.wikipedia.org/wiki/AMQP\n\nDocumentation\n-------------\n\nCarrot is using Sphinx, and the latest documentation is available at GitHub:\n\n http://github.com/ask/carrot/\n\nInstallation\n============\n\nYou can install ``carrot`` either via the Python Package Index (PyPI)\nor from source.\n\nTo install using ``pip``,::\n\n $ pip install carrot\n\n\nTo install using ``easy_install``,::\n\n $ easy_install carrot\n\n\nIf you have downloaded a source tarball you can install it\nby doing the following,::\n\n $ python setup.py build\n # python setup.py install # as root\n\n\nTerminology\n===========\n\nThere are some concepts you should be familiar with before starting:\n\n * Publishers\n\n Publishers sends messages to an exchange.\n\n * Exchanges\n\n Messages are sent to exchanges. Exchanges are named and can be\n configured to use one of several routing algorithms. The exchange\n routes the messages to consumers by matching the routing key in the\n message with the routing key the consumer provides when binding to\n the exchange.\n\n * Consumers\n\n Consumers declares a queue, binds it to a exchange and receives\n messages from it.\n\n * Queues\n\n Queues receive messages sent to exchanges. The queues are declared\n by consumers.\n\n * Routing keys\n\n Every message has a routing key. The interpretation of the routing\n key depends on the exchange type. There are four default exchange\n types defined by the AMQP standard, and vendors can define custom\n types (so see your vendors manual for details).\n\n These are the default exchange types defined by AMQP/0.8:\n\n * Direct exchange\n\n Matches if the routing key property of the message and\n the ``routing_key`` attribute of the consumer are identical.\n\n * Fan-out exchange\n\n Always matches, even if the binding does not have a routing\n key.\n\n * Topic exchange\n\n Matches the routing key property of the message by a primitive\n pattern matching scheme. The message routing key then consists\n of words separated by dots (``\".\"``, like domain names), and\n two special characters are available; star (``\"*\"``) and hash\n (``\"#\"``). The star matches any word, and the hash matches\n zero or more words. For example ``\"*.stock.#\"`` matches the\n routing keys ``\"usd.stock\"`` and ``\"eur.stock.db\"`` but not\n ``\"stock.nasdaq\"``.\n\n\nExamples\n========\n\nCreating a connection\n---------------------\n\n You can set up a connection by creating an instance of\n ``carrot.messaging.BrokerConnection``, with the appropriate options for\n your broker:\n\n >>> from carrot.connection import BrokerConnection\n >>> conn = BrokerConnection(hostname=\"localhost\", port=5672,\n ... userid=\"test\", password=\"test\",\n ... virtual_host=\"test\")\n\n\n If you're using Django you can use the\n ``carrot.connection.DjangoBrokerConnection`` class instead, which loads\n the connection settings from your ``settings.py``::\n\n BROKER_HOST = \"localhost\"\n BROKER_PORT = 5672\n BROKER_USER = \"test\"\n BROKER_PASSWORD = \"secret\"\n BROKER_VHOST = \"/test\"\n\n Then create a connection by doing:\n\n >>> from carrot.connection import DjangoBrokerConnection\n >>> conn = DjangoBrokerConnection()\n\n\n\nReceiving messages using a Consumer\n-----------------------------------\n\nFirst we open up a Python shell and start a message consumer.\n\nThis consumer declares a queue named ``\"feed\"``, receiving messages with\nthe routing key ``\"importer\"`` from the ``\"feed\"`` exchange.\n\nThe example then uses the consumers ``wait()`` method to go into consume\nmode, where it continuously polls the queue for new messages, and when a\nmessage is received it passes the message to all registered callbacks.\n\n >>> from carrot.messaging import Consumer\n >>> consumer = Consumer(connection=conn, queue=\"feed\",\n ... exchange=\"feed\", routing_key=\"importer\")\n >>> def import_feed_callback(message_data, message):\n ... feed_url = message_data[\"import_feed\"]\n ... print(\"Got feed import message for: %s\" % feed_url)\n ... # something importing this feed url\n ... # import_feed(feed_url)\n ... message.ack()\n >>> consumer.register_callback(import_feed_callback)\n >>> consumer.wait() # Go into the consumer loop.\n\nSending messages using a Publisher\n----------------------------------\n\nThen we open up another Python shell to send some messages to the consumer\ndefined in the last section.\n\n >>> from carrot.messaging import Publisher\n >>> publisher = Publisher(connection=conn,\n ... exchange=\"feed\", routing_key=\"importer\")\n >>> publisher.send({\"import_feed\": \"http://cnn.com/rss/edition.rss\"})\n >>> publisher.close()\n\n\nLook in the first Python shell again (where ``consumer.wait()`` is running),\nwhere the following text has been printed to the screen::\n\n Got feed import message for: http://cnn.com/rss/edition.rss \n\n\nSerialization of Data\n-----------------------\n\nBy default every message is encoded using `JSON`_, so sending\nPython data structures like dictionaries and lists works.\n`YAML`_, `msgpack`_ and Python's built-in ``pickle`` module is also supported,\nand if needed you can register any custom serialization scheme you\nwant to use.\n\n.. _`JSON`: http://www.json.org/\n.. _`YAML`: http://yaml.org/\n.. _`msgpack`: http://msgpack.sourceforge.net/\n\nEach option has its advantages and disadvantages.\n\n``json`` -- JSON is supported in many programming languages, is now\n a standard part of Python (since 2.6), and is fairly fast to \n decode using the modern Python libraries such as ``cjson or \n ``simplejson``.\n \n The primary disadvantage to ``JSON`` is that it limits you to \n the following data types: strings, unicode, floats, boolean, \n dictionaries, and lists. Decimals and dates are notably missing.\n \n Also, binary data will be transferred using base64 encoding, which\n will cause the transferred data to be around 34% larger than an \n encoding which supports native binary types. \n \n However, if your data fits inside the above constraints and \n you need cross-language support, the default setting of ``JSON``\n is probably your best choice. \n \n``pickle`` -- If you have no desire to support any language other than\n Python, then using the ``pickle`` encoding will gain you \n the support of all built-in Python data types (except class instances), \n smaller messages when sending binary files, and a slight speedup\n over ``JSON`` processing.\n\n``yaml`` -- YAML has many of the same characteristics as ``json``, \n except that it natively supports more data types (including dates, \n recursive references, etc.)\n \n However, the Python libraries for YAML are a good bit slower\n than the libraries for JSON. \n \n If you need a more expressive set of data types and need to maintain\n cross-language compatibility, then ``YAML`` may be a better fit\n than the above. \n\nTo instruct carrot to use an alternate serialization method, \nuse one of the following options.\n\n 1. Set the serialization option on a per-Publisher basis: \n \n >>> from carrot.messaging import Publisher\n >>> publisher = Publisher(connection=conn,\n ... exchange=\"feed\", routing_key=\"importer\",\n ... serializer=\"yaml\")\n\n 2. Set the serialization option on a per-call basis\n\n >>> from carrot.messaging import Publisher\n >>> publisher = Publisher(connection=conn,\n ... exchange=\"feed\", routing_key=\"importer\")\n >>> publisher.send({\"import_feed\": \"http://cnn.com/rss/edition.rss\"}, \n ... serializer=\"pickle\")\n >>> publisher.close()\n\nNote that ``Consumer``s do not need the serialization method specified in \ntheir code. They can auto-detect the serialization method since we supply \nthe ``Content-type`` header as part of the AMQP message.\n\n\nSending raw data without Serialization\n---------------------------------------\n\nIn some cases, you don't need your message data to be serialized. If you\npass in a plain string or unicode object as your message, then carrot will\nnot waste cycles serializing/deserializing the data.\n\nYou can optionally specify a ``content_type`` and ``content_encoding``\nfor the raw data:\n\n >>> from carrot.messaging import Publisher\n >>> publisher = Publisher(connection=conn,\n ... exchange=\"feed\",\n routing_key=\"import_pictures\")\n >>> publisher.send(open('~/my_picture.jpg','rb').read(), \n content_type=\"image/jpeg\", \n content_encoding=\"binary\")\n >>> publisher.close()\n \nThe ``message`` object returned by the ``Consumer`` class will have a \n``content_type`` and ``content_encoding`` attribute. \n\n\nReceiving messages without a callback\n--------------------------------------\n\nYou can also poll the queue manually, by using the ``fetch`` method.\nThis method returns a ``Message`` object, from where you can get the\nmessage body, de-serialize the body to get the data, acknowledge, reject or\nre-queue the message.\n\n >>> consumer = Consumer(connection=conn, queue=\"feed\",\n ... exchange=\"feed\", routing_key=\"importer\")\n >>> message = consumer.fetch()\n >>> if message:\n ... message_data = message.payload\n ... message.ack()\n ... else:\n ... # No messages waiting on the queue.\n >>> consumer.close()\n\nSub-classing the messaging classes\n----------------------------------\n\nThe ``Consumer``, and ``Publisher`` classes can also be sub classed. Thus you\ncan define the above publisher and consumer like so:\n\n >>> from carrot.messaging import Publisher, Consumer\n\n >>> class FeedPublisher(Publisher):\n ... exchange = \"feed\"\n ... routing_key = \"importer\"\n ...\n ... def import_feed(self, feed_url):\n ... return self.send({\"action\": \"import_feed\",\n ... \"feed_url\": feed_url})\n\n >>> class FeedConsumer(Consumer):\n ... queue = \"feed\"\n ... exchange = \"feed\"\n ... routing_key = \"importer\"\n ...\n ... def receive(self, message_data, message):\n ... action = message_data[\"action\"]\n ... if action == \"import_feed\":\n ... # something importing this feed\n ... # import_feed(message_data[\"feed_url\"])\n message.ack()\n ... else:\n ... raise Exception(\"Unknown action: %s\" % action)\n\n >>> publisher = FeedPublisher(connection=conn)\n >>> publisher.import_feed(\"http://cnn.com/rss/edition.rss\")\n >>> publisher.close()\n\n >>> consumer = FeedConsumer(connection=conn)\n >>> consumer.wait() # Go into the consumer loop.\n\nGetting Help\n============\n\nMailing list\n------------\n\nJoin the `carrot-users`_ mailing list.\n\n.. _`carrot-users`: http://groups.google.com/group/carrot-users/\n\nBug tracker\n===========\n\nIf you have any suggestions, bug reports or annoyances please report them\nto our issue tracker at http://github.com/ask/carrot/issues/\n\nContributing\n============\n\nDevelopment of ``carrot`` happens at Github: http://github.com/ask/carrot\n\nYou are highly encouraged to participate in the development. If you don't\nlike Github (for some reason) you're welcome to send regular patches.\n\nLicense\n=======\n\nThis software is licensed under the ``New BSD License``. See the ``LICENSE``\nfile in the top distribution directory for the full license text.", "description_content_type": null, "docs_url": "https://pythonhosted.org/carrot/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/ask/carrot/", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "carrot", "package_url": "https://pypi.org/project/carrot/", "platform": "any", "project_url": "https://pypi.org/project/carrot/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/ask/carrot/" }, "release_url": "https://pypi.org/project/carrot/0.10.7/", "requires_dist": null, "requires_python": null, "summary": "AMQP Messaging Framework for Python", "version": "0.10.7" }, "last_serial": 668023, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "3cc54fc359a88a7029c89e4140aebf1f", "sha256": "0c9415c2bec9e365d5c9ff2cc484d7bda9a7178afc632175796d26c545870573" }, "downloads": -1, "filename": "carrot-0.10.0.tar.gz", "has_sig": false, "md5_digest": "3cc54fc359a88a7029c89e4140aebf1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57818, "upload_time": "2010-01-15T00:09:49", "url": "https://files.pythonhosted.org/packages/94/2a/8e13a80ba454eadb535d684beca1a9da8ef390802bdae76e367f2c766566/carrot-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "7d40d64b9bb89ac6723589638ce45a23", "sha256": "c5c9c8384648e6ca83504e7fb13d6f2faa43115209c40b2d5f05245a93dacc8d" }, "downloads": -1, "filename": "carrot-0.10.1.tar.gz", "has_sig": false, "md5_digest": "7d40d64b9bb89ac6723589638ce45a23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57855, "upload_time": "2010-01-15T22:22:41", "url": "https://files.pythonhosted.org/packages/5b/2f/d011dbf488039a434a36e4a978807b5f0e7d97facb6c3a431c062f086c38/carrot-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "5a0d9cd8f9d04045da784ba1af5046b1", "sha256": "c1e70579810227cecf4337f0ea8287bf381dd6780f45b26b57e4916fc56022e1" }, "downloads": -1, "filename": "carrot-0.10.2.tar.gz", "has_sig": false, "md5_digest": "5a0d9cd8f9d04045da784ba1af5046b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57906, "upload_time": "2010-02-03T11:46:19", "url": "https://files.pythonhosted.org/packages/fa/d8/363f7f340be4c2732fa996b275cda7605ba5adc072bc462b2ba9903c13ff/carrot-0.10.2.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "cb4d7f04c7e33cd9a506dd333e5c753c", "sha256": "72fc56e7406d2754033fd24b55b500a97b51ed3f781aecd770b0b5e4f89925f8" }, "downloads": -1, "filename": "carrot-0.10.3.tar.gz", "has_sig": false, "md5_digest": "cb4d7f04c7e33cd9a506dd333e5c753c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58355, "upload_time": "2010-03-08T17:12:49", "url": "https://files.pythonhosted.org/packages/a6/af/372adf401ce05449a15cc178e6bd8ad6c9118e08ebc3464d5dd6b1a377b6/carrot-0.10.3.tar.gz" } ], "0.10.4": [ { "comment_text": "", "digests": { "md5": "fbc50c75e038311e72c6f409ae8ff999", "sha256": "0c99a25e13cbeacab852d006acff6c09e1e6cd27af6dbe5eddea94ccee6d293c" }, "downloads": -1, "filename": "carrot-0.10.4.tar.gz", "has_sig": false, "md5_digest": "fbc50c75e038311e72c6f409ae8ff999", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59427, "upload_time": "2010-05-14T10:28:35", "url": "https://files.pythonhosted.org/packages/7b/af/7ebf4fa37a2719649054096b4d503054f4688f83466c73ed02a6ce0d363e/carrot-0.10.4.tar.gz" } ], "0.10.5": [ { "comment_text": "", "digests": { "md5": "8c54d725b26bacbe304785428b448c6b", "sha256": "07ce39f91510b1565da061967f8ba06038599f4a9ace02f28a0a6fb69b628775" }, "downloads": -1, "filename": "carrot-0.10.5.tar.gz", "has_sig": false, "md5_digest": "8c54d725b26bacbe304785428b448c6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60254, "upload_time": "2010-06-03T09:07:24", "url": "https://files.pythonhosted.org/packages/73/27/08228cade4b25b2b521df49c32de8ca2103829bba99691b47a30191f5a5a/carrot-0.10.5.tar.gz" } ], "0.10.6": [ { "comment_text": "", "digests": { "md5": "c8b75379121be419eaad1b1df59abc56", "sha256": "51072ebc23015e207313edf23875503c58116c6a09076ae4f3d9391fc04ef7de" }, "downloads": -1, "filename": "carrot-0.10.6.tar.gz", "has_sig": false, "md5_digest": "c8b75379121be419eaad1b1df59abc56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 409844, "upload_time": "2010-09-16T15:06:36", "url": "https://files.pythonhosted.org/packages/74/c6/9441e67b731815eb2c16f3408a7f251a82d4b5593f69ed38450fba96a573/carrot-0.10.6.tar.gz" } ], "0.10.7": [ { "comment_text": "", "digests": { "md5": "530a0614de3a669314c3acd4995c54d5", "sha256": "cb46374f3c883c580d142a79d2609883713a867cc86e0514163adce784ce2468" }, "downloads": -1, "filename": "carrot-0.10.7.tar.gz", "has_sig": false, "md5_digest": "530a0614de3a669314c3acd4995c54d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62069, "upload_time": "2010-10-07T15:25:28", "url": "https://files.pythonhosted.org/packages/cc/ba/6ba8e88919b1b92a95ae6e6a9ff837b35efdb4d9dd253aeec788b0d62e53/carrot-0.10.7.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "d2046beb6fd9c4c4c0d7d99d304efbea", "sha256": "e48f678b26a1c719af8d2dec38fe24e8f853b7f8d80312375a374db202e80334" }, "downloads": -1, "filename": "carrot-0.2.0.tar.gz", "has_sig": false, "md5_digest": "d2046beb6fd9c4c4c0d7d99d304efbea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2573, "upload_time": "2009-03-24T17:19:22", "url": "https://files.pythonhosted.org/packages/6e/2e/4757e4e1820d420a2006b9bf2769b74520b64c66597f76269de86c0fec42/carrot-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "e3dd1effe01c0e021ce1f0a16ef17af6", "sha256": "68c1d209a81803453de993872cf899229a8df0a90fcb6d0dd74d73f535634eba" }, "downloads": -1, "filename": "carrot-0.2.1.tar.gz", "has_sig": false, "md5_digest": "e3dd1effe01c0e021ce1f0a16ef17af6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8886, "upload_time": "2009-03-24T17:48:46", "url": "https://files.pythonhosted.org/packages/9a/65/0ca4156e5ba26bfe1696fe03bfc01043810e26e1e985771c493a6eaca23f/carrot-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "830a63906f1ade420b54aeaff21cac60", "sha256": "bc73b7f41dbbcedd2d3cb025891c26080a6c666060d065808b0603a40e1dd4f1" }, "downloads": -1, "filename": "carrot-0.3.0.tar.gz", "has_sig": false, "md5_digest": "830a63906f1ade420b54aeaff21cac60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8081, "upload_time": "2009-04-14T11:19:24", "url": "https://files.pythonhosted.org/packages/b0/44/cc3d6e8a60006b00b3aecbe3a1f8522d8ec9348a3e4c2aca296cf27fe195/carrot-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "188dc3749bdb5d9cd85a749e5b87c96e", "sha256": "c2f073eb60fd4d872c4681c39cbc58e13e887e4f05474d060403907f0d000563" }, "downloads": -1, "filename": "carrot-0.3.1.tar.gz", "has_sig": false, "md5_digest": "188dc3749bdb5d9cd85a749e5b87c96e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7861, "upload_time": "2009-04-14T11:21:20", "url": "https://files.pythonhosted.org/packages/33/ff/7fc2b287f7c71eee84340412bd5367eed2f3ff25dbabb1f45cf4c2cee6aa/carrot-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "c1722cfc194f2ad23c6d5a8a6c4549da", "sha256": "3ac2dfaf78ac2968a844a2355d45d03bb695119cab043ff3cef193361cf3a21b" }, "downloads": -1, "filename": "carrot-0.3.2.tar.gz", "has_sig": false, "md5_digest": "c1722cfc194f2ad23c6d5a8a6c4549da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9570, "upload_time": "2009-04-15T10:11:25", "url": "https://files.pythonhosted.org/packages/89/31/421798d1fbad23e631b5604fcfc6f117a89a1dfd1640f52452f36b073450/carrot-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "eedc2b0e818f78d38820dfdc2415caa9", "sha256": "4660cece187499b4beea1b42e4aee4bc66a2d2015f07e4d204280d5d36b5a5dc" }, "downloads": -1, "filename": "carrot-0.3.3.tar.gz", "has_sig": false, "md5_digest": "eedc2b0e818f78d38820dfdc2415caa9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8216, "upload_time": "2009-04-17T17:36:21", "url": "https://files.pythonhosted.org/packages/39/35/ea4829362cf5595ba839bc087107eea3ad1055c4216463f0c850b2662c54/carrot-0.3.3.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "efdc69a2887ab54262b16b926c847c77", "sha256": "71266dceb3d4527f485cdf7598fb70e72addb670c6aae4597062aff2df09f4b4" }, "downloads": -1, "filename": "carrot-0.3.6.tar.gz", "has_sig": false, "md5_digest": "efdc69a2887ab54262b16b926c847c77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7549, "upload_time": "2009-05-07T12:24:02", "url": "https://files.pythonhosted.org/packages/0e/4a/b05bc2518ea8bb7567907c0a04c96bd4168c72d6a91126cc15d90fa488a9/carrot-0.3.6.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "acf871ed9016fd659cf5751a87fa06f3", "sha256": "36792b4937891f86f99fc52f6c7da925ad750472a941d21d4c1f5a8a812369ab" }, "downloads": -1, "filename": "carrot-0.3.8.tar.gz", "has_sig": false, "md5_digest": "acf871ed9016fd659cf5751a87fa06f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11595, "upload_time": "2009-05-11T12:53:06", "url": "https://files.pythonhosted.org/packages/a7/58/a4f81bd51ab710220087485839d0daeedef2e05736a62b6fe74cca504208/carrot-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "7ada0147509c86cfc329ba0575060efc", "sha256": "08d48323501762597e77efbc17db98480ee99baf62cce17be6ba5205ceaffecf" }, "downloads": -1, "filename": "carrot-0.3.9.tar.gz", "has_sig": false, "md5_digest": "7ada0147509c86cfc329ba0575060efc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11165, "upload_time": "2009-05-18T16:53:15", "url": "https://files.pythonhosted.org/packages/94/c1/603aea251685e9d609d66701e3c1baf4d00dbebd4ec0fb13c18a2251399f/carrot-0.3.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "cc51c2d3bd3dadf6ee811b26623938eb", "sha256": "cae138a27c3957c51e44d54cf70fe2ae4103614b8b829b2a24a7ddf4c07a698b" }, "downloads": -1, "filename": "carrot-0.4.0.tar.gz", "has_sig": false, "md5_digest": "cc51c2d3bd3dadf6ee811b26623938eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215654, "upload_time": "2009-06-06T13:52:32", "url": "https://files.pythonhosted.org/packages/ad/37/b782f9c7824124d87cce183a3da3f0ba1497f835b9ab4f91950ec4eabb24/carrot-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "f512b78a24868e837adf5afd3cebdc7d", "sha256": "f05450051c0dce4d0a56ee91903f35b8ad084128b282b341bf7692e37b8129f0" }, "downloads": -1, "filename": "carrot-0.4.1.tar.gz", "has_sig": false, "md5_digest": "f512b78a24868e837adf5afd3cebdc7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 276166, "upload_time": "2009-06-08T16:50:39", "url": "https://files.pythonhosted.org/packages/89/46/d1b9307557945e5ce3986aa33a73e664a03f91418f3436477e6516b57a57/carrot-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "979d6a5f6d9ce2c06b204be243c51bb9", "sha256": "3b8603bb16631479c466bce25ff5e8b78f643b40e86a57cf8116d0ea6702c724" }, "downloads": -1, "filename": "carrot-0.4.2.tar.gz", "has_sig": false, "md5_digest": "979d6a5f6d9ce2c06b204be243c51bb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 261367, "upload_time": "2009-06-13T20:49:43", "url": "https://files.pythonhosted.org/packages/1b/68/5bbda07748d70f0267c15d0186e0f2a9d958eebbd4aa7e8bb8e593fade06/carrot-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "a88ffc98b2ea95a6c48928df7fd9c6d4", "sha256": "0daa0eb94299a02d8415d44409407ba59188b407cc0f791021b7c5009cfd56f0" }, "downloads": -1, "filename": "carrot-0.4.3.tar.gz", "has_sig": false, "md5_digest": "a88ffc98b2ea95a6c48928df7fd9c6d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 261308, "upload_time": "2009-06-13T21:27:09", "url": "https://files.pythonhosted.org/packages/9f/9a/d3951b2a99a56514e108da68f7e2be5bbf2e767160e9c0d037bf8f93e2bb/carrot-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "38af6c2a9754febedd7de5c6f4c709ac", "sha256": "f776a8bfd5bd2de7731f0a9af2ea3f5d266d42e0ff232bc073a3052b9cb43c50" }, "downloads": -1, "filename": "carrot-0.4.4.tar.gz", "has_sig": false, "md5_digest": "38af6c2a9754febedd7de5c6f4c709ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 266894, "upload_time": "2009-06-15T14:00:02", "url": "https://files.pythonhosted.org/packages/4d/0e/fb704b0296a16643cb6f085c34c28dab577becf65b2e0e49195cc35a19d7/carrot-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "7313fbab0032e19c545fc58a6961b05e", "sha256": "e8af98b479efb5bfec22466bda8f5b1ca35f16e305e7a0e23b295bfda6875278" }, "downloads": -1, "filename": "carrot-0.4.5.tar.gz", "has_sig": false, "md5_digest": "7313fbab0032e19c545fc58a6961b05e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 275460, "upload_time": "2009-06-16T22:26:24", "url": "https://files.pythonhosted.org/packages/0f/b7/938c5c6fa2a0825e3ecf15ad6a1390915786361508c2eab411d48b6b04af/carrot-0.4.5.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a2f4da8cf4414877407d17e0a45cb454", "sha256": "da0fae3a84bb38212d125b0a1cb0f24ed79ed3c520604071d37efe2151896108" }, "downloads": -1, "filename": "carrot-0.5.0.tar.gz", "has_sig": false, "md5_digest": "a2f4da8cf4414877407d17e0a45cb454", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 317234, "upload_time": "2009-06-25T20:25:36", "url": "https://files.pythonhosted.org/packages/a8/1d/f04500cee90c588942b009f1af51dc458d8c9cc98cd6de82d33da25e2c7d/carrot-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "7091f2e8fe016f4825868f38b8dfe6ab", "sha256": "e74b94415e8540cbb43140086261f8a26830865447eb2ab4d72500add1b9dab1" }, "downloads": -1, "filename": "carrot-0.5.1.tar.gz", "has_sig": false, "md5_digest": "7091f2e8fe016f4825868f38b8dfe6ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51371, "upload_time": "2009-07-19T18:24:37", "url": "https://files.pythonhosted.org/packages/bf/ef/2509d021b1c642fc0f2f529e1b7aeaf8019a55d3c5162aef58962b90bc84/carrot-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "b5edf2cc566bb25c8c3d2e071165f273", "sha256": "8ce62fe5464777f3fd5d390757a768de23a8c91ec527ae408da3669de56b938d" }, "downloads": -1, "filename": "carrot-0.6.0.tar.gz", "has_sig": false, "md5_digest": "b5edf2cc566bb25c8c3d2e071165f273", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59801, "upload_time": "2009-09-17T17:08:38", "url": "https://files.pythonhosted.org/packages/77/be/131cbd3a8e57a50cad9d765e627e1c1fb289b2acb7298407dcf398b6d296/carrot-0.6.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "b24708547a935e671150e474184f4199", "sha256": "e60e58a936782fa788b723656934c707c85abd10c066f9231e30aeb7ef2eb055" }, "downloads": -1, "filename": "carrot-0.8.0.tar.gz", "has_sig": false, "md5_digest": "b24708547a935e671150e474184f4199", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 352575, "upload_time": "2009-11-16T20:11:49", "url": "https://files.pythonhosted.org/packages/ec/65/aa9f8a0317a5f87820114d8b7525c310d89b8f7c9eec9fafbb0583c3d3a0/carrot-0.8.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "530a0614de3a669314c3acd4995c54d5", "sha256": "cb46374f3c883c580d142a79d2609883713a867cc86e0514163adce784ce2468" }, "downloads": -1, "filename": "carrot-0.10.7.tar.gz", "has_sig": false, "md5_digest": "530a0614de3a669314c3acd4995c54d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62069, "upload_time": "2010-10-07T15:25:28", "url": "https://files.pythonhosted.org/packages/cc/ba/6ba8e88919b1b92a95ae6e6a9ff837b35efdb4d9dd253aeec788b0d62e53/carrot-0.10.7.tar.gz" } ] }