{ "info": { "author": "Django Software Foundation", "author_email": "foundation@djangoproject.com", "bugtrack_url": null, "classifiers": [], "description": "channels_redis\n==============\n\n.. image:: https://github.com/django/channels_redis/workflows/Tests/badge.svg\n :target: https://github.com/django/channels_redis/actions?query=workflow%3ATests\n\n.. image:: https://img.shields.io/pypi/v/channels_redis.svg\n :target: https://pypi.python.org/pypi/channels_redis\n\nProvides Django Channels channel layers that use Redis as a backing store.\n\nThere are two available implementations:\n\n* ``RedisChannelLayer`` is the orignal layer, and implements channel and group\n handling itself.\n* ``RedisPubSubChannelLayer`` is newer and leverages Redis Pub/Sub for message\n dispatch. This layer is currently at *Beta* status, meaning it may be subject\n to breaking changes whilst it matures.\n\nBoth layers support a single-server and sharded configurations.\n\nInstallation\n------------\n\n.. code-block::\n\n pip install channels-redis\n\n**Note:** Prior versions of this package were called ``asgi_redis`` and are\nstill available under PyPI as that name if you need them for Channels 1.x projects.\nThis package is for Channels 2 projects only.\n\n\nUsage\n-----\n\nSet up the channel layer in your Django settings file like so:\n\n.. code-block:: python\n\n CHANNEL_LAYERS = {\n \"default\": {\n \"BACKEND\": \"channels_redis.core.RedisChannelLayer\",\n \"CONFIG\": {\n \"hosts\": [(\"localhost\", 6379)],\n },\n },\n }\n\nOr, you can use the alternate implementation which uses Redis Pub/Sub:\n\n.. code-block:: python\n\n CHANNEL_LAYERS = {\n \"default\": {\n \"BACKEND\": \"channels_redis.pubsub.RedisPubSubChannelLayer\",\n \"CONFIG\": {\n \"hosts\": [(\"localhost\", 6379)],\n },\n },\n }\n\nPossible options for ``CONFIG`` are listed below.\n\n``hosts``\n~~~~~~~~~\n\nThe server(s) to connect to, as either URIs, ``(host, port)`` tuples, or dicts conforming to `create_connection `_.\nDefaults to ``['localhost', 6379]``. Pass multiple hosts to enable sharding,\nbut note that changing the host list will lose some sharded data.\n\nSentinel connections require dicts conforming to `create_sentinel `_\nwith an additional `master_name` key specifying the Sentinel\nmaster set. Plain Redis and Sentinel connections can be mixed and matched if\nsharding.\n\nIf your server is listening on a UNIX domain socket, you can also use that to connect: ``[\"unix:///path/to/redis.sock\"]``.\nThis should be slightly faster than a loopback TCP connection.\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``. Channels will be removed\nfrom the group after this amount of time; it's recommended you reduce it\nfor a healthier system that encourages disconnections. This value should\nnot be lower than the relevant timeouts in the interface server (e.g.\nthe ``--websocket_timeout`` to `daphne\n`_).\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_LAYERS = {\n \"default\": {\n \"BACKEND\": \"channels_redis.core.RedisChannelLayer\",\n \"CONFIG\": {\n \"hosts\": [(\"localhost\", 6379)],\n \"channel_capacity\": {\n \"http.request\": 200,\n \"http.response!*\": 10,\n re.compile(r\"^websocket.send\\!.+\"): 20,\n },\n },\n },\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 ``channels_redis``::\n\n pip install channels_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\": \"channels_redis.core.RedisChannelLayer\",\n \"CONFIG\": {\n \"hosts\": [\"redis://:password@127.0.0.1:6379/0\"],\n \"symmetric_encryption_keys\": [SECRET_KEY],\n },\n },\n }\n\n``on_disconnect`` / ``on_reconnect``\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe PubSub layer, which maintains long-running connections to Redis, can drop messages in the event of a network partition.\nTo handle such situations the PubSub layer accepts optional arguments which will notify consumers of Redis disconnect/reconnect events.\nA common use-case is for consumers to ensure that they perform a full state re-sync to ensure that no messages have been missed.\n\n.. code-block:: python\n\n CHANNEL_LAYERS = {\n \"default\": {\n \"BACKEND\": \"channels_redis.pubsub.RedisPubSubChannelLayer\",\n \"CONFIG\": {\n \"hosts\": [...],\n \"on_disconnect\": \"redis.disconnect\",\n },\n },\n }\n\n\nAnd then in your channels consumer, you can implement the handler:\n\n.. code-block:: python\n\n async def redis_disconnect(self, *args):\n # Handle disconnect\n\nDependencies\n------------\n\nRedis >= 5.0 is required for `channels_redis`. Python 3.7 or higher is required.\n\n\nUsed commands\n~~~~~~~~~~~~~\n\nYour Redis server must support the following commands:\n\n* ``RedisChannelLayer`` uses ``BZPOPMIN``, ``DEL``, ``EVAL``, ``EXPIRE``,\n ``KEYS``, ``PIPELINE``, ``ZADD``, ``ZCOUNT``, ``ZPOPMIN``, ``ZRANGE``,\n ``ZREM``, ``ZREMRANGEBYSCORE``\n\n* ``RedisPubSubChannelLayer`` uses ``PUBLISH``, ``SUBSCRIBE``, ``UNSUBSCRIBE``\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\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/django/channels_redis/", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "channels-redis", "package_url": "https://pypi.org/project/channels-redis/", "platform": null, "project_url": "https://pypi.org/project/channels-redis/", "project_urls": { "Homepage": "http://github.com/django/channels_redis/" }, "release_url": "https://pypi.org/project/channels-redis/3.4.0/", "requires_dist": [ "aioredis (~=1.0)", "msgpack (~=1.0)", "asgiref (<4,>=3.2.10)", "channels (<4)", "cryptography (>=1.3.0) ; extra == 'cryptography'", "cryptography (>=1.3.0) ; extra == 'tests'", "pytest ; extra == 'tests'", "pytest-asyncio (==0.14.0) ; extra == 'tests'", "async-generator ; extra == 'tests'", "async-timeout ; extra == 'tests'" ], "requires_python": ">=3.7", "summary": "Redis-backed ASGI channel layer implementation", "version": "3.4.0", "yanked": false, "yanked_reason": null }, "last_serial": 13139669, "releases": { "2.0.0": [ { "comment_text": "", "digests": { "md5": "074cfcd7f06ad96b7a6e80c2542c8d47", "sha256": "99f0638d4f71959dcf5984d02b70b02ad8e6d99dce028ae9c70190ff65180ff5" }, "downloads": -1, "filename": "channels_redis-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "074cfcd7f06ad96b7a6e80c2542c8d47", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11748, "upload_time": "2018-02-02T05:25:29", "upload_time_iso_8601": "2018-02-02T05:25:29.277729Z", "url": "https://files.pythonhosted.org/packages/be/43/b96ddbedb1ffd46bcc1bb6e4aa7fc9ff77d52201c8896ddf181e2f9f1e1b/channels_redis-2.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58b5eee1024ee42bc3e3f25e9e914c56", "sha256": "388b8a17aaad9b74ecfd3a3a8c5295eee39a2b989368fdb003d1453d0723c0c1" }, "downloads": -1, "filename": "channels_redis-2.0.0.tar.gz", "has_sig": false, "md5_digest": "58b5eee1024ee42bc3e3f25e9e914c56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8487, "upload_time": "2018-02-02T05:25:27", "upload_time_iso_8601": "2018-02-02T05:25:27.562596Z", "url": "https://files.pythonhosted.org/packages/2a/0b/380ee7c05ef463cc20728925362bcb8d19a0e1268e6bec1e3a7f9cf69242/channels_redis-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "b2bee81dc46185003c80d04bd6b0985c", "sha256": "88ba9b68ebae45bb3b40a48afc1ec3378d78f31cdc35907c074dc4bead8bb1cd" }, "downloads": -1, "filename": "channels_redis-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2bee81dc46185003c80d04bd6b0985c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11745, "upload_time": "2018-02-03T01:40:30", "upload_time_iso_8601": "2018-02-03T01:40:30.976647Z", "url": "https://files.pythonhosted.org/packages/64/52/deb4d49c39c4ec5158b985f87f4fe2150abaeddb3df672d308652b4e13c2/channels_redis-2.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7371e6f7ae4dad18a7173dd5054574f", "sha256": "24e4cb832f5dc43149195d0445485e675cae311180323884053ebb92373340b8" }, "downloads": -1, "filename": "channels_redis-2.0.1.tar.gz", "has_sig": false, "md5_digest": "e7371e6f7ae4dad18a7173dd5054574f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8507, "upload_time": "2018-02-03T01:40:29", "upload_time_iso_8601": "2018-02-03T01:40:29.803049Z", "url": "https://files.pythonhosted.org/packages/c9/98/608640d9124b9d5e021b12649821d6cb815c8631f615ec29338e7e31e69f/channels_redis-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "1167948e8e030acb9c2158bf14bce8ea", "sha256": "6307f01abb59202a35266798c539d53949e16458d0a982b1197165785b6771c6" }, "downloads": -1, "filename": "channels_redis-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1167948e8e030acb9c2158bf14bce8ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11814, "upload_time": "2018-02-04T19:57:27", "upload_time_iso_8601": "2018-02-04T19:57:27.886162Z", "url": "https://files.pythonhosted.org/packages/5e/53/042dc3efdb9e5e560dbd2ef2bf42788058a46e2a1e25886e8d9b073acb1c/channels_redis-2.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1efdc2720d77a4839499cf287b58d871", "sha256": "72182cd8a8435cb4e85d379f6d397734813bcdc7ca072821616d2083d6fddc57" }, "downloads": -1, "filename": "channels_redis-2.0.2.tar.gz", "has_sig": false, "md5_digest": "1efdc2720d77a4839499cf287b58d871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8542, "upload_time": "2018-02-04T19:57:29", "upload_time_iso_8601": "2018-02-04T19:57:29.090568Z", "url": "https://files.pythonhosted.org/packages/f4/2b/7a9bfefa4ea0dd72b36337c8d8047877041b3b7ad5a1367206ec906c364a/channels_redis-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "5d21d21ca6d9bfb5b277d40c6290bb1a", "sha256": "21f2c42fdbf8fe8644f20e3efdc50559cf5d62f51b1798835728b273e763aa41" }, "downloads": -1, "filename": "channels_redis-2.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d21d21ca6d9bfb5b277d40c6290bb1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12008, "upload_time": "2018-02-15T01:18:04", "upload_time_iso_8601": "2018-02-15T01:18:04.545896Z", "url": "https://files.pythonhosted.org/packages/46/8f/ac1c733a6dd5a446cb85db506aac9e9551ee79ca2f0bd66b91edaf5a7a17/channels_redis-2.0.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c7556da9f30a2adb60d46ef723cc327", "sha256": "00f727eaec79ea5a8205b652b84ccc47cb03fc9544e8e3667149d103f60f4587" }, "downloads": -1, "filename": "channels_redis-2.0.3.tar.gz", "has_sig": false, "md5_digest": "1c7556da9f30a2adb60d46ef723cc327", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8717, "upload_time": "2018-02-15T01:18:06", "upload_time_iso_8601": "2018-02-15T01:18:06.083172Z", "url": "https://files.pythonhosted.org/packages/50/6e/13c6f35fd452544303f9ec5b2244ca61279e15558b76ef8cfcf63349e270/channels_redis-2.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "36cb919805d1059e7897199ea82a3fbd", "sha256": "e014d54cac2ae40f524c007eaabc67bdf608786aaa1095a0469f3349fef22433" }, "downloads": -1, "filename": "channels_redis-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "36cb919805d1059e7897199ea82a3fbd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12004, "upload_time": "2018-02-21T22:29:40", "upload_time_iso_8601": "2018-02-21T22:29:40.439396Z", "url": "https://files.pythonhosted.org/packages/56/6b/f695f419a7c8266d276a226c6b2513b19e8613395077fe6db14c346c4c0e/channels_redis-2.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af4a0968d75f2be251fb05578fdf1841", "sha256": "c5276d8c479c2375c75adace0c90d98a50e47e04641b948e72346d6170d3e26f" }, "downloads": -1, "filename": "channels_redis-2.1.0.tar.gz", "has_sig": false, "md5_digest": "af4a0968d75f2be251fb05578fdf1841", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8727, "upload_time": "2018-02-21T22:29:41", "upload_time_iso_8601": "2018-02-21T22:29:41.143750Z", "url": "https://files.pythonhosted.org/packages/e4/16/b46660244d099fcad07df21176ce6a30fa34949219fc6d686a0dd8b315d7/channels_redis-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "5edd7c37cf885cdefa88e0b8b00f0f5d", "sha256": "c471e69c39c212af09e064ba8bc69808be9437b576982b2fda725f02e5f74c6d" }, "downloads": -1, "filename": "channels_redis-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5edd7c37cf885cdefa88e0b8b00f0f5d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12000, "upload_time": "2018-03-21T23:19:03", "upload_time_iso_8601": "2018-03-21T23:19:03.296733Z", "url": "https://files.pythonhosted.org/packages/9d/74/1cd3c99a63dd15503b1426140815f1f01c04cd298b3c5e8c83dbee75089f/channels_redis-2.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aeb4b272f2c157926616cfb8a0e56644", "sha256": "688233f0114a921239345c388ae4ed3314de345b53832f67b85926b0040a279a" }, "downloads": -1, "filename": "channels_redis-2.1.1.tar.gz", "has_sig": false, "md5_digest": "aeb4b272f2c157926616cfb8a0e56644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8751, "upload_time": "2018-03-21T23:19:04", "upload_time_iso_8601": "2018-03-21T23:19:04.506071Z", "url": "https://files.pythonhosted.org/packages/4c/f1/d74ba52bfd1ea1236c4a55e233d6cd8b3d91b34e44606940f979e5fb1d40/channels_redis-2.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "b52cdc8b4eba91a47966a223ea9a79ac", "sha256": "8ed102314e5e6d89254ade686815643a00ccca7a98fd69378ddcb5e27b0406de" }, "downloads": -1, "filename": "channels_redis-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b52cdc8b4eba91a47966a223ea9a79ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9222, "upload_time": "2018-05-14T15:44:17", "upload_time_iso_8601": "2018-05-14T15:44:17.755646Z", "url": "https://files.pythonhosted.org/packages/6b/2c/543f320d04363fa8d876ee0fcc5744e2c0cf7a127e5c09ca45ad4dc1f03e/channels_redis-2.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bb89c8c00b9b1a26689176c14dd20c4", "sha256": "7325bf19f4ded3a7bc767ea354caed3109be7cce47486e0175628c54f7a01d2c" }, "downloads": -1, "filename": "channels_redis-2.2.0.tar.gz", "has_sig": false, "md5_digest": "9bb89c8c00b9b1a26689176c14dd20c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9366, "upload_time": "2018-05-14T15:44:18", "upload_time_iso_8601": "2018-05-14T15:44:18.868937Z", "url": "https://files.pythonhosted.org/packages/bf/50/0d990fce834077aa5e265d6d90202ed590eca298f90d35764771420767d2/channels_redis-2.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "2c79ab2cddc524937f1cc32bf5f2f0cc", "sha256": "997630e71b8b4d9f9bd0f6ac2562c146b7ffea0e89c8d3347c0eccc1e4f7d155" }, "downloads": -1, "filename": "channels_redis-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c79ab2cddc524937f1cc32bf5f2f0cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9220, "upload_time": "2018-05-18T06:24:39", "upload_time_iso_8601": "2018-05-18T06:24:39.660796Z", "url": "https://files.pythonhosted.org/packages/63/ae/adea3b1913aebb84ec6b6f3c30ba81b8bef79f99b51c7240810284152df4/channels_redis-2.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b321a3b40c471c387b575c1e8bcc117f", "sha256": "5c2bde69a205efd448fe012d09d320dbdeb4a37212c0999fc250ea9730a79905" }, "downloads": -1, "filename": "channels_redis-2.2.1.tar.gz", "has_sig": false, "md5_digest": "b321a3b40c471c387b575c1e8bcc117f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9360, "upload_time": "2018-05-18T06:24:40", "upload_time_iso_8601": "2018-05-18T06:24:40.884495Z", "url": "https://files.pythonhosted.org/packages/83/91/78a8a12a871b29eda6b501748639621ecee0daea65014c00b32c6fefa591/channels_redis-2.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "5d744e425a2f2c19ed62163ca7d0e967", "sha256": "30e99156db0158d74c7dc3a8d1c1d39e0e62c68d2ba1677bc11022579a58df14" }, "downloads": -1, "filename": "channels_redis-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d744e425a2f2c19ed62163ca7d0e967", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11853, "upload_time": "2018-08-17T04:48:46", "upload_time_iso_8601": "2018-08-17T04:48:46.086802Z", "url": "https://files.pythonhosted.org/packages/ba/21/8ac93e9cf9d97c3f2256ccc04d992b6b10de6b3d9c62a5f3c49a89df6510/channels_redis-2.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df9fb5436baadcd0bb9c48022d10e521", "sha256": "1b89421285dacd462bec884d537d796abf5b1019e9494e5258d54c2cf14840b3" }, "downloads": -1, "filename": "channels_redis-2.3.0.tar.gz", "has_sig": false, "md5_digest": "df9fb5436baadcd0bb9c48022d10e521", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11920, "upload_time": "2018-08-17T04:48:47", "upload_time_iso_8601": "2018-08-17T04:48:47.117528Z", "url": "https://files.pythonhosted.org/packages/d3/c9/4414982e46df34ba1dc7b4be44c226793b94fc9e577ec40573daf0bc342f/channels_redis-2.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "0f6660b15a85818d1a36131c6e3caa0c", "sha256": "3ed68cdb8022484c01e13627804d2e8a238460c9284a3f524a7729cdbb43d403" }, "downloads": -1, "filename": "channels_redis-2.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0f6660b15a85818d1a36131c6e3caa0c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13219, "upload_time": "2018-10-17T08:11:04", "upload_time_iso_8601": "2018-10-17T08:11:04.116496Z", "url": "https://files.pythonhosted.org/packages/59/54/d97bed8dc69b4484359a054b5d9b2875ef07a513a43112700f34c55a9034/channels_redis-2.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8bd5f80ad4599f774baf9a15cc437c2", "sha256": "834bc73b256a4489f400644082cebff276f43164c7202a1b39c14f170b72239b" }, "downloads": -1, "filename": "channels_redis-2.3.1.tar.gz", "has_sig": false, "md5_digest": "f8bd5f80ad4599f774baf9a15cc437c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12304, "upload_time": "2018-10-17T08:11:05", "upload_time_iso_8601": "2018-10-17T08:11:05.732836Z", "url": "https://files.pythonhosted.org/packages/55/31/192847de93a3f5bda2302e38f801aa6ad5e22f706b9a002a5c4bfeb29ba3/channels_redis-2.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "25ce2cd8e1c6c75149438fa879055f9b", "sha256": "b709200bb7ac472a0502cf4d59da7466b068b9fbd077447964bea18ef8036205" }, "downloads": -1, "filename": "channels_redis-2.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25ce2cd8e1c6c75149438fa879055f9b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13269, "upload_time": "2018-11-28T01:11:41", "upload_time_iso_8601": "2018-11-28T01:11:41.471166Z", "url": "https://files.pythonhosted.org/packages/97/8b/9823fc03c420eaa1e6331c82b3935bac453c8fa3505b1c112a53002a9622/channels_redis-2.3.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70f7375466ed9be2357f2a63c9c27879", "sha256": "c73c13dee428448fa2e0f04216d87651d35aa2e806e5c7e89632c3685756323f" }, "downloads": -1, "filename": "channels_redis-2.3.2.tar.gz", "has_sig": false, "md5_digest": "70f7375466ed9be2357f2a63c9c27879", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12360, "upload_time": "2018-11-28T01:11:43", "upload_time_iso_8601": "2018-11-28T01:11:43.118437Z", "url": "https://files.pythonhosted.org/packages/97/05/21c5e38d4073b65f60ab494ad1abd88f2d704c67c5ca0d409c24f99cfabb/channels_redis-2.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.3": [ { "comment_text": "", "digests": { "md5": "5b4f499056f67cc2779b19d71d46adfe", "sha256": "9efc458d730a03b40ef1146427126711f848d2e1a9333ff929bd5f018b742d3b" }, "downloads": -1, "filename": "channels_redis-2.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5b4f499056f67cc2779b19d71d46adfe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 13331, "upload_time": "2019-01-10T18:01:00", "upload_time_iso_8601": "2019-01-10T18:01:00.365907Z", "url": "https://files.pythonhosted.org/packages/b4/cc/9f53db27c65b30c894e44e3f4f3d6cf6394d0417763f702a5c62d7a0f4d7/channels_redis-2.3.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00cf8d21384fcec9fed1f1200067920f", "sha256": "3f84ebce1e20e339c099ac0ea336fdc6a599882eee4f2a01b394d766488c9d45" }, "downloads": -1, "filename": "channels_redis-2.3.3.tar.gz", "has_sig": false, "md5_digest": "00cf8d21384fcec9fed1f1200067920f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 15010, "upload_time": "2019-01-10T18:01:02", "upload_time_iso_8601": "2019-01-10T18:01:02.302232Z", "url": "https://files.pythonhosted.org/packages/73/cd/491db210ed9725fb39f91aad780339a2c1ad84678caee2058e5e4dc1d0ff/channels_redis-2.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "d43b1c25581b6262e7ca44d8ff926390", "sha256": "0e25f9a7851690a2433948ec24c899628c1f989d9602bbbcf48640412138b9c9" }, "downloads": -1, "filename": "channels_redis-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d43b1c25581b6262e7ca44d8ff926390", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 13416, "upload_time": "2019-04-14T13:34:56", "upload_time_iso_8601": "2019-04-14T13:34:56.325051Z", "url": "https://files.pythonhosted.org/packages/bc/a4/c72fb980e688cf7775b4889c8d1c75d4be1442f3b4ae8e4364d23514d3f1/channels_redis-2.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d060c96cc53c6b2c3f93df4d7aefecf3", "sha256": "b7ccbcb2fd4e568c08c147891b26db59aa25d88b65af826ce7f70c815cfb91bc" }, "downloads": -1, "filename": "channels_redis-2.4.0.tar.gz", "has_sig": false, "md5_digest": "d060c96cc53c6b2c3f93df4d7aefecf3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 16138, "upload_time": "2019-04-14T13:34:57", "upload_time_iso_8601": "2019-04-14T13:34:57.745150Z", "url": "https://files.pythonhosted.org/packages/79/20/896a5246ef703a74dd0af6e46038eb7838d801e532cf25474d2580f09d3e/channels_redis-2.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "e24fe9587f3cbcdf12e7a1a246e99981", "sha256": "de3ecced30b43df61bc944b84d45ebbaf008fdf1a4154fc8ee7c9c6e78f00a4c" }, "downloads": -1, "filename": "channels_redis-2.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e24fe9587f3cbcdf12e7a1a246e99981", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 13418, "upload_time": "2019-10-23T19:48:42", "upload_time_iso_8601": "2019-10-23T19:48:42.331456Z", "url": "https://files.pythonhosted.org/packages/b4/88/0ba8ae5b2a2c9da6ed099fcb5f8d3abcb840a135729327f354901eac0016/channels_redis-2.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ec9ffd467e181906f257d6c0dbabf45", "sha256": "ddfa0c067085fdce24fb80d9c0b848638cbdbf0e1167f14eb2e99d635ad216e6" }, "downloads": -1, "filename": "channels_redis-2.4.1.tar.gz", "has_sig": false, "md5_digest": "9ec9ffd467e181906f257d6c0dbabf45", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 16495, "upload_time": "2019-10-23T19:48:44", "upload_time_iso_8601": "2019-10-23T19:48:44.042916Z", "url": "https://files.pythonhosted.org/packages/87/a9/8d11c32ae6bf3a2cc893185f7d1e03b80bda680131a08473c07ed1fe591d/channels_redis-2.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "02a3e63e3f37489cfc5fd93248e397dd", "sha256": "62d2b5301cd0fc421e4284afa8e7ed5cadadc9738ec43fa2b3c92b5cc76926dc" }, "downloads": -1, "filename": "channels_redis-2.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "02a3e63e3f37489cfc5fd93248e397dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 13563, "upload_time": "2020-02-19T20:04:58", "upload_time_iso_8601": "2020-02-19T20:04:58.096459Z", "url": "https://files.pythonhosted.org/packages/e1/1b/2d35b7ad8300a7cdbce82523b48cd5a4af842c757aab7b35df0aba846a98/channels_redis-2.4.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2071a533cb5db37386ddff84cf6124a", "sha256": "72ab784887a9c519b334487db26aa24287f3d0561901edb52cd14f32017999dd" }, "downloads": -1, "filename": "channels_redis-2.4.2.tar.gz", "has_sig": false, "md5_digest": "d2071a533cb5db37386ddff84cf6124a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 16650, "upload_time": "2020-02-19T20:04:59", "upload_time_iso_8601": "2020-02-19T20:04:59.740981Z", "url": "https://files.pythonhosted.org/packages/84/cf/543fb24a45ac9c323548d6bc7e85a6fc13f9658a7bde291df1bbd5451557/channels_redis-2.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "3f5b31dd48734d8903d1a1e8187de890", "sha256": "e7f5b67b8f36aa7d390afec7e293582c858398e17368fbeb6606cb7683ff00ef" }, "downloads": -1, "filename": "channels_redis-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f5b31dd48734d8903d1a1e8187de890", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 13821, "upload_time": "2020-07-03T13:57:39", "upload_time_iso_8601": "2020-07-03T13:57:39.444077Z", "url": "https://files.pythonhosted.org/packages/63/c3/dd2d4575c20a5d0078dae36c527c2b4e9eb5f32e3727eab00bc9448c70d6/channels_redis-3.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b190b96df7a9811cd5cd32647e83f63", "sha256": "7aeb55f0d0d0813b439e52a33c947d886ad985c8561d1c02ea85d33b88724d4d" }, "downloads": -1, "filename": "channels_redis-3.0.0.tar.gz", "has_sig": false, "md5_digest": "9b190b96df7a9811cd5cd32647e83f63", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 16875, "upload_time": "2020-07-03T13:57:40", "upload_time_iso_8601": "2020-07-03T13:57:40.594789Z", "url": "https://files.pythonhosted.org/packages/fa/35/fd83cbd5f90cb667867437db761523d6419ec09ea7ee5e2fb03c72929d30/channels_redis-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "48f234c5f3a48a571792eb1e3baa81b4", "sha256": "be7c14526ab924a091a66ad72a8be57a34900440b1126d520ac7742c0e2add03" }, "downloads": -1, "filename": "channels_redis-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48f234c5f3a48a571792eb1e3baa81b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 13843, "upload_time": "2020-07-15T05:16:33", "upload_time_iso_8601": "2020-07-15T05:16:33.264828Z", "url": "https://files.pythonhosted.org/packages/de/5d/b7774dbbb1c35d8316ab3e579f07c32c1c09224e6b833a96d4df8ab3b11d/channels_redis-3.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "649ec99647fe0e3976df7abad7a168b1", "sha256": "b4bcee949032cd838abdffd10da056930fca1a5a7ebc52139f8537aa622ac8d5" }, "downloads": -1, "filename": "channels_redis-3.0.1.tar.gz", "has_sig": false, "md5_digest": "649ec99647fe0e3976df7abad7a168b1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 16890, "upload_time": "2020-07-15T05:16:34", "upload_time_iso_8601": "2020-07-15T05:16:34.583571Z", "url": "https://files.pythonhosted.org/packages/b2/c0/ccb254eeabf37291116a12a1a1a0401f776e1a1309d1876e34d0b5a849c0/channels_redis-3.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "a845a6dae6052359818194187efebb54", "sha256": "41ee0af352d3b6b31a6b613985b51dc5695d2da60688c38e6caa0a1772735a9f" }, "downloads": -1, "filename": "channels_redis-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a845a6dae6052359818194187efebb54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 14065, "upload_time": "2020-09-06T08:24:58", "upload_time_iso_8601": "2020-09-06T08:24:58.438505Z", "url": "https://files.pythonhosted.org/packages/72/85/43e6f8d210ec3db095588f65b77041160d1619dedd417d5578c06adfcc1c/channels_redis-3.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "535595ca39863cf8850ef9e68c7c4161", "sha256": "3ce9832b64a2d7f950dd11e4f0dca784de7cbee99e95a3c345a1460c8878b682" }, "downloads": -1, "filename": "channels_redis-3.1.0.tar.gz", "has_sig": false, "md5_digest": "535595ca39863cf8850ef9e68c7c4161", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 17175, "upload_time": "2020-09-06T08:24:59", "upload_time_iso_8601": "2020-09-06T08:24:59.811237Z", "url": "https://files.pythonhosted.org/packages/82/4e/6f6da5d678f41dd3459992ea23958c1a60b6f33c56c9e5978d3658eebf7a/channels_redis-3.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "e8d0c44bcdbf461a8eed41e083666ecc", "sha256": "18d63f6462a58011740dc8eeb57ea4b31ec220eb551cb71b27de9c6779a549de" }, "downloads": -1, "filename": "channels_redis-3.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e8d0c44bcdbf461a8eed41e083666ecc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 14090, "upload_time": "2020-10-29T18:44:36", "upload_time_iso_8601": "2020-10-29T18:44:36.191003Z", "url": "https://files.pythonhosted.org/packages/26/5f/58960a58053be7b260493f6be90944aa7d492bfe786cb3882db1acc85cfa/channels_redis-3.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c39ec46b4a88340a8510741864a11b0", "sha256": "2fb31a63b05373f6402da2e6a91a22b9e66eb8b56626c6bfc93e156c734c5ae6" }, "downloads": -1, "filename": "channels_redis-3.2.0.tar.gz", "has_sig": false, "md5_digest": "0c39ec46b4a88340a8510741864a11b0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 16808, "upload_time": "2020-10-29T18:44:37", "upload_time_iso_8601": "2020-10-29T18:44:37.681627Z", "url": "https://files.pythonhosted.org/packages/5c/57/50a92ed040e8b773760675c9781e52650b8d506dcfb410a70df9cbf1c168/channels_redis-3.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "316901d80d9888e8c3a680d8346a894d", "sha256": "1abd5820ff1ed4ac627f8a219ad389e4c87e52e47a230929a7a474e95dd2c6c2" }, "downloads": -1, "filename": "channels_redis-3.3.0-py3-none-any.whl", "has_sig": true, "md5_digest": "316901d80d9888e8c3a680d8346a894d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 19465, "upload_time": "2021-07-01T14:58:00", "upload_time_iso_8601": "2021-07-01T14:58:00.479133Z", "url": "https://files.pythonhosted.org/packages/93/c4/68aa584a98188d123afc858525132b6739707aed68ed2eb9bdb99496b8ae/channels_redis-3.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df8f097f83aa7972ca17381ac8ca69ad", "sha256": "0a18ce279c15ba79b7985bb12b2d6dd0ac8a14e4ad6952681f4422a4cc4a5ea9" }, "downloads": -1, "filename": "channels_redis-3.3.0.tar.gz", "has_sig": true, "md5_digest": "df8f097f83aa7972ca17381ac8ca69ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 22277, "upload_time": "2021-07-01T14:58:03", "upload_time_iso_8601": "2021-07-01T14:58:03.016672Z", "url": "https://files.pythonhosted.org/packages/33/bb/84cb7030d7f3d3927b95192227c71afa635aa287d7b92a6358cc8e5fba8a/channels_redis-3.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "5b6607388cc3b11f3a7a598acb20a025", "sha256": "fbb24a7a57a6cc0ebe5aa121cdf841eabf845cf47dd5c1059224ef4d64aeaeac" }, "downloads": -1, "filename": "channels_redis-3.3.1-py3-none-any.whl", "has_sig": true, "md5_digest": "5b6607388cc3b11f3a7a598acb20a025", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 20186, "upload_time": "2021-09-30T14:21:04", "upload_time_iso_8601": "2021-09-30T14:21:04.198094Z", "url": "https://files.pythonhosted.org/packages/ba/51/5e94b88b2aed3f58fff0a19d83ee170a56d9e46544c9d915014e4faa6987/channels_redis-3.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6eb479c239830947829760915aa67be6", "sha256": "899dc6433f5416cf8ad74505baaf2acb5461efac3cad40751a41119e3f68421b" }, "downloads": -1, "filename": "channels_redis-3.3.1.tar.gz", "has_sig": true, "md5_digest": "6eb479c239830947829760915aa67be6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 22772, "upload_time": "2021-09-30T14:21:05", "upload_time_iso_8601": "2021-09-30T14:21:05.771133Z", "url": "https://files.pythonhosted.org/packages/26/0f/0fafc8412e80b28c8cf1b76b65a255e8507fd772c0183ae1f929d96fe12b/channels_redis-3.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "8e47460b29c5214a256df65d08019cfb", "sha256": "6e4565b7c11c6bcde5d48556cb83bd043779697ff03811867d2f895aa6170d56" }, "downloads": -1, "filename": "channels_redis-3.4.0-py3-none-any.whl", "has_sig": true, "md5_digest": "8e47460b29c5214a256df65d08019cfb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 20447, "upload_time": "2022-03-10T15:16:49", "upload_time_iso_8601": "2022-03-10T15:16:49.774995Z", "url": "https://files.pythonhosted.org/packages/b1/4d/04f802e0fd6436ec3dd1fb4f6f86b09557ea01c2aa4acd7788fe9dba6260/channels_redis-3.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbe4375dbb33fbdbb147dbf5396953c1", "sha256": "5dffd4cc16174125bd4043fc8fe7462ca7403cf801d59a9fa7410ed101fa6a57" }, "downloads": -1, "filename": "channels_redis-3.4.0.tar.gz", "has_sig": true, "md5_digest": "bbe4375dbb33fbdbb147dbf5396953c1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 22549, "upload_time": "2022-03-10T15:16:52", "upload_time_iso_8601": "2022-03-10T15:16:52.396481Z", "url": "https://files.pythonhosted.org/packages/ae/15/297d249a96d295566f7c2796230a3b0d6aea861b7c75eb5980de24a8ac7c/channels_redis-3.4.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8e47460b29c5214a256df65d08019cfb", "sha256": "6e4565b7c11c6bcde5d48556cb83bd043779697ff03811867d2f895aa6170d56" }, "downloads": -1, "filename": "channels_redis-3.4.0-py3-none-any.whl", "has_sig": true, "md5_digest": "8e47460b29c5214a256df65d08019cfb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 20447, "upload_time": "2022-03-10T15:16:49", "upload_time_iso_8601": "2022-03-10T15:16:49.774995Z", "url": "https://files.pythonhosted.org/packages/b1/4d/04f802e0fd6436ec3dd1fb4f6f86b09557ea01c2aa4acd7788fe9dba6260/channels_redis-3.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbe4375dbb33fbdbb147dbf5396953c1", "sha256": "5dffd4cc16174125bd4043fc8fe7462ca7403cf801d59a9fa7410ed101fa6a57" }, "downloads": -1, "filename": "channels_redis-3.4.0.tar.gz", "has_sig": true, "md5_digest": "bbe4375dbb33fbdbb147dbf5396953c1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 22549, "upload_time": "2022-03-10T15:16:52", "upload_time_iso_8601": "2022-03-10T15:16:52.396481Z", "url": "https://files.pythonhosted.org/packages/ae/15/297d249a96d295566f7c2796230a3b0d6aea861b7c75eb5980de24a8ac7c/channels_redis-3.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }