{
    "info": {
        "author": "Roman Snegirev",
        "author_email": "snegiryev@gmail.com",
        "bugtrack_url": null,
        "classifiers": [],
        "description": "## aiohttp-socks\n\n[![Build Status](https://api.travis-ci.com/romis2012/aiohttp-socks.svg?branch=master)](https://travis-ci.com/github/romis2012/aiohttp-socks)\n[![Coverage Status](https://coveralls.io/repos/github/romis2012/aiohttp-socks/badge.svg?branch=master&_=x)](https://coveralls.io/github/romis2012/aiohttp-socks?branch=master)\n[![PyPI version](https://badge.fury.io/py/aiohttp-socks.svg)](https://badge.fury.io/py/aiohttp-socks)\n[![Downloads](https://pepy.tech/badge/aiohttp-socks/month)](https://pepy.tech/project/aiohttp-socks)\n\nThe `aiohttp-socks` package provides a proxy connector for [aiohttp](https://github.com/aio-libs/aiohttp). \nSupports SOCKS4(a), SOCKS5, HTTP (tunneling) as well as Proxy chains.\nIt uses [python-socks](https://github.com/romis2012/python-socks) for core proxy functionality.\n\n\n## Requirements\n- Python >= 3.6\n- aiohttp >= 2.3.2\n- python-socks[asyncio] >= 1.0.1\n\n## Installation\n```\npip install aiohttp_socks\n```\n\n## Usage\n\n#### aiohttp usage:\n```python\nimport aiohttp\nfrom aiohttp_socks import ProxyType, ProxyConnector, ChainProxyConnector\n\n\nasync def fetch(url):\n    connector = ProxyConnector.from_url('socks5://user:password@127.0.0.1:1080')\n    \n    ### or use ProxyConnector constructor\n    # connector = ProxyConnector(\n    #     proxy_type=ProxyType.SOCKS5,\n    #     host='127.0.0.1',\n    #     port=1080,\n    #     username='user',\n    #     password='password',\n    #     rdns=True\n    # )\n    \n    ### proxy chaining (since ver 0.3.3)\n    # connector = ChainProxyConnector.from_urls([\n    #     'socks5://user:password@127.0.0.1:1080',\n    #     'socks4://127.0.0.1:1081',\n    #     'http://user:password@127.0.0.1:3128',\n    # ])\n    async with aiohttp.ClientSession(connector=connector) as session:\n        async with session.get(url) as response:\n            return await response.text()\n```\n\n#### aiohttp-socks also provides `open_connection` and `create_connection` functions:\n\n```python\nfrom aiohttp_socks import open_connection\n\nasync def fetch():\n    reader, writer = await open_connection(\n        proxy_url='socks5://user:password@127.0.0.1:1080',\n        host='check-host.net',\n        port=80\n    )\n    request = (b\"GET /ip HTTP/1.1\\r\\n\"\n               b\"Host: check-host.net\\r\\n\"\n               b\"Connection: close\\r\\n\\r\\n\")\n\n    writer.write(request)\n    return await reader.read(-1)\n```\n\n## Why yet another SOCKS connector for aiohttp\n\nUnlike [aiosocksy](https://github.com/romis2012/aiosocksy), aiohttp_socks has only single point of integration with aiohttp. \nThis makes it easier to maintain compatibility with new aiohttp versions.\n\n\n\n\n",
        "description_content_type": "text/markdown",
        "docs_url": null,
        "download_url": "",
        "downloads": {
            "last_day": -1,
            "last_month": -1,
            "last_week": -1
        },
        "home_page": "https://github.com/romis2012/aiohttp-socks",
        "keywords": "asyncio aiohttp socks socks5 socks4 http proxy",
        "license": "Apache 2",
        "maintainer": "",
        "maintainer_email": "",
        "name": "aiohttp-socks",
        "package_url": "https://pypi.org/project/aiohttp-socks/",
        "platform": "",
        "project_url": "https://pypi.org/project/aiohttp-socks/",
        "project_urls": {
            "Homepage": "https://github.com/romis2012/aiohttp-socks"
        },
        "release_url": "https://pypi.org/project/aiohttp-socks/0.7.1/",
        "requires_dist": [
            "aiohttp (>=2.3.2)",
            "attrs (>=19.2.0)",
            "python-socks[asyncio] (<3.0.0,>=2.0.0)"
        ],
        "requires_python": "",
        "summary": "Proxy connector for aiohttp",
        "version": "0.7.1",
        "yanked": false,
        "yanked_reason": null
    },
    "last_serial": 12103147,
    "releases": {
        "0.1.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "03016f5546a97093d2ecb29a74addb3b",
                    "sha256": "0efb3c3d974429e6a01ff9bf82a7cfbfa4fba8568751255359c238a625a4cd90"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.0-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "03016f5546a97093d2ecb29a74addb3b",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 7140,
                "upload_time": "2018-07-04T12:20:05",
                "upload_time_iso_8601": "2018-07-04T12:20:05.092252Z",
                "url": "https://files.pythonhosted.org/packages/ec/49/4a35c7bbf83a43fe3a2bfa757eec08ca115025c8c55ec802285735ed4506/aiohttp_socks-0.1.0-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "5875415539dd630fb9d3f44e695ddf60",
                    "sha256": "83d6c78a12d6c62fa04433f24cb1e5019582371bb94588d70e2786216413dc7b"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.1-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "5875415539dd630fb9d3f44e695ddf60",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 7185,
                "upload_time": "2018-07-05T05:38:06",
                "upload_time_iso_8601": "2018-07-05T05:38:06.886830Z",
                "url": "https://files.pythonhosted.org/packages/68/64/24debc64f276059039cf939957cf1dc764bc63e44874ddb0e994d3e66e8f/aiohttp_socks-0.1.1-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "af3e11eaa4422a8cee26fbcd0743e2ba",
                    "sha256": "c0e4a11c022fd20da9a3736a477f36da2ae5740711c8dd1d141a5e9f051fbfcb"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.2-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "af3e11eaa4422a8cee26fbcd0743e2ba",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 7524,
                "upload_time": "2018-07-05T11:52:38",
                "upload_time_iso_8601": "2018-07-05T11:52:38.778496Z",
                "url": "https://files.pythonhosted.org/packages/91/1d/276a6a074bb24da9f4dedf87a07edf5bb7ae2c00b9ef17d791a1ac396e91/aiohttp_socks-0.1.2-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.3": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "3487596bb23fcde18ad9d71d2c60b197",
                    "sha256": "533eca6340416ea9f5433325485fc821c2efce86adde7c2208910ec45728fd47"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.3-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "3487596bb23fcde18ad9d71d2c60b197",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 6691,
                "upload_time": "2018-07-19T09:45:51",
                "upload_time_iso_8601": "2018-07-19T09:45:51.162078Z",
                "url": "https://files.pythonhosted.org/packages/91/8a/444f569ae2c82efade7a5f57ac88a8723a743741d1c25270fce738ac26d5/aiohttp_socks-0.1.3-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.4": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "3c945014c41c895432b14ab2ce917f99",
                    "sha256": "bf5d880aabbfeecb2327ac5439e6716bcba52cb57c6e16574dc2ee831ce04aed"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.4-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "3c945014c41c895432b14ab2ce917f99",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 6744,
                "upload_time": "2018-07-25T08:28:57",
                "upload_time_iso_8601": "2018-07-25T08:28:57.798410Z",
                "url": "https://files.pythonhosted.org/packages/e6/3f/d3e2741b388c8d351a6885818acd24ba2cc1f2652117d7122e336884d2fb/aiohttp_socks-0.1.4-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.5": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "70f7266e6c00965544e181cefd29e8f1",
                    "sha256": "c69f67818d5f81d4175f7658c4ab2bc5a91832c080ec226fbc630c9e7e529db1"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.5-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "70f7266e6c00965544e181cefd29e8f1",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 7667,
                "upload_time": "2018-08-09T04:57:18",
                "upload_time_iso_8601": "2018-08-09T04:57:18.354082Z",
                "url": "https://files.pythonhosted.org/packages/2b/70/62390380fa3c321aaff7f758b96ac9f9e28573e3f85bea4fd911528089a6/aiohttp_socks-0.1.5-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.6": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "21c40e3d8cd5969460c3c93d83bb5704",
                    "sha256": "943148a3797ba9ffb6df6ddb006ffdd40538885b410589d589bda42a8e8bcd5a"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.6-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "21c40e3d8cd5969460c3c93d83bb5704",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 7739,
                "upload_time": "2018-08-17T04:27:27",
                "upload_time_iso_8601": "2018-08-17T04:27:27.974289Z",
                "url": "https://files.pythonhosted.org/packages/83/64/a53f6fa32dfeb68dbc406b1a492a4825d117a457035fe7a6f070a664d979/aiohttp_socks-0.1.6-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.7": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "5bbecefd38189b75aa425eeeb9a5ce90",
                    "sha256": "2ff16a5131a316ad5bcf43d2b65e603f699d36965bb1d642e3e90fc2933ad660"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.7-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "5bbecefd38189b75aa425eeeb9a5ce90",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 7767,
                "upload_time": "2018-09-29T05:55:49",
                "upload_time_iso_8601": "2018-09-29T05:55:49.061700Z",
                "url": "https://files.pythonhosted.org/packages/80/fb/32d6cbcdbfef0cd77c069152d66bef30ed3e52cb1ad4dd62e9a6d728e71a/aiohttp_socks-0.1.7-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.8": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "9dcf2cc0eb1d870e45f23401b31f3e39",
                    "sha256": "9c90f4755580b910781fc1ce9241e5e287a660f9c67ca02154245d6e858cfeb5"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.8-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "9dcf2cc0eb1d870e45f23401b31f3e39",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 7832,
                "upload_time": "2018-09-29T14:02:48",
                "upload_time_iso_8601": "2018-09-29T14:02:48.188842Z",
                "url": "https://files.pythonhosted.org/packages/6b/39/970bf3307748d8815107daeafd6f923c3cc6844d573892b5674bb5de6469/aiohttp_socks-0.1.8-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.1.9": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "1862ad6f8923ccf519714cfc727181ed",
                    "sha256": "7b17afad0d54d76ec28286455aa5dcefe3ee1cfa4136e3440f21eaa2f3a466ec"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.1.9-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "1862ad6f8923ccf519714cfc727181ed",
                "packagetype": "bdist_wheel",
                "python_version": "3.7",
                "requires_python": null,
                "size": 6940,
                "upload_time": "2018-10-01T10:04:16",
                "upload_time_iso_8601": "2018-10-01T10:04:16.601280Z",
                "url": "https://files.pythonhosted.org/packages/e8/cc/914ab6b624667d917762c39a363f74df2f355a475eff61bb99cb0637caac/aiohttp_socks-0.1.9-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "7e8b0229c906656f14c81c96177fb74f",
                    "sha256": "eba0a6e198d9a69d254bf956d68cec7615c2a4cadd861b8da46464bd13c5641d"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.2-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "7e8b0229c906656f14c81c96177fb74f",
                "packagetype": "bdist_wheel",
                "python_version": "3.6",
                "requires_python": null,
                "size": 7821,
                "upload_time": "2018-10-20T05:06:37",
                "upload_time_iso_8601": "2018-10-20T05:06:37.887702Z",
                "url": "https://files.pythonhosted.org/packages/30/27/5358f5897196269353318ac4fbcb187b0b9cf37c16af408cecfe22dfc67e/aiohttp_socks-0.2-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.2.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "648d5abea8ed299a2ce4d2aeea1c4fd4",
                    "sha256": "8bcfde1bb0d394b0ff0d8c284de7459c38507bff1f7c144ac734a6de49f36a29"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.2.1-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "648d5abea8ed299a2ce4d2aeea1c4fd4",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 11896,
                "upload_time": "2018-12-14T04:43:02",
                "upload_time_iso_8601": "2018-12-14T04:43:02.518522Z",
                "url": "https://files.pythonhosted.org/packages/f3/3c/d0641035c2139bf802e0ca18e7412c95e86f70150aec02237f912b4abe24/aiohttp_socks-0.2.1-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.2.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "ac4c26b8f3beb1e008e4faf46b7198ef",
                    "sha256": "e473ee222b001fe33798957b9ce3352b32c187cf41684f8e2259427925914993"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.2.2-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "ac4c26b8f3beb1e008e4faf46b7198ef",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 11885,
                "upload_time": "2018-12-30T10:10:29",
                "upload_time_iso_8601": "2018-12-30T10:10:29.134432Z",
                "url": "https://files.pythonhosted.org/packages/74/d0/1634f69b0eb016e3088cb61fdbb080daf4e20187a7731043cf8d8e823b79/aiohttp_socks-0.2.2-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2ff1a0f64dbd3b1b958a1ad1e55fa2b5",
                    "sha256": "eebd8939a7c3c1e3e7e1b2552c60039b4c65ef6b8b2351efcbdd98290538e310"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.2.2.tar.gz",
                "has_sig": false,
                "md5_digest": "2ff1a0f64dbd3b1b958a1ad1e55fa2b5",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 10444,
                "upload_time": "2018-12-30T10:10:30",
                "upload_time_iso_8601": "2018-12-30T10:10:30.563524Z",
                "url": "https://files.pythonhosted.org/packages/c2/78/3cf7de8bcb047e1969d6b49d7ea50ef4d8254b3f1512721e425ad94ec1c0/aiohttp_socks-0.2.2.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "4d0aea8d336ec32107c406cdde035e81",
                    "sha256": "05c69704fd5720ccd55ed38b7722416e17fdc1c08ee042f6b9c4534595c97f06"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.1-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "4d0aea8d336ec32107c406cdde035e81",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 16209,
                "upload_time": "2019-12-19T14:01:26",
                "upload_time_iso_8601": "2019-12-19T14:01:26.018784Z",
                "url": "https://files.pythonhosted.org/packages/d6/f0/e7e5dfb53f7b1d4d71b4790339308713abf84311656832bcf6e8ba58c8fe/aiohttp_socks-0.3.1-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "20d2f849f80a3625739f00ab96e03502",
                    "sha256": "517c2dd4be45de299737bddfe935309602bac1faa846fa1bec1512a384e66afc"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.1.tar.gz",
                "has_sig": false,
                "md5_digest": "20d2f849f80a3625739f00ab96e03502",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13012,
                "upload_time": "2019-12-19T14:01:27",
                "upload_time_iso_8601": "2019-12-19T14:01:27.593631Z",
                "url": "https://files.pythonhosted.org/packages/ac/87/7c53c637fb303013c83148e96bf765d9a25721018fe0549dc016ce829445/aiohttp_socks-0.3.1.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "853a34964cc1695c5b305d3fdb01b9b4",
                    "sha256": "c20b2d5a368674c6e5fe4350cff3b129d22189542014757138feb659df37a3d2"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.2-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "853a34964cc1695c5b305d3fdb01b9b4",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 16211,
                "upload_time": "2019-12-20T07:46:39",
                "upload_time_iso_8601": "2019-12-20T07:46:39.310874Z",
                "url": "https://files.pythonhosted.org/packages/47/83/c25df0b2c52bcd5dc37651c3530f20c840cda7ccb282be00d0131c81a522/aiohttp_socks-0.3.2-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "b8c27da13470cbe9770f8f0857fa6f41",
                    "sha256": "0d9afe7b542fb12b9a4411badb94c0275fea2816d58d1b13a296db867ef6e66a"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.2.tar.gz",
                "has_sig": false,
                "md5_digest": "b8c27da13470cbe9770f8f0857fa6f41",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13018,
                "upload_time": "2019-12-20T07:46:41",
                "upload_time_iso_8601": "2019-12-20T07:46:41.350379Z",
                "url": "https://files.pythonhosted.org/packages/37/23/eca28f8b22169612cd65326cbbeff7e6d1923e199373c97d97a1a4e1f2de/aiohttp_socks-0.3.2.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.3": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "b3902a63eb7eb2036651cd3d7c9bccbe",
                    "sha256": "6e4b9ac85728cb5f74461599a46fd3a8ed0208fa0bee5231c569da28b7de6f06"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.3-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "b3902a63eb7eb2036651cd3d7c9bccbe",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17338,
                "upload_time": "2019-12-23T08:31:42",
                "upload_time_iso_8601": "2019-12-23T08:31:42.654572Z",
                "url": "https://files.pythonhosted.org/packages/29/1b/95d03627886ce4db868374bd6efd6f5c6f973de3ef37c5895c2b4e7d6044/aiohttp_socks-0.3.3-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "944a5d65cfe5724902d08d8b4dc31865",
                    "sha256": "21974ce5d782c426ddbf7bdfc5e602a38783b1ee839a4a0ed0990240e2e123b5"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.3.tar.gz",
                "has_sig": false,
                "md5_digest": "944a5d65cfe5724902d08d8b4dc31865",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13709,
                "upload_time": "2019-12-23T08:31:44",
                "upload_time_iso_8601": "2019-12-23T08:31:44.389307Z",
                "url": "https://files.pythonhosted.org/packages/c4/62/77af8dc0b557c2ac85ba49a77530b9f73c7dbb9beb2c568a0e91fa190e12/aiohttp_socks-0.3.3.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.4": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "02c0f8432202209fb7312077d904e429",
                    "sha256": "654203308e24aa4f012f96d4af7675404565f4cc39a113d110e3d345ede0838f"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.4-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "02c0f8432202209fb7312077d904e429",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17486,
                "upload_time": "2020-01-11T12:30:40",
                "upload_time_iso_8601": "2020-01-11T12:30:40.110738Z",
                "url": "https://files.pythonhosted.org/packages/be/6d/329e5ec21409ff9448efc50a3674b5331f47ffe44de9f792728145d54bd0/aiohttp_socks-0.3.4-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "2b36194a532910923b461873b56fa602",
                    "sha256": "cdea1d99c14fd3884968a34a6ecb2784f4c48e657aec99ec1b986a10812287bd"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.4.tar.gz",
                "has_sig": false,
                "md5_digest": "2b36194a532910923b461873b56fa602",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13805,
                "upload_time": "2020-01-11T12:30:42",
                "upload_time_iso_8601": "2020-01-11T12:30:42.561424Z",
                "url": "https://files.pythonhosted.org/packages/9d/6a/2feb3efeee784da8dede98181a0a03f9f51014d4d1f72f7dcc9a75fd9d89/aiohttp_socks-0.3.4.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.5": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "3aae30166c2922c3ead47ca0e4e88694",
                    "sha256": "61b0bba9802533a3bc2873d97182d8b0d307aadc70b10c16a40fe9819bf02605"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.5-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "3aae30166c2922c3ead47ca0e4e88694",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17508,
                "upload_time": "2020-03-23T10:34:21",
                "upload_time_iso_8601": "2020-03-23T10:34:21.423620Z",
                "url": "https://files.pythonhosted.org/packages/b3/61/9c966d49b522cdc61e68a449e23ec9ef3b0971eea0408f5b0d9ea64cace7/aiohttp_socks-0.3.5-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "a9674c5c77a852917ebf8865f87af20b",
                    "sha256": "398aa22d631e8e0a9e33294907c6045b434c3a429828d15b059eb463e39615e9"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.5.tar.gz",
                "has_sig": false,
                "md5_digest": "a9674c5c77a852917ebf8865f87af20b",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13787,
                "upload_time": "2020-03-23T10:34:22",
                "upload_time_iso_8601": "2020-03-23T10:34:22.709411Z",
                "url": "https://files.pythonhosted.org/packages/da/71/127b1e78a1d784197ba620f1a9458972e68e69928ee12db4f999162ad8b1/aiohttp_socks-0.3.5.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.6": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "fd31a44d96a43ea1c52158d10097d8cf",
                    "sha256": "5efc1ef664700602300126e160e858b86200069a28a5ded5269f259146932fe2"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.6-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "fd31a44d96a43ea1c52158d10097d8cf",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17582,
                "upload_time": "2020-03-23T13:28:47",
                "upload_time_iso_8601": "2020-03-23T13:28:47.983857Z",
                "url": "https://files.pythonhosted.org/packages/9d/a1/c9aed4d8f182c067a0314075a7e9e85ca917f0ecc831be92ddbf0719aef0/aiohttp_socks-0.3.6-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "5061f96d60e01cbf13f000ece63d02ea",
                    "sha256": "f20c5957c400fc8c68b0c30954896fe4e66e78358cf8c54444d3f42271ba474b"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.6.tar.gz",
                "has_sig": false,
                "md5_digest": "5061f96d60e01cbf13f000ece63d02ea",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13815,
                "upload_time": "2020-03-23T13:28:49",
                "upload_time_iso_8601": "2020-03-23T13:28:49.926081Z",
                "url": "https://files.pythonhosted.org/packages/4d/54/8de3ca275ed683ac89c86ac1549f0f82ddbd2b7f4096c89d789b5aa701e7/aiohttp_socks-0.3.6.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.7": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "e35073849e07b7bf74a9cb15d90aea6a",
                    "sha256": "47912c72a645716e822159376905c4f0c71fa4858f37698bdd7c4ee40e6f68d4"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.7-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "e35073849e07b7bf74a9cb15d90aea6a",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17599,
                "upload_time": "2020-04-02T16:44:31",
                "upload_time_iso_8601": "2020-04-02T16:44:31.788996Z",
                "url": "https://files.pythonhosted.org/packages/76/bb/8630253bbb1faa96aea2bf35c6ac733ce6935ea63efe4140b27731fc6eba/aiohttp_socks-0.3.7-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "356d27a804774709ba4504270412930f",
                    "sha256": "43803a8eafed9c1eaccf2c6f09a485daf91663d653dd2bdf6732dcece0a4f803"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.7.tar.gz",
                "has_sig": false,
                "md5_digest": "356d27a804774709ba4504270412930f",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13838,
                "upload_time": "2020-04-02T16:44:33",
                "upload_time_iso_8601": "2020-04-02T16:44:33.420983Z",
                "url": "https://files.pythonhosted.org/packages/51/da/f9bd57339175ec9253dbeba47d6b012a46f7165a6ee04b3df60799180809/aiohttp_socks-0.3.7.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.8": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "084b3bfe1b324ed880493c1611e4f09d",
                    "sha256": "e13dbb8913ccf3e236a33dd6247d0dcd7f7a908373a0a36053f98a8f18525364"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.8-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "084b3bfe1b324ed880493c1611e4f09d",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17648,
                "upload_time": "2020-04-21T08:18:47",
                "upload_time_iso_8601": "2020-04-21T08:18:47.886144Z",
                "url": "https://files.pythonhosted.org/packages/9a/1c/f3ce140410d9d37eeac79181f3b310eb2d4ac685f6c0ff9df90e9ef1ac78/aiohttp_socks-0.3.8-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "9e0e63df033e29a478f48d8bf0caec11",
                    "sha256": "143dff61f5c9e75a5f8482d1c01f98153869139c39f5c600935b2b4b52089bf7"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.8.tar.gz",
                "has_sig": false,
                "md5_digest": "9e0e63df033e29a478f48d8bf0caec11",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13890,
                "upload_time": "2020-04-21T08:18:49",
                "upload_time_iso_8601": "2020-04-21T08:18:49.618097Z",
                "url": "https://files.pythonhosted.org/packages/16/a7/d18a65d9fc739895c00a7d30039c9bd33ac3b5b955197cecf6feaedcfac9/aiohttp_socks-0.3.8.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.3.9": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "ade548def802c25f3403a23cefacb6d1",
                    "sha256": "ccd483d7677d7ba80b7ccb738a9be27a3ad6dce4b2756509bc71c9d679d96105"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.9-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "ade548def802c25f3403a23cefacb6d1",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17650,
                "upload_time": "2020-04-25T14:25:19",
                "upload_time_iso_8601": "2020-04-25T14:25:19.371386Z",
                "url": "https://files.pythonhosted.org/packages/06/28/67fcf0de9046f98052a30e0d8dc2529d8662b18f78b92eea42d7048a5e80/aiohttp_socks-0.3.9-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0e7e1f1731c7d69641b5600b3029dfad",
                    "sha256": "5e5638d0e472baa441eab7990cf19e034960cc803f259748cc359464ccb3c2d6"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.3.9.tar.gz",
                "has_sig": false,
                "md5_digest": "0e7e1f1731c7d69641b5600b3029dfad",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13895,
                "upload_time": "2020-04-25T14:25:21",
                "upload_time_iso_8601": "2020-04-25T14:25:21.112861Z",
                "url": "https://files.pythonhosted.org/packages/94/a5/02e3609cf780fc8df42a438fec5e637cabcabcd2066170e6b3c331c9a2d6/aiohttp_socks-0.3.9.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.4.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "09319cc7f829abe8f63f0abc308c47ee",
                    "sha256": "8bfaab032fac49103e933281ef38955c176dede0200e8834e2be28b2e999e47b"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.4.0-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "09319cc7f829abe8f63f0abc308c47ee",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17673,
                "upload_time": "2020-07-07T08:05:53",
                "upload_time_iso_8601": "2020-07-07T08:05:53.627824Z",
                "url": "https://files.pythonhosted.org/packages/49/93/ab7d219c2414d6e2cb1533267a28953bd6306bd207e55294ee62b25dfc5f/aiohttp_socks-0.4.0-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "c5b364c5501d133b6f070edd7b975446",
                    "sha256": "cce1caa5dbebda17b72cbb0b15ce13d07034e6f66276c0709fece1c6d994f3a2"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.4.0.tar.gz",
                "has_sig": false,
                "md5_digest": "c5b364c5501d133b6f070edd7b975446",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 13923,
                "upload_time": "2020-07-07T08:05:54",
                "upload_time_iso_8601": "2020-07-07T08:05:54.931053Z",
                "url": "https://files.pythonhosted.org/packages/d4/26/34cd2903e96d70bc0ee128bd364158a928d4015b9cde775eafb887f9e781/aiohttp_socks-0.4.0.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.4.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "576aee10e7d445c858440d8f315dd8c8",
                    "sha256": "df89e907789a90bd02cb39bff45276a3db31e3dd92a3d6f033364e28ee7cb2cc"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.4.1-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "576aee10e7d445c858440d8f315dd8c8",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17865,
                "upload_time": "2020-07-10T12:09:44",
                "upload_time_iso_8601": "2020-07-10T12:09:44.604511Z",
                "url": "https://files.pythonhosted.org/packages/72/55/c00bf359a54c1438ac0fe36f9bba9538c912138f033897d4e95ddd8cc772/aiohttp_socks-0.4.1-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "50fc97398e4c37c8c08a6180d7ba2390",
                    "sha256": "6791b952f344f28af77f28cb1a4c104824c43a9c7820c51cfb74e52e122d84eb"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.4.1.tar.gz",
                "has_sig": false,
                "md5_digest": "50fc97398e4c37c8c08a6180d7ba2390",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 14077,
                "upload_time": "2020-07-10T12:09:46",
                "upload_time_iso_8601": "2020-07-10T12:09:46.776920Z",
                "url": "https://files.pythonhosted.org/packages/5c/3c/213d2982a1b4ee45c50a4873520103a5275f6a35874ebf7884f164bfa833/aiohttp_socks-0.4.1.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.4.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "f3f1574f530254ac6d3d45a8511937cb",
                    "sha256": "b2c9c32a0f38a20af85f631e09929f0651b4abb9f9ee47936376ceed585f47a8"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.4.2-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "f3f1574f530254ac6d3d45a8511937cb",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 17877,
                "upload_time": "2020-07-11T04:51:22",
                "upload_time_iso_8601": "2020-07-11T04:51:22.722216Z",
                "url": "https://files.pythonhosted.org/packages/33/f2/9ece0fd29a7d9244b009e6a0e82563af6ce39e794e45c976b86b1ea09fd8/aiohttp_socks-0.4.2-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "5ea2013ba6b2ebb13c99fdc392e998c3",
                    "sha256": "133274c66e731111111766e27c8d522c2d6b017652ee8aec26ff67a1e9bea47b"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.4.2.tar.gz",
                "has_sig": false,
                "md5_digest": "5ea2013ba6b2ebb13c99fdc392e998c3",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 14095,
                "upload_time": "2020-07-11T04:51:24",
                "upload_time_iso_8601": "2020-07-11T04:51:24.359767Z",
                "url": "https://files.pythonhosted.org/packages/83/6a/da499b8b93d4fc0d89ba9099687cbca1aabf3e7447f87a1256b0d3b6bb56/aiohttp_socks-0.4.2.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.5.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "4003af202c755278df84e15d6ca37707",
                    "sha256": "ede74133899cd4db8a193c35537d1a997ac7e64a7ad5339bf2af5cd01ffdbf34"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.0-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "4003af202c755278df84e15d6ca37707",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 31332,
                "upload_time": "2020-07-16T04:25:06",
                "upload_time_iso_8601": "2020-07-16T04:25:06.616809Z",
                "url": "https://files.pythonhosted.org/packages/da/db/51a519ed7d12ef31dcd41e8f0b3c28aea1a7ce85d38e90f2dbc35cb9e41a/aiohttp_socks-0.5.0-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "8e451e7a6b5146b0ede955cbc08f4ef9",
                    "sha256": "b3ee8f61cfce20709e54605109332bf44e44e1fdd245731636f833299124758c"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.0.tar.gz",
                "has_sig": false,
                "md5_digest": "8e451e7a6b5146b0ede955cbc08f4ef9",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 16839,
                "upload_time": "2020-07-16T04:25:08",
                "upload_time_iso_8601": "2020-07-16T04:25:08.137544Z",
                "url": "https://files.pythonhosted.org/packages/3b/0f/e04e0aa106c8b25b12f85196ee2a922ee96a4b4d9f0328bbaae9b8693fc8/aiohttp_socks-0.5.0.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.5.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "c1a007c8b91e0b71fd4ec47480b6500e",
                    "sha256": "8803e04f95984f2700ebf9cfa35703239855bed847f05925a5ba797d2b4bcc4d"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.1-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "c1a007c8b91e0b71fd4ec47480b6500e",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 31460,
                "upload_time": "2020-07-16T06:33:22",
                "upload_time_iso_8601": "2020-07-16T06:33:22.991322Z",
                "url": "https://files.pythonhosted.org/packages/95/0f/c41d240ec2196ada703a44a59db7f0d06f8c9f0096882fd1f61c3449a87e/aiohttp_socks-0.5.1-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "41027b93450df543b74101f69efb1965",
                    "sha256": "144bb4e6cd2b4851d397444c48ddc394e1add57ee31fa84d34389770c93c1416"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.1.tar.gz",
                "has_sig": false,
                "md5_digest": "41027b93450df543b74101f69efb1965",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 16837,
                "upload_time": "2020-07-16T06:33:24",
                "upload_time_iso_8601": "2020-07-16T06:33:24.526439Z",
                "url": "https://files.pythonhosted.org/packages/05/8c/d725c1a4892e6f775f93f2b2aa9c9beef04e693e493d2c5d3b6673c9eb87/aiohttp_socks-0.5.1.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.5.2": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "f7313573a73d348fba24702d231094d0",
                    "sha256": "9a9a3c308c2d9c806bce4b7568f341b42287a0047ef475756e663b6c916a7462"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.2-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "f7313573a73d348fba24702d231094d0",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 32054,
                "upload_time": "2020-07-17T06:32:02",
                "upload_time_iso_8601": "2020-07-17T06:32:02.775103Z",
                "url": "https://files.pythonhosted.org/packages/db/ce/3067e5fe76b56658bfd372794055bf425d374dfa30725444cb740260681c/aiohttp_socks-0.5.2-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "b6f6eb2391e137f7b0f90d1fb4a002e9",
                    "sha256": "433c4492a4d5826a417b1d06e7a73c0087073157c1c6d83239f58ff254a0828f"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.2.tar.gz",
                "has_sig": false,
                "md5_digest": "b6f6eb2391e137f7b0f90d1fb4a002e9",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 17117,
                "upload_time": "2020-07-17T06:32:04",
                "upload_time_iso_8601": "2020-07-17T06:32:04.414121Z",
                "url": "https://files.pythonhosted.org/packages/73/df/e435c800fdaf2cc7323bca3c5fa306b6e21e69f0a6cfbbad1c7c0028f196/aiohttp_socks-0.5.2.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.5.3": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "e19c6f881980e27b970855553171600e",
                    "sha256": "b89761d0153dc5ceb8b6fe99e36d13c5a2523663f64f9ae969b8f1b9fc85b251"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.3-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "e19c6f881980e27b970855553171600e",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 32064,
                "upload_time": "2020-07-25T07:32:15",
                "upload_time_iso_8601": "2020-07-25T07:32:15.898770Z",
                "url": "https://files.pythonhosted.org/packages/63/30/ca1cd5bef8eac55bcf350b5cbbc80c32443caebd8e1eb9c15d2ac39554da/aiohttp_socks-0.5.3-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "020022cc92c7d7c3c3183ed95ca58db6",
                    "sha256": "f2f3f6979d7427207044d7127be1a5de412e9186d5f9ac05fdb688a239351652"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.3.tar.gz",
                "has_sig": false,
                "md5_digest": "020022cc92c7d7c3c3183ed95ca58db6",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 16963,
                "upload_time": "2020-07-25T07:32:17",
                "upload_time_iso_8601": "2020-07-25T07:32:17.678180Z",
                "url": "https://files.pythonhosted.org/packages/21/32/afa61fac464cf56ae668c3a45ea797e4e8d97bd4ec1088ef41317efac302/aiohttp_socks-0.5.3.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.5.4": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "4c6d089c26c86408af6c0fca569c0c0c",
                    "sha256": "cc29313b7ce3ed9dace6ee9cd7e66cf114c5742b1879ca35aa7dc81b02342ca0"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.4-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "4c6d089c26c86408af6c0fca569c0c0c",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 9152,
                "upload_time": "2020-09-20T12:27:38",
                "upload_time_iso_8601": "2020-09-20T12:27:38.162449Z",
                "url": "https://files.pythonhosted.org/packages/e5/a1/3034d587cb11b1aad060524128a89bd99f29ef0642faf848212a52ffd28b/aiohttp_socks-0.5.4-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "ed9abbb723c9909d26282eaf170cd12c",
                    "sha256": "e27ac32e37670cf857a2deada97a6053643eb81e485d69fb531ff32098c90fbc"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.4.tar.gz",
                "has_sig": false,
                "md5_digest": "ed9abbb723c9909d26282eaf170cd12c",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 8187,
                "upload_time": "2020-09-20T12:27:39",
                "upload_time_iso_8601": "2020-09-20T12:27:39.698376Z",
                "url": "https://files.pythonhosted.org/packages/e2/90/699404af68694d6538b4897ea639166ef9bdd306025d8b1e0aa46d168cf7/aiohttp_socks-0.5.4.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.5.5": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "8c4820a31e151934f745e73bf339534c",
                    "sha256": "faaa25ed4dc34440ca888d23e089420f3b1918dc4ecf062c3fd9474827ad6a39"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.5-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "8c4820a31e151934f745e73bf339534c",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 9148,
                "upload_time": "2020-09-22T07:58:48",
                "upload_time_iso_8601": "2020-09-22T07:58:48.872685Z",
                "url": "https://files.pythonhosted.org/packages/14/11/67750d2d6ba48eae602392b55513441058a2a004e5271276df03d3ed6393/aiohttp_socks-0.5.5-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "464d3f85b8d8c4c5c4e3160f9c829f28",
                    "sha256": "2eb2059756bde34c55bb429541cbf2eba3fd53e36ac80875b461221e2858b04a"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.5.5.tar.gz",
                "has_sig": false,
                "md5_digest": "464d3f85b8d8c4c5c4e3160f9c829f28",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 8185,
                "upload_time": "2020-09-22T07:58:50",
                "upload_time_iso_8601": "2020-09-22T07:58:50.565082Z",
                "url": "https://files.pythonhosted.org/packages/e8/14/27448875ae2475452cc6485ea51f36b45394041f1e1b588e977d8bb11fad/aiohttp_socks-0.5.5.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.6.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "2926f08a93346b13f392a803fc5784c9",
                    "sha256": "db7aa48c0758ee45d7dbc1fde499912ec6fb77eab77a6e2808825d1f41d4e300"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.6.0-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "2926f08a93346b13f392a803fc5784c9",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 9245,
                "upload_time": "2021-03-01T10:51:03",
                "upload_time_iso_8601": "2021-03-01T10:51:03.207652Z",
                "url": "https://files.pythonhosted.org/packages/9a/6c/d302e5a8097fee1e83b9f8e9da10d7752fbf27c74db18b3cc9528b3479be/aiohttp_socks-0.6.0-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "26ea95342ea555aa01d15d33eacaf3b8",
                    "sha256": "b95dcfba3740c8499f4ff633846d72108459d25650ebc1ae8b299cb817088013"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.6.0.tar.gz",
                "has_sig": false,
                "md5_digest": "26ea95342ea555aa01d15d33eacaf3b8",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 8300,
                "upload_time": "2021-03-01T10:51:04",
                "upload_time_iso_8601": "2021-03-01T10:51:04.748494Z",
                "url": "https://files.pythonhosted.org/packages/bc/ad/dbfeb2fe092a9bebabb3ff827c5c7e1301da2858169646814ae55e1d5017/aiohttp_socks-0.6.0.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.6.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "d2b16616693845db405413fd0cdcef50",
                    "sha256": "bbb983f712bdfe7f797d467a740c90b17e786e31e1e91b1a1824d2f6b5123874"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.6.1-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "d2b16616693845db405413fd0cdcef50",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 9272,
                "upload_time": "2021-11-21T12:25:31",
                "upload_time_iso_8601": "2021-11-21T12:25:31.448099Z",
                "url": "https://files.pythonhosted.org/packages/9f/90/d06655f888243bfbb435a07cd98d0c56822027a68b010f264a4c71755fcb/aiohttp_socks-0.6.1-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "0fbbde2649edf8bc319df116cda82ee6",
                    "sha256": "92f75719b1b0cffdf4fe6bcaf16252b2e3ff4c493be6c6c1353eca9cb4acbdba"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.6.1.tar.gz",
                "has_sig": false,
                "md5_digest": "0fbbde2649edf8bc319df116cda82ee6",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 8108,
                "upload_time": "2021-11-21T12:25:33",
                "upload_time_iso_8601": "2021-11-21T12:25:33.598129Z",
                "url": "https://files.pythonhosted.org/packages/7b/b2/3900b48d1105a7c6377abdc74edcfc3fdfc1c398a3b8077d189956e96518/aiohttp_socks-0.6.1.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.7.0": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "0b61963f1b3e36aab38e360b86841c2c",
                    "sha256": "8baaf7e34958610f09e2c47c9986923e52f148573103fadd59b6083f2b4c810c"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.7.0-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "0b61963f1b3e36aab38e360b86841c2c",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 9263,
                "upload_time": "2021-11-23T13:27:13",
                "upload_time_iso_8601": "2021-11-23T13:27:13.513138Z",
                "url": "https://files.pythonhosted.org/packages/aa/4b/b5baa6005be79df4701de9f89b77519620cd014bea9750eb198f861418e5/aiohttp_socks-0.7.0-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "c4b5217f6c507ca09374428f432a0373",
                    "sha256": "d047b90b9db18bbc639223de596bd16f5da7aa4dfaea7e4edf34c0ffc145e89d"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.7.0.tar.gz",
                "has_sig": false,
                "md5_digest": "c4b5217f6c507ca09374428f432a0373",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 8097,
                "upload_time": "2021-11-23T13:27:15",
                "upload_time_iso_8601": "2021-11-23T13:27:15.805633Z",
                "url": "https://files.pythonhosted.org/packages/d3/37/a50694b73570f811b15f8c621cd1d16d4c8b6e9e562dbe082956927f5716/aiohttp_socks-0.7.0.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ],
        "0.7.1": [
            {
                "comment_text": "",
                "digests": {
                    "md5": "9b2f37f99b6b07492b5a46d679eb8a0d",
                    "sha256": "94bcff5ef73611c6c6231c2ffc1be4af1599abec90dbd2fdbbd63233ec2fb0ff"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.7.1-py3-none-any.whl",
                "has_sig": false,
                "md5_digest": "9b2f37f99b6b07492b5a46d679eb8a0d",
                "packagetype": "bdist_wheel",
                "python_version": "py3",
                "requires_python": null,
                "size": 9271,
                "upload_time": "2021-11-23T15:31:00",
                "upload_time_iso_8601": "2021-11-23T15:31:00.301627Z",
                "url": "https://files.pythonhosted.org/packages/f3/77/3b0fcab3d5f88822678676e155feb4a28c7bbd97366e1372135af381bf50/aiohttp_socks-0.7.1-py3-none-any.whl",
                "yanked": false,
                "yanked_reason": null
            },
            {
                "comment_text": "",
                "digests": {
                    "md5": "47b9bd6814d23ec9b47d2f1fd385ba88",
                    "sha256": "2215cac4891ef3fa14b7d600ed343ed0f0a670c23b10e4142aa862b3db20341a"
                },
                "downloads": -1,
                "filename": "aiohttp_socks-0.7.1.tar.gz",
                "has_sig": false,
                "md5_digest": "47b9bd6814d23ec9b47d2f1fd385ba88",
                "packagetype": "sdist",
                "python_version": "source",
                "requires_python": null,
                "size": 8109,
                "upload_time": "2021-11-23T15:31:01",
                "upload_time_iso_8601": "2021-11-23T15:31:01.888554Z",
                "url": "https://files.pythonhosted.org/packages/83/f0/5b9cbceb80591731fcbf26fd03a44063d405f1b584e5b66462b7c5d27fed/aiohttp_socks-0.7.1.tar.gz",
                "yanked": false,
                "yanked_reason": null
            }
        ]
    },
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "9b2f37f99b6b07492b5a46d679eb8a0d",
                "sha256": "94bcff5ef73611c6c6231c2ffc1be4af1599abec90dbd2fdbbd63233ec2fb0ff"
            },
            "downloads": -1,
            "filename": "aiohttp_socks-0.7.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9b2f37f99b6b07492b5a46d679eb8a0d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 9271,
            "upload_time": "2021-11-23T15:31:00",
            "upload_time_iso_8601": "2021-11-23T15:31:00.301627Z",
            "url": "https://files.pythonhosted.org/packages/f3/77/3b0fcab3d5f88822678676e155feb4a28c7bbd97366e1372135af381bf50/aiohttp_socks-0.7.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "47b9bd6814d23ec9b47d2f1fd385ba88",
                "sha256": "2215cac4891ef3fa14b7d600ed343ed0f0a670c23b10e4142aa862b3db20341a"
            },
            "downloads": -1,
            "filename": "aiohttp_socks-0.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "47b9bd6814d23ec9b47d2f1fd385ba88",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 8109,
            "upload_time": "2021-11-23T15:31:01",
            "upload_time_iso_8601": "2021-11-23T15:31:01.888554Z",
            "url": "https://files.pythonhosted.org/packages/83/f0/5b9cbceb80591731fcbf26fd03a44063d405f1b584e5b66462b7c5d27fed/aiohttp_socks-0.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "vulnerabilities": []
}