{ "info": { "author": "Vitaly Babiy, Aaron Westendorf", "author_email": "vbabiy@agoragames.com, aaron@agoragames.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Topic :: Communications", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Distributed Computing" ], "description": "==========================================================\n Haigha - Synchronous and asynchronous AMQP client library\n==========================================================\n\n.. image:: https://travis-ci.org/agoragames/haigha.svg?branch=master\n :target: https://travis-ci.org/agoragames/haigha\n\n\n:Version: 0.9.0\n:Download: http://pypi.python.org/pypi/haigha\n:Source: https://github.com/agoragames/haigha\n:Keywords: python, amqp, rabbitmq, event, libevent, gevent\n\n.. contents::\n :local:\n\n.. _haigha-overview:\n\nOverview\n========\n\nHaigha provides a simple to use client library for interacting with AMQP brokers. It currently supports the 0.9.1 protocol and is integration tested against the latest RabbitMQ 2.8.1 (see `errata `_). Haigha is a descendant of ``py-amqplib`` and owes much to its developers.\n\nThe goals of haigha are performance, simplicity, and adherence to the form and function of the AMQP protocol. It adds a few useful features, such as the ``ChannelPool`` class and ``Channel.publish_synchronous``, to ease use of powerful features in real-world applications.\n\nBy default, Haigha operates in a completely asynchronous mode, relying on callbacks to notify application code of responses from the broker. Where applicable, ``nowait`` defaults to ``True``. The application code is welcome to call a series of methods, and Haigha will manage the stack and synchronous handshakes in the event loop.\n\nStarting with the 0.5.0 series, haigha natively supports 3 transport types; libevent, gevent and standard sockets. The socket implementation defaults to synchronous mode and is useful for an interactive console or scripting, and the gevent transport is the preferred asynchronous backend though it can also be used synchronously as well.\n\nDocumentation\n=============\n\nThis file and the various files in the ``scripts`` directory serve as a simple introduction to haigha. For more complete documentation, see `DOCUMENTATION.rst `_.\n\n\nExample\n=======\n\nSee the ``scripts`` and ``examples`` directories for several examples, in particular the ``stress_test`` script which you can use to test the performance of haigha against your broker. Below is a simple example of a client that connects, processes one message and quits. ::\n\n from haigha.connection import Connection\n from haigha.message import Message\n\n connection = Connection( \n user='guest', password='guest', \n vhost='/', host='localhost', \n heartbeat=None, debug=True)\n\n ch = connection.channel()\n ch.exchange.declare('test_exchange', 'direct')\n ch.queue.declare('test_queue', auto_delete=True)\n ch.queue.bind('test_queue', 'test_exchange', 'test_key')\n ch.basic.publish( Message('body', application_headers={'hello':'world'}),\n 'test_exchange', 'test_key' )\n print ch.basic.get('test_queue')\n connection.close()\n\nTo use protocol extensions for RabbitMQ, initialize the connection with the ``haigha.connections.rabbit_connection.RabbitConnection`` class.\n\nRoadmap\n=======\n\n* Documentation (there's always more)\n* Improved error handling\n* Implementation of error codes in the spec\n* Testing and integration with brokers other than RabbitMQ\n* Identify and improve inefficient code\n* Edge cases in frame management\n* Improvements to usabililty\n* SSL\n* Allow nowait when asynchronous transport but Connection put into synchronous mode.\n\nHaigha has been tested exclusively with Python 2.6 and 2.7, but we intend for it to work with the 3.x series as well. Please `report `_ any issues you may have.\n\nInstallation\n============\n\nHaigha is available on `pypi `_ and can be installed using ``pip`` ::\n\n pip install haigha\n\nIf installing from source:\n\n* with development requirements (e.g. testing frameworks) ::\n\n pip install -r development.txt\n\n* without development requirements ::\n\n pip install -r requirements.txt\n\nNote that haigha does not install either gevent or libevent support automatically. For libevent, haigha has been tested and deployed with the ``event-agora==0.4.1`` library.\n\n\nTesting\n=======\n\nUnit tests can be run with either the included script, or with `nose `_ ::\n\n ./haigha$ scripts/test \n ./haigha$ nosetests\n\nThere are two other testing scripts of note. ``rabbit_table_test`` is a simple integration test that confirms compliance with RabbitMQ `errata `_. The ``stress_test`` script is a valuable tool that offers load-testing capability similar to `Apache Bench `_ or `Siege `_. It is used both to confirm the robustness of haigha, as well as benchmark hardware or a broker configuration.\n\nBug tracker\n===========\n\nIf you have any suggestions, bug reports or annoyances please report them\nto our issue tracker at https://github.com/agoragames/haigha/issues\n\nLicense\n=======\n\nThis software is licensed under the `New BSD License`. See the ``LICENSE.txt``\nfile in the top distribution directory for the full license text.\n\n.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/agoragames/haigha", "keywords": "python,amqp,event,rabbitmq", "license": "LICENSE.txt", "maintainer": null, "maintainer_email": null, "name": "haigha", "package_url": "https://pypi.org/project/haigha/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/haigha/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/agoragames/haigha" }, "release_url": "https://pypi.org/project/haigha/0.9.0/", "requires_dist": null, "requires_python": null, "summary": "Synchronous and asynchronous AMQP client library", "version": "0.9.0" }, "last_serial": 1913323, "releases": { "0.2.1": [ { "comment_text": "", "digests": { "md5": "033124197f3dd61d6b80a957c89b9913", "sha256": "a0ae4f1a41ce9671712a86e6b9a930a80cc2376f5ebbbb90f894c70e99962531" }, "downloads": -1, "filename": "haigha-0.2.1.tar.gz", "has_sig": false, "md5_digest": "033124197f3dd61d6b80a957c89b9913", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25405, "upload_time": "2011-05-13T21:04:45", "url": "https://files.pythonhosted.org/packages/09/e6/9994233e776fc50cbda1afc39c83de272fdd00c2dfb98e9b4b87d6624835/haigha-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "efdf17bc99784ab3ba5c0e53df50eb5a", "sha256": "00a9ba29a97182d283e541dec3e44fdd8476a4b94193061d286e16af31efe605" }, "downloads": -1, "filename": "haigha-0.2.2.tar.gz", "has_sig": false, "md5_digest": "efdf17bc99784ab3ba5c0e53df50eb5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 903210, "upload_time": "2011-05-17T22:43:28", "url": "https://files.pythonhosted.org/packages/dd/61/dbdd7a6a954fd3823c3bf6862f061b3954054dcc41bb4e33a68d25a8e706/haigha-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "ec4e99713b280305574df478960ce3a6", "sha256": "4ccb70d68d6df18d15fb33e6db8b12e94e875b6e1af9086e09157b74f1f54e29" }, "downloads": -1, "filename": "haigha-0.2.3.tar.gz", "has_sig": false, "md5_digest": "ec4e99713b280305574df478960ce3a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 903166, "upload_time": "2011-05-25T20:58:17", "url": "https://files.pythonhosted.org/packages/65/98/fb62dd9bae67f37952d5b1710b8443a855aa25116f36084feb581b043498/haigha-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "abbbee05db03df5747b0379759fee426", "sha256": "d8f77614eb147219af336f413e85fceacb4152f600db9b0ff0fdb6851dbe9eef" }, "downloads": -1, "filename": "haigha-0.3.0.tar.gz", "has_sig": false, "md5_digest": "abbbee05db03df5747b0379759fee426", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913460, "upload_time": "2011-06-21T20:19:15", "url": "https://files.pythonhosted.org/packages/40/5f/79357a070b3f7cf9fb70738364081e18e9aaf6b3ff847fc2bf3a7e838aaf/haigha-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "9eb55ab08dc99d972ce32b8742af6106", "sha256": "98e40193a976c39cb6eb571cfaf2d263ff8dd1df0c107c2619c661435307e38e" }, "downloads": -1, "filename": "haigha-0.3.1.tar.gz", "has_sig": false, "md5_digest": "9eb55ab08dc99d972ce32b8742af6106", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 913508, "upload_time": "2011-06-28T23:34:46", "url": "https://files.pythonhosted.org/packages/55/fb/ffebf3ba3e626bd834e2c3e84e524b52a56959a55092019783be44d5e5e7/haigha-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "19c1bc7e2eed5a096367ecdbc80572b1", "sha256": "b635255b85aaad959af52ec35a7d1c91631cf8fe333849d97f72ef4cd83a270b" }, "downloads": -1, "filename": "haigha-0.3.2.tar.gz", "has_sig": false, "md5_digest": "19c1bc7e2eed5a096367ecdbc80572b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 914816, "upload_time": "2011-08-09T17:16:15", "url": "https://files.pythonhosted.org/packages/18/ee/b263d248c1a7d8a85dbd24e66a0268a6268d75d16608c0983f95f8e8c1c7/haigha-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "e082b7d2ea305f913483fbd93c70390e", "sha256": "32a4cb18e5cfdd5becdfe340bf783a553b0a87216071bba279500d55349c3476" }, "downloads": -1, "filename": "haigha-0.3.3.tar.gz", "has_sig": false, "md5_digest": "e082b7d2ea305f913483fbd93c70390e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48189, "upload_time": "2011-11-14T21:27:13", "url": "https://files.pythonhosted.org/packages/3a/39/940939be471a791c784ca8e6b1cb25d1f142211d6b0b5915db4e42e5179d/haigha-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "755936f36823f3edff3cf7cce8eed772", "sha256": "df4b8db0dcf752889ebacb8c7ffad194f8450d30fc52a72cf0e9d1accd0a6b5e" }, "downloads": -1, "filename": "haigha-0.3.4.tar.gz", "has_sig": false, "md5_digest": "755936f36823f3edff3cf7cce8eed772", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 915566, "upload_time": "2011-11-16T19:44:17", "url": "https://files.pythonhosted.org/packages/62/a8/5a08e374d811dcf834caa61173edc08e149d71675ebbb4fc900b8164cf70/haigha-0.3.4.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "7eafdfaa71977a0bf8f863a2a9ec8ae1", "sha256": "6e5fea1ed3cc4c6e07733b58667ad2c2dc66e8130a33c2dca2b4b305e6edbcf3" }, "downloads": -1, "filename": "haigha-0.4.0.tar.gz", "has_sig": false, "md5_digest": "7eafdfaa71977a0bf8f863a2a9ec8ae1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 916788, "upload_time": "2012-01-30T19:06:19", "url": "https://files.pythonhosted.org/packages/a7/b6/400c616f280891f50bfaebfd34612d811b94db6b5a78273968e7e8f7890b/haigha-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "d007b54641665d39916f004d9553498f", "sha256": "336d23f8880651b628dcdd6e2a1b0a73a049afb8d8dead53bb8db20ab0223405" }, "downloads": -1, "filename": "haigha-0.4.1.tar.gz", "has_sig": false, "md5_digest": "d007b54641665d39916f004d9553498f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 916934, "upload_time": "2012-02-07T17:23:28", "url": "https://files.pythonhosted.org/packages/0d/58/1718e0571338ebfe241bc23a85ef822795d42a6757e7eb0f48f1c801b6b8/haigha-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "c3671b25e1c2a4076c2d1e9b3321d2fe", "sha256": "814a7d206321415d649dfbeed63ada8452fc58bc23f9458ff71ee93593721c0a" }, "downloads": -1, "filename": "haigha-0.4.2.tar.gz", "has_sig": false, "md5_digest": "c3671b25e1c2a4076c2d1e9b3321d2fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 917041, "upload_time": "2012-03-26T23:02:37", "url": "https://files.pythonhosted.org/packages/54/80/c00d2bbbe2ce9c983796e22da9afda5f9d5cce8cbfb47216be25ab08db4d/haigha-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "6feb256aac7be5b1fcd16cf2f45d08da", "sha256": "6f642dd599db89f9e6fbf0443b4b02b42fa8caa9a35ba6e110b8c2edbb04a7a9" }, "downloads": -1, "filename": "haigha-0.4.3.tar.gz", "has_sig": false, "md5_digest": "6feb256aac7be5b1fcd16cf2f45d08da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 917944, "upload_time": "2012-03-28T20:25:04", "url": "https://files.pythonhosted.org/packages/98/a5/237efeefe6ced580172e44dbd52d75479aeebd017338b9d617ab4507a012/haigha-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "c8f54b657c5e4d72f411d3b9b327c3f2", "sha256": "50de290079800f3d13c961aa84ecd79570eaaf788d874857d2ade6f15e9b816a" }, "downloads": -1, "filename": "haigha-0.4.4.tar.gz", "has_sig": false, "md5_digest": "c8f54b657c5e4d72f411d3b9b327c3f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 917992, "upload_time": "2012-04-03T17:03:44", "url": "https://files.pythonhosted.org/packages/40/c6/ec184fbc7b9f9caf0cb93d2f9ac41f8ce2c4e7e7e95df7efecc821d85ab5/haigha-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "10b564284ae01296c816602b4afef3d2", "sha256": "5b824448f9ee4420861c05679a92127f18498cb84f0d08ebc53ed8a582009c0d" }, "downloads": -1, "filename": "haigha-0.4.5.tar.gz", "has_sig": false, "md5_digest": "10b564284ae01296c816602b4afef3d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 919514, "upload_time": "2012-04-04T22:52:58", "url": "https://files.pythonhosted.org/packages/4f/2e/bff77447906c6bdbacc0fc400c406c05278f1f4693012f136832b1129d61/haigha-0.4.5.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "fb48aa0723242a48ed0f718ab95a614d", "sha256": "39ef88a5ef14696406be24888902c6d719b316c0d7d387e85df8c25c1baf3261" }, "downloads": -1, "filename": "haigha-0.5.0.tar.gz", "has_sig": false, "md5_digest": "fb48aa0723242a48ed0f718ab95a614d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 921769, "upload_time": "2012-04-27T22:18:59", "url": "https://files.pythonhosted.org/packages/fb/6a/2480fbb77ba6cc9b00fa0f3354f596cc059294403c7e0f0d7c1c3e8123da/haigha-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "ebb0280681d9d7a26958bf8323c8ad65", "sha256": "6135bb1c0d445c0a45fa3eefc89e3fcf85c59499c268a7dd8dc5e1e91fa85ebe" }, "downloads": -1, "filename": "haigha-0.5.1.tar.gz", "has_sig": false, "md5_digest": "ebb0280681d9d7a26958bf8323c8ad65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 922605, "upload_time": "2012-05-07T20:07:46", "url": "https://files.pythonhosted.org/packages/21/88/0ea96a77988b8b3c5c229668b659dabbeb9546378c445f0cf382c5cea311/haigha-0.5.1.tar.gz" } ], "0.5.10": [ { "comment_text": "", "digests": { "md5": "3d3f32138e16d039a715b02bf035674d", "sha256": "ef8b7e8296ccf4a08178ec157b18fad9e394f86ba5f1e7770f3ef43755dbbfe0" }, "downloads": -1, "filename": "haigha-0.5.10.tar.gz", "has_sig": false, "md5_digest": "3d3f32138e16d039a715b02bf035674d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 927844, "upload_time": "2013-06-10T14:44:28", "url": "https://files.pythonhosted.org/packages/0a/fe/54e4aa00c3262fa296756c2d39bf62bf4e63a5322ce82c3f1fd10b913c41/haigha-0.5.10.tar.gz" } ], "0.5.11": [ { "comment_text": "", "digests": { "md5": "2ed90e90146a2380ecce374f217b2fa8", "sha256": "40303b71d4ac697b75a02966785aba2e53ca2045ff6e3c84786736f3e208b3d7" }, "downloads": -1, "filename": "haigha-0.5.11.tar.gz", "has_sig": false, "md5_digest": "2ed90e90146a2380ecce374f217b2fa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928000, "upload_time": "2013-06-18T19:24:59", "url": "https://files.pythonhosted.org/packages/58/82/dac6d83c078d6e88c1d17d6133cf488b5b5d34913539fc778e5f1110146f/haigha-0.5.11.tar.gz" } ], "0.5.12": [ { "comment_text": "", "digests": { "md5": "0219dc5e938702f0626cea0026d301b2", "sha256": "a9a52ac673d17fb148121b21eb88d8a86664a3508f71f0850058cb8134261993" }, "downloads": -1, "filename": "haigha-0.5.12.tar.gz", "has_sig": false, "md5_digest": "0219dc5e938702f0626cea0026d301b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928168, "upload_time": "2013-07-15T19:13:17", "url": "https://files.pythonhosted.org/packages/dd/f8/d623bb9be6bb5cb8d1611d4b53b19785e88a990ed2d69303ed733433a2ed/haigha-0.5.12.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "946831fc879cb021b3a98dc113a42bbd", "sha256": "2bc7dcdb70ccbea05aae362844d63e1847b52fc2dc821903a1af5975eb5ee65c" }, "downloads": -1, "filename": "haigha-0.5.2.tar.gz", "has_sig": false, "md5_digest": "946831fc879cb021b3a98dc113a42bbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 926295, "upload_time": "2012-05-16T19:12:57", "url": "https://files.pythonhosted.org/packages/5d/13/2e3a67e9ee6225e34a05f2cfa4f43d7f980b863230d8c20042c45166ef71/haigha-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "d0ca8aad63e118177579d4486436969b", "sha256": "69273f8fbc7d41644440682778e6f5b8a9c443470e9ffa2cb096f4248e603421" }, "downloads": -1, "filename": "haigha-0.5.3.tar.gz", "has_sig": false, "md5_digest": "d0ca8aad63e118177579d4486436969b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 926304, "upload_time": "2012-05-18T15:42:30", "url": "https://files.pythonhosted.org/packages/e0/7d/a8e23fdeedfd9e82c5411f04ac403b6b935a0e2bef00428f5e74ec9f9758/haigha-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "16ee24129f3626d262ad9dd45a005a80", "sha256": "b257cc589b2d61e1ecc3bcd3d1e2c219078060537b902dc81a878df38b47403a" }, "downloads": -1, "filename": "haigha-0.5.4.tar.gz", "has_sig": false, "md5_digest": "16ee24129f3626d262ad9dd45a005a80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 927671, "upload_time": "2012-08-15T18:11:47", "url": "https://files.pythonhosted.org/packages/62/a6/2f153f0ba2b7eaf6820505cfa75ffb97fc705297849577285309c046c2d3/haigha-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "a62a3302d7edeaeb4c6f81f84c4c5322", "sha256": "00e50e5d1bd15affedbb5a9fffd970553cefa59e1ca28c1ce368ac84c8d74af5" }, "downloads": -1, "filename": "haigha-0.5.5.tar.gz", "has_sig": false, "md5_digest": "a62a3302d7edeaeb4c6f81f84c4c5322", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 927672, "upload_time": "2012-08-16T20:14:15", "url": "https://files.pythonhosted.org/packages/21/3d/b0e8cf1d9a8d90f91476d2d7be2ede847273b3e53be9549226f227dcddc8/haigha-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "da5e3a613de0a891e3fd85e1235cd506", "sha256": "c3fe4d07337733b98a1dab4727438751b96994e2d6f9443aa33b94b85f11700c" }, "downloads": -1, "filename": "haigha-0.5.6.tar.gz", "has_sig": false, "md5_digest": "da5e3a613de0a891e3fd85e1235cd506", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 927848, "upload_time": "2012-08-31T13:43:08", "url": "https://files.pythonhosted.org/packages/1b/0a/f86464d4e640d6ceeee75995ec00de509d3d039b72821a44808866f2fded/haigha-0.5.6.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "f2be06034cbd42b6d2a274dd3820af0f", "sha256": "ffd7db7f59e674c8d1e8fb28edc9af0b127eab915a47e37b8ae87546f2be653e" }, "downloads": -1, "filename": "haigha-0.5.7.tar.gz", "has_sig": false, "md5_digest": "f2be06034cbd42b6d2a274dd3820af0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928189, "upload_time": "2012-09-21T18:33:07", "url": "https://files.pythonhosted.org/packages/13/96/e2f5196c1a7266fd4828f5887298c471f4451978de63d95058e824d4d6c6/haigha-0.5.7.tar.gz" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "23bb1c4c1fc937e927b84f974503945d", "sha256": "0e942e7dcbf7e99ab2c22c00ee9e02e6c3fff6d51fd9aa429e430e95092da743" }, "downloads": -1, "filename": "haigha-0.5.8.tar.gz", "has_sig": false, "md5_digest": "23bb1c4c1fc937e927b84f974503945d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928160, "upload_time": "2012-10-12T12:42:00", "url": "https://files.pythonhosted.org/packages/fe/95/21eb4902b59ce218e239d2942bb7bcc821ecc1e1564c4186d72d2842f3a2/haigha-0.5.8.tar.gz" } ], "0.5.9": [ { "comment_text": "", "digests": { "md5": "0082187538d2adeb4e054115a42c458b", "sha256": "096f392d4820a0a62cbafa59aadcf2d8ee85d47e042e70881763afef69e27eda" }, "downloads": -1, "filename": "haigha-0.5.9.tar.gz", "has_sig": false, "md5_digest": "0082187538d2adeb4e054115a42c458b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928196, "upload_time": "2012-12-05T21:58:06", "url": "https://files.pythonhosted.org/packages/55/56/785fe4241dd8cdc1e831fc058fa187a12477f55c44002a2721aa43bb11fa/haigha-0.5.9.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "b74b147d4310b669cff3a95f5e8a0a6a", "sha256": "a1ed28dc5c6d3505cd94f9dedeefb613886a3dc62fe35802102abded3987a93f" }, "downloads": -1, "filename": "haigha-0.6.0.tar.gz", "has_sig": false, "md5_digest": "b74b147d4310b669cff3a95f5e8a0a6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928240, "upload_time": "2013-08-05T13:08:03", "url": "https://files.pythonhosted.org/packages/f4/52/ac501af1378a2afca6eda4eb143a9525c3f3528a5f61b81837cf4efe934e/haigha-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "6a922649d13442cabfd64be83a39987d", "sha256": "ed551eb804807f5ea7426b6c14c7f96a8cfe4446a715b3414832ccd5dbc6f910" }, "downloads": -1, "filename": "haigha-0.6.1.tar.gz", "has_sig": false, "md5_digest": "6a922649d13442cabfd64be83a39987d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33924, "upload_time": "2013-09-12T00:42:09", "url": "https://files.pythonhosted.org/packages/dd/01/6f8572d727481dbfc4c03ca694a18bc69a005c7643187a485e13d6727a80/haigha-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "92be3335efe4d3471d4f2e819a230579", "sha256": "7c423f938144c2bc73350568b767825f714c5b89de54419464559ff070eae556" }, "downloads": -1, "filename": "haigha-0.6.2.tar.gz", "has_sig": false, "md5_digest": "92be3335efe4d3471d4f2e819a230579", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 927846, "upload_time": "2014-03-19T15:42:50", "url": "https://files.pythonhosted.org/packages/61/97/272151219386600b15b2db859fb7eeb10a35666635b71d3eb8b5b26a99dc/haigha-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "b4042c0f0566940ab454b6b942b37009", "sha256": "a7d6f2a35aa3ba92d5710422e7457d4ab3df074b012eafa8d22a000bd94da3a9" }, "downloads": -1, "filename": "haigha-0.7.0.tar.gz", "has_sig": false, "md5_digest": "b4042c0f0566940ab454b6b942b37009", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928606, "upload_time": "2014-03-27T20:52:31", "url": "https://files.pythonhosted.org/packages/07/4b/3914ad55ae87b04c63eedf3b59c16df47cb935231a2f580bd5f454af89b1/haigha-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "9d34d0e0429a8887ee4b6b6c3fd2c919", "sha256": "cebb2fbd36261003be7f0997b37ccc7867a2f6d0e3532ef3a9df2fd71aa98adb" }, "downloads": -1, "filename": "haigha-0.7.1.tar.gz", "has_sig": false, "md5_digest": "9d34d0e0429a8887ee4b6b6c3fd2c919", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 905787, "upload_time": "2014-05-22T14:23:17", "url": "https://files.pythonhosted.org/packages/4e/77/91ab53ca46da2084840204e99a150d1e69439bfbbba3e060e92edf021b06/haigha-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "b141d045b527ea2fef2d2112bd36a6bb", "sha256": "d264f342d4670300aed38391b164208c2a0db842dc8fadc1bb6f4b6fa7886f40" }, "downloads": -1, "filename": "haigha-0.7.2.tar.gz", "has_sig": false, "md5_digest": "b141d045b527ea2fef2d2112bd36a6bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 908674, "upload_time": "2014-12-03T16:29:24", "url": "https://files.pythonhosted.org/packages/57/9c/cbe1419eb7e94229e768787e0552d8873877cfb06899d0982e42324166db/haigha-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "a358ab62803f84b409d5aaa70073f272", "sha256": "d24d6edff83f03efd48741ec9a3435ba2da4c5ca36ac1179486b84ea5d6a40f9" }, "downloads": -1, "filename": "haigha-0.7.3.tar.gz", "has_sig": false, "md5_digest": "a358ab62803f84b409d5aaa70073f272", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 908805, "upload_time": "2015-03-05T22:21:03", "url": "https://files.pythonhosted.org/packages/bc/bb/75c9efc127a0623fb2289104636e655dfdbae23e2fa7759e32275288106d/haigha-0.7.3.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "0f7f80733209a6e3e7494b8e0ef35650", "sha256": "e084bc966ba679789b0892a261695f33a104542b00453cb37782251165c6a3b3" }, "downloads": -1, "filename": "haigha-0.8.0.tar.gz", "has_sig": false, "md5_digest": "0f7f80733209a6e3e7494b8e0ef35650", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 909984, "upload_time": "2015-05-29T21:10:03", "url": "https://files.pythonhosted.org/packages/9e/3b/75200b69d24bd1315122062ac7c4b8121769c9a84f70bf1d1bd7bd8b63b4/haigha-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "4d31ae7d1d9864b2a0f6e6d9021343d9", "sha256": "5996f0a4bea619dec2a9adfd17fc5805037c13fe414ae31fdc3aecf2eaaa8d06" }, "downloads": -1, "filename": "haigha-0.9.0.tar.gz", "has_sig": false, "md5_digest": "4d31ae7d1d9864b2a0f6e6d9021343d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 911661, "upload_time": "2016-01-20T14:13:12", "url": "https://files.pythonhosted.org/packages/d5/13/dded83f1931884ba1edc358adeed54acfe99e11a637f12024068fa8f942c/haigha-0.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4d31ae7d1d9864b2a0f6e6d9021343d9", "sha256": "5996f0a4bea619dec2a9adfd17fc5805037c13fe414ae31fdc3aecf2eaaa8d06" }, "downloads": -1, "filename": "haigha-0.9.0.tar.gz", "has_sig": false, "md5_digest": "4d31ae7d1d9864b2a0f6e6d9021343d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 911661, "upload_time": "2016-01-20T14:13:12", "url": "https://files.pythonhosted.org/packages/d5/13/dded83f1931884ba1edc358adeed54acfe99e11a637f12024068fa8f942c/haigha-0.9.0.tar.gz" } ] }