{ "info": { "author": "Django Software Foundation", "author_email": "foundation@djangoproject.com", "bugtrack_url": null, "classifiers": [], "description": "asgi_redis\n==========\n\n.. image:: https://api.travis-ci.org/django/asgi_redis.svg\n :target: https://travis-ci.org/django/asgi_redis\n\n.. image:: https://img.shields.io/pypi/v/asgi_redis.svg\n :target: https://pypi.python.org/pypi/asgi_redis\n\nAn ASGI channel layer that uses Redis as its backing store, and supports\nboth a single-server and sharded configurations, as well as group support.\n\n\nUsage\n-----\n\nYou'll need to instantiate the channel layer with at least ``hosts``,\nand other options if you need them.\n\nExample:\n\n.. code-block:: python\n\n channel_layer = RedisChannelLayer(\n host=\"redis\",\n db=4,\n channel_capacity={\n \"http.request\": 200,\n \"http.response*\": 10,\n }\n )\n\n``hosts``\n~~~~~~~~~\n\nThe server(s) to connect to, as either URIs or ``(host, port)`` tuples. Defaults to ``['localhost', 6379]``. Pass multiple hosts to enable sharding, but note that changing the host list will lose some sharded data.\n\n``prefix``\n~~~~~~~~~~\n\nPrefix to add to all Redis keys. Defaults to ``asgi:``. If you're running\ntwo or more entirely separate channel layers through the same Redis instance,\nmake sure they have different prefixes. All servers talking to the same layer\nshould have the same prefix, though.\n\n``expiry``\n~~~~~~~~~~\n\nMessage expiry in seconds. Defaults to ``60``. You generally shouldn't need\nto change this, but you may want to turn it down if you have peaky traffic you\nwish to drop, or up if you have peaky traffic you want to backlog until you\nget to it.\n\n``group_expiry``\n~~~~~~~~~~~~~~~~\n\nGroup expiry in seconds. Defaults to ``86400``. Interface servers will drop\nconnections after this amount of time; it's recommended you reduce it for a\nhealthier system that encourages disconnections.\n\n``capacity``\n~~~~~~~~~~~~\n\nDefault channel capacity. Defaults to ``100``. Once a channel is at capacity,\nit will refuse more messages. How this affects different parts of the system\nvaries; a HTTP server will refuse connections, for example, while Django\nsending a response will just wait until there's space.\n\n``channel_capacity``\n~~~~~~~~~~~~~~~~~~~~\n\nPer-channel capacity configuration. This lets you tweak the channel capacity\nbased on the channel name, and supports both globbing and regular expressions.\n\nIt should be a dict mapping channel name pattern to desired capacity; if the\ndict key is a string, it's intepreted as a glob, while if it's a compiled\n``re`` object, it's treated as a regular expression.\n\nThis example sets ``http.request`` to 200, all ``http.response!`` channels\nto 10, and all ``websocket.send!`` channels to 20:\n\n.. code-block:: python\n\n channel_capacity={\n \"http.request\": 200,\n \"http.response!*\": 10,\n re.compile(r\"^websocket.send\\!.+\"): 20,\n }\n\nIf you want to enforce a matching order, use an ``OrderedDict`` as the\nargument; channels will then be matched in the order the dict provides them.\n\n``symmetric_encryption_keys``\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nPass this to enable the optional symmetric encryption mode of the backend. To\nuse it, make sure you have the ``cryptography`` package installed, or specify\nthe ``cryptography`` extra when you install ``asgi_redis``::\n\n pip install asgi_redis[cryptography]\n\n``symmetric_encryption_keys`` should be a list of strings, with each string\nbeing an encryption key. The first key is always used for encryption; all are\nconsidered for decryption, so you can rotate keys without downtime - just add\na new key at the start and move the old one down, then remove the old one\nafter the message expiry time has passed.\n\nData is encrypted both on the wire and at rest in Redis, though we advise\nyou also route your Redis connections over TLS for higher security; the Redis\nprotocol is still unencrypted, and the channel and group key names could\npotentially contain metadata patterns of use to attackers.\n\nKeys **should have at least 32 bytes of entropy** - they are passed through\nthe SHA256 hash function before being used as an encryption key. Any string\nwill work, but the shorter the string, the easier the encryption is to break.\n\nIf you're using Django, you may also wish to set this to your site's\n``SECRET_KEY`` setting via the ``CHANNEL_LAYERS`` setting:\n\n.. code-block:: python\n\n CHANNEL_LAYERS = {\n \"default\": {\n \"BACKEND\": \"asgi_redis.RedisChannelLayer\",\n \"ROUTING\": \"my_project.routing.channel_routing\",\n \"CONFIG\": {\n \"hosts\": [\"redis://:password@127.0.0.1:6379/0\"],\n \"symmetric_encryption_keys\": [SECRET_KEY],\n },\n },\n }\n\n``connection_kwargs``\n---------------------\n\nOptional extra arguments to pass to the ``redis-py`` connection class. Options\ninclude ``socket_connect_timeout``, ``socket_timeout``, ``socket_keepalive``,\nand ``socket_keepalive_options``. See the\n`redis-py documentation `_ for more.\n\n\nLocal-and-Remote Mode\n---------------------\n\nA \"local and remote\" mode is also supported, where the Redis channel layer\nworks in conjunction with a machine-local channel layer (``asgi_ipc``) in order\nto route all normal channels over the local layer, while routing all\nsingle-reader and process-specific channels over the Redis layer.\n\nThis allows traffic on things like ``http.request`` and ``websocket.receive``\nto stay in the local layer and not go through Redis, while still allowing Group\nsend and sends to arbitrary channels terminated on other machines to work\ncorrectly. It will improve performance and decrease the load on your\nRedis cluster, but **it requires all normal channels are consumed on the\nsame machine**.\n\nIn practice, this means you MUST run workers that consume every channel your\napplication has code to handle on the same machine as your HTTP or WebSocket\nterminator. If you fail to do this, requests to that machine will get routed\ninto only the local queue and hang as nothing is reading them.\n\nTo use it, just use the ``asgi_redis.RedisLocalChannelLayer`` class in your\nconfiguration instead of ``RedisChannelLayer`` and make sure you have the\n``asgi_ipc`` package installed; no other change is needed.\n\n\nSentinel Mode\n-------------\n\n\"Sentinel\" mode is also supported, where the Redis channel layer will connect to\na redis sentinel cluster to find the present Redis master before writing or reading\ndata.\n\nSentinel mode supports sharding, but does not support multiple Sentinel clusters. To\nrun sharding of keys across multiple Redis clusters, use a single sentinel cluster,\nbut have that sentinel cluster monitor multiple \"services\". Then in the configuration\nfor the RedisSentinelChannelLayer, add a list of the service names. You can also\nleave the list of services blank, and the layer will pull all services that are\nconfigured on the sentinel master.\n\nRedis Sentinel mode does not support URL-style connection strings, just tuple-based ones.\n\nConfiguration for Sentinel mode looks like this:\n\n.. code-block:: python\n\n CHANNEL_LAYERS = {\n \"default\": {\n \"BACKEND\": \"asgi_redis.RedisSentinelChannelLayer\",\n \"CONFIG\": {\n \"hosts\": [(\"10.0.0.1\", 26739), (\"10.0.0.2\", 26379), (\"10.0.0.3\", 26379)],\n \"services\": [\"shard1\", \"shard2\", \"shard3\"],\n },\n },\n }\n\nThe \"shard1\", \"shard2\", etc entries correspond to the name of the service configured in your\nredis `sentinel.conf` file. For example, if your `sentinel.conf` says ``sentinel monitor local 127.0.0.1 6379 1``\nthen you would want to include \"local\" as a service in the `RedisSentinelChannelLayer` configuration.\n\nYou may also pass a ``sentinel_refresh_interval`` value in the ``CONFIG``, which\nwill enable caching of the Sentinel results for the specified number of seconds.\nThis is recommended to reduce the need to query Sentinel every time; even a\nlow value of 5 seconds will significantly reduce overhead.\n\nDependencies\n------------\n\nRedis >= 2.6 is required for `asgi_redis`. It supports Python 2.7, 3.4,\n3.5 and 3.6.\n\nContributing\n------------\n\nPlease refer to the\n`main Channels contributing docs `_.\nThat also contains advice on how to set up the development environment and run the tests.\n\nMaintenance and Security\n------------------------\n\nTo report security issues, please contact security@djangoproject.com. For GPG\nsignatures and more security process information, see\nhttps://docs.djangoproject.com/en/dev/internals/security/.\n\nTo report bugs or request new features, please open a new GitHub issue.\n\nThis repository is part of the Channels project. For the shepherd and maintenance team, please see the\n`main Channels readme `_.\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/django/asgi_redis/", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "asgi_redis", "package_url": "https://pypi.org/project/asgi_redis/", "platform": "", "project_url": "https://pypi.org/project/asgi_redis/", "project_urls": { "Homepage": "http://github.com/django/asgi_redis/" }, "release_url": "https://pypi.org/project/asgi_redis/1.4.3/", "requires_dist": null, "requires_python": "", "summary": "Redis-backed ASGI channel layer implementation", "version": "1.4.3" }, "last_serial": 5107837, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "7be9af9bab54d5a399b9a43fdb1b55ea", "sha256": "77d44cfc0c3e0cab5b3f4588f9127f90e6335d0600535d6fdda986ab53d59bf1" }, "downloads": -1, "filename": "asgi_redis-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7be9af9bab54d5a399b9a43fdb1b55ea", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 6347, "upload_time": "2016-03-27T21:08:35", "url": "https://files.pythonhosted.org/packages/27/31/e6dd797e6fbcea5e6f09ecb5ee560ac7a252daed1fae2905b0f39a74b4ba/asgi_redis-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0de71620ea98665922e03e3e69510a10", "sha256": "03f4c6abdb8525fdbfe2a41a454db53b37574d9621aa30b3e595189a70a44c49" }, "downloads": -1, "filename": "asgi_redis-0.10.0.tar.gz", "has_sig": false, "md5_digest": "0de71620ea98665922e03e3e69510a10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4889, "upload_time": "2016-03-27T21:08:27", "url": "https://files.pythonhosted.org/packages/c0/91/b1dd29ef462a8b8f55cff8ef320b04030d546541175371d618f0bec603fb/asgi_redis-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "5164d065479a5ac5e9d8cffba54e43f5", "sha256": "b1dbbbe07bd1066bf506c2115f9241b458bb4a4d69ac0c5ae4dc82d7379c91d4" }, "downloads": -1, "filename": "asgi_redis-0.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5164d065479a5ac5e9d8cffba54e43f5", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 6774, "upload_time": "2016-05-07T19:29:13", "url": "https://files.pythonhosted.org/packages/4d/03/03d0a50a1b08b2228c71673f92520dba00da52dad9d133ff5dac138ce146/asgi_redis-0.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e71e0084d945046d02becc0d6899a004", "sha256": "f98245534e6d4f8d74c096c29481613305a99c197c100c66513e31da5d8d97b3" }, "downloads": -1, "filename": "asgi_redis-0.11.0.tar.gz", "has_sig": false, "md5_digest": "e71e0084d945046d02becc0d6899a004", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5262, "upload_time": "2016-05-07T19:29:05", "url": "https://files.pythonhosted.org/packages/c2/c5/9889f43bc17d0f602031ebd8066320ca6a7fa443fb8e65d3284699944d60/asgi_redis-0.11.0.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "7b8df3a225a3e163e68516ea0ef16d67", "sha256": "b3e4cb780bacc0e2adfc8dc14f576ad567dbae3b17c2ae58fe240066246c473b" }, "downloads": -1, "filename": "asgi_redis-0.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b8df3a225a3e163e68516ea0ef16d67", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9566, "upload_time": "2016-05-25T19:06:25", "url": "https://files.pythonhosted.org/packages/bc/f1/87031b072a49b20cf010272a9bd90e6fe3a7ed3adbad44d47692d5b18f55/asgi_redis-0.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "115cf19d0a02684d714f5160b9e024ac", "sha256": "fcb74640eebe18e334f68072be21f83f67b4e5bc92e9012386fed46761ef3f3a" }, "downloads": -1, "filename": "asgi_redis-0.12.0.tar.gz", "has_sig": false, "md5_digest": "115cf19d0a02684d714f5160b9e024ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7091, "upload_time": "2016-05-25T19:06:13", "url": "https://files.pythonhosted.org/packages/0c/15/c1775e9c2fa0ce426b5344a0acd2718e92053237372cc9e6e5116bbdcca9/asgi_redis-0.12.0.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "5596f5b9e7fab83195c327ac5b794baf", "sha256": "cedff3c21b80a311e6047124d13e8fbe6025c2ae099bcd80e75ada8ec55e1b8c" }, "downloads": -1, "filename": "asgi_redis-0.13.0.tar.gz", "has_sig": false, "md5_digest": "5596f5b9e7fab83195c327ac5b794baf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9430, "upload_time": "2016-06-09T00:36:34", "url": "https://files.pythonhosted.org/packages/4e/36/7de141de9dfb917d8a7ab17e5f6f9bbdad23c4e0278b4df7dac5a1c9c33a/asgi_redis-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "f1ba51d854371993f3108b99de880ceb", "sha256": "dba8d392b9fd9dd2e3079315b5d745d51489d193fe2da4ec946dea39038a05a9" }, "downloads": -1, "filename": "asgi_redis-0.13.1.tar.gz", "has_sig": false, "md5_digest": "f1ba51d854371993f3108b99de880ceb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9432, "upload_time": "2016-06-09T15:42:05", "url": "https://files.pythonhosted.org/packages/2d/07/6ba780136998137bbce37d2a63529217299badde7660d946c3ae3d8ecff2/asgi_redis-0.13.1.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "9c77684a91c68457f0b3bf0eac431e3a", "sha256": "718846859388589fcf83355fefc2cbf1ccef6753bb6604cc769550dab1e8d5dc" }, "downloads": -1, "filename": "asgi_redis-0.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9c77684a91c68457f0b3bf0eac431e3a", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 18083, "upload_time": "2016-07-17T05:54:21", "url": "https://files.pythonhosted.org/packages/78/37/93c709cd20521bd2065570a6cf18a39086822a333ef0e2f227812ffc2e61/asgi_redis-0.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95df3e7ca0639932847ac4d63559910e", "sha256": "193a4f7e9e30f2d5b24090a87fb64fee8b136a0fd26692b764999d4672a2f25c" }, "downloads": -1, "filename": "asgi_redis-0.14.0.tar.gz", "has_sig": false, "md5_digest": "95df3e7ca0639932847ac4d63559910e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9436, "upload_time": "2016-07-17T05:52:04", "url": "https://files.pythonhosted.org/packages/eb/57/7ff8d690d50f5a532864a0cac293a48c0c5eb0b1935fc78f3c3a0a575332/asgi_redis-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "fe5883fe3b1f0f363e47034cfe92f11f", "sha256": "e77007c289ea99b1ab2d69cfb2ccf3eb7b949f1a0bbfa13ffe3c92e9df698ee6" }, "downloads": -1, "filename": "asgi_redis-0.14.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe5883fe3b1f0f363e47034cfe92f11f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 19277, "upload_time": "2016-08-25T05:10:32", "url": "https://files.pythonhosted.org/packages/08/3f/1f3b867f4b9ef713191074412d9455ed1bd37b2cac063559be6860bc6c6e/asgi_redis-0.14.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "376ef879a768fb69121d04a2ae8e37f3", "sha256": "428457a5a948c32f0ced61b49750ccb4bcd132b75110d545e547d1c76d803d8e" }, "downloads": -1, "filename": "asgi_redis-0.14.1.tar.gz", "has_sig": false, "md5_digest": "376ef879a768fb69121d04a2ae8e37f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10211, "upload_time": "2016-08-25T05:10:29", "url": "https://files.pythonhosted.org/packages/25/10/c2cade7888aae9482d6a2b27cab2c73a3ee91a5c34da781cef6d41d606e6/asgi_redis-0.14.1.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "e4e67e2dc0e4489d01e1ce89b77da2f6", "sha256": "9f134946434c583f0425bfbb04b4dd884636e2b5ee90c6acf8dd4c357d6a70de" }, "downloads": -1, "filename": "asgi_redis-0.8.tar.gz", "has_sig": false, "md5_digest": "e4e67e2dc0e4489d01e1ce89b77da2f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1598, "upload_time": "2016-01-03T06:48:33", "url": "https://files.pythonhosted.org/packages/9c/6c/3db668835832bc24c7b7da3a7ba01fd79082e34c19fdb8ff866b52c67499/asgi_redis-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "2fb5073c55e0fdf70136f19faf54829f", "sha256": "5194e518039bf6b4ad7166e790592eb74cb15cb41f6f66bca78e0fd9f4a9c43c" }, "downloads": -1, "filename": "asgi_redis-0.8.1.tar.gz", "has_sig": false, "md5_digest": "2fb5073c55e0fdf70136f19faf54829f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4248, "upload_time": "2016-02-22T15:11:23", "url": "https://files.pythonhosted.org/packages/c5/d5/c1961e7b7ea68072f8a8321180aa74de05d60df437d479c4da7ed672cb7a/asgi_redis-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "c3cc4a624ca6c8da32cf331590774d96", "sha256": "075fdfc14f36e258ed5dd1631883560c6f776cc4e3cb7ba4c897f3fa734c0759" }, "downloads": -1, "filename": "asgi_redis-0.8.2.tar.gz", "has_sig": false, "md5_digest": "c3cc4a624ca6c8da32cf331590774d96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4346, "upload_time": "2016-02-22T18:08:44", "url": "https://files.pythonhosted.org/packages/12/d0/819ca3b4e97b1640310b8f1dd1e63906b9a913de97764f547c08eb2b2ddb/asgi_redis-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "2b431509ce286d9c2bfe16779ca484d9", "sha256": "ee58744ff2357ee4d688973263e4e885a2120215300826f0a1e5c2ceb64b9b12" }, "downloads": -1, "filename": "asgi_redis-0.8.3.tar.gz", "has_sig": false, "md5_digest": "2b431509ce286d9c2bfe16779ca484d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4480, "upload_time": "2016-02-29T06:30:13", "url": "https://files.pythonhosted.org/packages/2e/52/07c17753edfb69996bf6d18c7fbbb19196ae9db1d84d7ae586bd6897813c/asgi_redis-0.8.3.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "dfc3063c4a7ecddbaa9f9fff0963f8e0", "sha256": "118dd81df7b0766ad9784bd0214a24ea4b09b3f4523226d111023f820f3d738f" }, "downloads": -1, "filename": "asgi_redis-0.9.0.tar.gz", "has_sig": false, "md5_digest": "dfc3063c4a7ecddbaa9f9fff0963f8e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4516, "upload_time": "2016-03-21T23:42:37", "url": "https://files.pythonhosted.org/packages/bc/f0/bb002d3e7fe2ad0235278ce09c978d5d889f4ae2be0e2937c5b6c0164758/asgi_redis-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "e15d8d37e60ae36799b0d5fd6075bba9", "sha256": "f81f9fe2ce6667e02cfbd35af2f027140b620ff8c2e7541169140608155feee1" }, "downloads": -1, "filename": "asgi_redis-0.9.1.tar.gz", "has_sig": false, "md5_digest": "e15d8d37e60ae36799b0d5fd6075bba9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4483, "upload_time": "2016-03-23T20:29:09", "url": "https://files.pythonhosted.org/packages/8c/7b/e830b323359f7ca07c45230cdab31335819b5a03d1245a9fea01f7a3840d/asgi_redis-0.9.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "02b81f54053aba803c2c19b8871023a8", "sha256": "03103fb7eeb31476dfcaae63d589cbdfb128001e49b836b79a842f787a2c1699" }, "downloads": -1, "filename": "asgi_redis-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "02b81f54053aba803c2c19b8871023a8", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 15830, "upload_time": "2016-11-05T10:33:49", "url": "https://files.pythonhosted.org/packages/21/85/03ad5853177414bd7f4dc36eb34a45a0aa1ea42f31209eb7eefad92629f1/asgi_redis-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79c5f3d9cb6f0d2ed8618f72e498597e", "sha256": "adf3a7a5998bdf7fc3f840e9fb9eb6cfa3d8c9ccc077d3855660bd6aadeabfdd" }, "downloads": -1, "filename": "asgi_redis-1.0.0.tar.gz", "has_sig": false, "md5_digest": "79c5f3d9cb6f0d2ed8618f72e498597e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10822, "upload_time": "2016-11-05T10:33:46", "url": "https://files.pythonhosted.org/packages/62/09/8deb020c59cf844ac8ffa3884aa6862cf9280392f898c779d1b0ed35ab7d/asgi_redis-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "7a53c308b892e31c8faf22955afe2886", "sha256": "0c308ef0c35307bfe66cb17388a2a748468e37a2e0f34a9a2ea9f2d867531517" }, "downloads": -1, "filename": "asgi_redis-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a53c308b892e31c8faf22955afe2886", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17947, "upload_time": "2017-03-18T19:45:07", "url": "https://files.pythonhosted.org/packages/36/55/07791c584e2f87f38da43c02d44bca253b47c9577ad698ba0105e6fd0b96/asgi_redis-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4f149b3c10e7d23c598f4b89d6c9c41", "sha256": "2fc143c5112627b2633077b4c76bd76d3e0143bf2abcaa76ce9d12654254e2c1" }, "downloads": -1, "filename": "asgi_redis-1.1.0.tar.gz", "has_sig": false, "md5_digest": "f4f149b3c10e7d23c598f4b89d6c9c41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12506, "upload_time": "2017-03-18T19:45:05", "url": "https://files.pythonhosted.org/packages/0a/d7/4792bed65ba3f724a28814f4c5e8f5b81d76e037bffae2a66bde098a50e1/asgi_redis-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "4a28d8b3bcba91a447f802cf3e2bfa27", "sha256": "74633a5d537182f66d6fc87d0fe08df4c3b2ffb45aed2537e1905134f2db16b0" }, "downloads": -1, "filename": "asgi_redis-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4a28d8b3bcba91a447f802cf3e2bfa27", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 26357, "upload_time": "2017-04-01T14:10:02", "url": "https://files.pythonhosted.org/packages/1e/78/98cd1f7e2710108e8563f3346d565bebc69c4452d3cf18c478ad82531628/asgi_redis-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b84e9c0c942a4de3aeb882edab81f1f7", "sha256": "5a558bebf5cd90f831df79635631f423be71e88e9db519db8255beef6c57f302" }, "downloads": -1, "filename": "asgi_redis-1.2.0.tar.gz", "has_sig": false, "md5_digest": "b84e9c0c942a4de3aeb882edab81f1f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14500, "upload_time": "2017-04-01T14:09:58", "url": "https://files.pythonhosted.org/packages/ce/e4/66e0600cb723a63d033003bca5feee8f9298111c4f0f327e9e1d90a887c7/asgi_redis-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "479c8d2d58540e70138e57164ae149f5", "sha256": "95d4fd42246e8b4d2fe8c28570e7407d25cb467507bf42168e6289e888a2f256" }, "downloads": -1, "filename": "asgi_redis-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "479c8d2d58540e70138e57164ae149f5", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 26376, "upload_time": "2017-04-02T14:22:15", "url": "https://files.pythonhosted.org/packages/39/fd/53f0d63ca754d01b8f10d554725621f18a7d772bed518c30e5bed53107a7/asgi_redis-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c09100d68bdb4199cf45d5c4d215daf", "sha256": "9101c404a5aca01d410e64932ef983b08c93dc404ddb7920b426fc78a3927d7f" }, "downloads": -1, "filename": "asgi_redis-1.2.1.tar.gz", "has_sig": false, "md5_digest": "8c09100d68bdb4199cf45d5c4d215daf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14512, "upload_time": "2017-04-02T14:22:12", "url": "https://files.pythonhosted.org/packages/11/fe/56862eeee8b7879f785d92d2db858d2cb7261eec3046571655c8487bc9bb/asgi_redis-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "40740a63e25815ec6084cc38186c82ba", "sha256": "d84635a088250f43e124258c5aa5a8454f398acdd3760b6e0039d4ad522544af" }, "downloads": -1, "filename": "asgi_redis-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "40740a63e25815ec6084cc38186c82ba", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22422, "upload_time": "2017-04-07T03:47:03", "url": "https://files.pythonhosted.org/packages/69/02/72fa8a30e2e1819dfd13dbfb31b6f1798d6971f00357c60296b511304034/asgi_redis-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0053239980ed0bf4b773434fcc4c552e", "sha256": "94597230e15cba738fffbea4e8b956bd1a0ac04ed38a01404571740778281b7e" }, "downloads": -1, "filename": "asgi_redis-1.3.0.tar.gz", "has_sig": false, "md5_digest": "0053239980ed0bf4b773434fcc4c552e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14526, "upload_time": "2017-04-07T03:47:01", "url": "https://files.pythonhosted.org/packages/d9/b3/11bb4cfc8c70f20e12aca5ceb071cea8a38464a14d611ee8b7ebcc19bea1/asgi_redis-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "45cfd9f083d348a556839a299683e900", "sha256": "0a61fd2a949fa8e9311475c199f36f5c5ced3493d8d97e65a4253613068690c6" }, "downloads": -1, "filename": "asgi_redis-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "45cfd9f083d348a556839a299683e900", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24418, "upload_time": "2017-05-18T20:17:47", "url": "https://files.pythonhosted.org/packages/06/25/c1194af4c5599787cbdb11071bca584e4ccf683f0f97bdafc6a9deaedd6d/asgi_redis-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dbf19880498cc23cea243028af79be9c", "sha256": "ec137829a9ebfb0de1c034bc699240c9747b97a3eb2dc4df6c812f82290a0f9f" }, "downloads": -1, "filename": "asgi_redis-1.4.0.tar.gz", "has_sig": false, "md5_digest": "dbf19880498cc23cea243028af79be9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15898, "upload_time": "2017-05-18T20:17:40", "url": "https://files.pythonhosted.org/packages/98/2c/c8852be7c5f277e65272212cbf0fec3ad591da8cf2fd35ca63ae18609ece/asgi_redis-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "bc2047a3764dea345443ea2cf135d5b0", "sha256": "8a5151c6ddb60abd3f271082f3fe8590a8c4cf7eae2fa03bcd5797007ec054b0" }, "downloads": -1, "filename": "asgi_redis-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc2047a3764dea345443ea2cf135d5b0", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 28875, "upload_time": "2017-06-15T08:37:33", "url": "https://files.pythonhosted.org/packages/96/eb/b16f493965c3e3be469248a328091a13beff932aaf963dff53f7eeb112c4/asgi_redis-1.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "168fe827afd6f25b2d2293aaa2d0f8b1", "sha256": "71a6147c8b08833815993f16e2b665a0e5483fae392f03decb8da54ed0882904" }, "downloads": -1, "filename": "asgi_redis-1.4.1.tar.gz", "has_sig": false, "md5_digest": "168fe827afd6f25b2d2293aaa2d0f8b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16187, "upload_time": "2017-06-15T08:37:30", "url": "https://files.pythonhosted.org/packages/48/8e/d4ceab9e9556988fdf40acdb53b9067d29668b1fd06c357bfaa54b283acb/asgi_redis-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "f4f3568ec36da528de00fb8caeecdea5", "sha256": "fa76fa8484d4b0b9073cb963b01d8f92ca8bed03619e1b5ffdf3c4b35dd476ac" }, "downloads": -1, "filename": "asgi_redis-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f4f3568ec36da528de00fb8caeecdea5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24629, "upload_time": "2017-06-20T17:43:25", "url": "https://files.pythonhosted.org/packages/3f/6f/069bf03347266363059983090a59cdce7014225a557573636e4d269cc5e6/asgi_redis-1.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aaeec40048404e57c1f8422c6cb02556", "sha256": "aa8e9342a3e66c4e7f9035b074f6f66b92e5f1cf8022f1446106ed6dd004a274" }, "downloads": -1, "filename": "asgi_redis-1.4.2.tar.gz", "has_sig": false, "md5_digest": "aaeec40048404e57c1f8422c6cb02556", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14156, "upload_time": "2017-06-20T17:43:22", "url": "https://files.pythonhosted.org/packages/57/9d/7e770956981f648058d8d486ece0c157984242f2534a50700686425e3ed7/asgi_redis-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "0a207e2a6a4256a7b3873b7e02ca15c4", "sha256": "ad724d382617b34c2cae08a8c43eb9999f7e695c11e9c534d28b7db0042b898e" }, "downloads": -1, "filename": "asgi_redis-1.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a207e2a6a4256a7b3873b7e02ca15c4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20034, "upload_time": "2017-09-14T21:34:06", "url": "https://files.pythonhosted.org/packages/63/c0/4a2d24cbc0d163ae02bb21eaa1d95311e3948a4fd532e2d6416a02e16471/asgi_redis-1.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19f251b8c656d61109be579ea1f0724a", "sha256": "f1f7a86439d764a6cd6c11d165a500d7287d5447ac8eb4c7b2483456cf3cb383" }, "downloads": -1, "filename": "asgi_redis-1.4.3.tar.gz", "has_sig": false, "md5_digest": "19f251b8c656d61109be579ea1f0724a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17358, "upload_time": "2017-09-14T21:34:04", "url": "https://files.pythonhosted.org/packages/6b/4c/43d48dbf54dc64cf0a2866b892dc0215d5cef8a63f2f4d7c55960d654340/asgi_redis-1.4.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0a207e2a6a4256a7b3873b7e02ca15c4", "sha256": "ad724d382617b34c2cae08a8c43eb9999f7e695c11e9c534d28b7db0042b898e" }, "downloads": -1, "filename": "asgi_redis-1.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a207e2a6a4256a7b3873b7e02ca15c4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20034, "upload_time": "2017-09-14T21:34:06", "url": "https://files.pythonhosted.org/packages/63/c0/4a2d24cbc0d163ae02bb21eaa1d95311e3948a4fd532e2d6416a02e16471/asgi_redis-1.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19f251b8c656d61109be579ea1f0724a", "sha256": "f1f7a86439d764a6cd6c11d165a500d7287d5447ac8eb4c7b2483456cf3cb383" }, "downloads": -1, "filename": "asgi_redis-1.4.3.tar.gz", "has_sig": false, "md5_digest": "19f251b8c656d61109be579ea1f0724a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17358, "upload_time": "2017-09-14T21:34:04", "url": "https://files.pythonhosted.org/packages/6b/4c/43d48dbf54dc64cf0a2866b892dc0215d5cef8a63f2f4d7c55960d654340/asgi_redis-1.4.3.tar.gz" } ] }