{ "info": { "author": "LovecraftianHorror", "author_email": "LovecraftianHorror@pm.me", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# Pubproxpy\n\nAn easy to use Python wrapper for [pubproxy](http://pubproxy.com)'s public proxy API.\n\n## Installation\n\n**NOTE:** The minimum python version for this library is 3.6, check with python -V or python3 -V if you're unsure about your current version.\n\nInstall the [pubproxpy](https://pypi.org/project/pubproxpy/) package using your standard Python package manager e.g.\n\n```bash\n$ pip install pubproxpy\n```\n\nAs always you are recommended to install into a virtual environment.\n\n## Keyless API Limitations\n\n### API Daily Limits\n\nAt the time of writing this without an API key the pubproxy API limits users to 5 proxies per request and 50 requests per day. The maximum proxies per request is always used to minimize rate limiting along with getting the most proxies possible within the request limit meaning you should get 250 proxies per day without needing an API key.\n\n### API Rate Limiting\n\nWithout an API key pubproxy limits users to one request per second so a `ProxyFetcher` will try to ensure that at most only one request per second is done without an API key. This is synchronized between `ProxyFetcher`s, but this is not thread safe so make sure all `ProxyFetcher`s are on one thread in one program if you have no API key. The rate limiting is quite severe, so upon being hit the API seems to deny requests for several minutes/hours.\n\n## Quickstart Example\n\n```python\nfrom pubproxpy import ProxyFetcher\n\n# ProxyFetcher for proxies that use the socks5 protocol, are located in\n# the US or Canada and support POST requests\nsocks_pf = ProxyFetcher(protocol=\"socks5\", countries=[\"US\", \"CA\"], post=True)\n\n# ProxyFetcher for proxies that support https, are elite anonymity level,\n# and connected in 15 seconds or less\nhttp_pf = ProxyFetcher(protocol=\"http\", https=True, level=\"elite\",\n time_to_connect=15)\n\n# Get one socks proxy, followed by 10 https proxies\n# NOTE: even though there are multiple `ProxyFetcher`s the delays are\n# coordinated between them to prevent rate limiting\nsocks_proxy = socks_pf.get_proxy() # Returns a single proxy as a string\nhttps_proxy = https_pf.get_proxies(10) # Returns a list of proxies as strings\n\n# Do something with the proxies, like spawn worker threads that use them\n```\n\n## Documentation\n\nGetting proxies is handled by the `ProxyFetcher` class. There are several parameters you can pass on initialization to narrow down the proxies to a suitable type. From there you can just call `get_proxy` to receive a proxy in the form of `{ip-address}:{port-number}` or call `get_proxies(amount)` to receive a list of `amount` proxies. There is an internal blacklist to ensure that the same proxy ip and port combo will not be used more than once by any `ProxyFetcher`, unless `exclude_used` is `False`.\n\n### `ProxyFetcher` Parameters\n\nSince the API doesn't check pretty much anything for correctness, we do our best in the `ProxyFetcher` to ensure nothing is wrong. As far as I know the only thing that isn't checked is that the `countries` or `not_countries` actually use the correct codes.\n\n|Parameter|Type|Description|\n|:--|:--|:--|\n|`exclude_used`|`bool`|If the `ProxyFetcher` should prevent re-returning proxies|\n|`api_key`|`str`|API key for a paid account, you can also set `$PUBPROXY_API_KEY` to pass your key, passing the `api_key` parameter will override the env-var|\n|`level`|`str`|[_Options: anonymous, elite_] Proxy anonymity level|\n|`protocol`|`str`|[_Options: http, socks4, socks5_] Desired communication protocol|\n|`countries`|`str` or `list`|Locations of the proxy using the [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code, **Incompatible with `not_countries`**|\n|`not_countries`|`str` or `list`|Blacklist locations of the proxy using the [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code, **Incompatible with `countries`**|\n|`last_checked`|`int`|[_Bounds: 1-1000_] Minutes since the proxy was checked|\n|`port`|`int`|Proxies using a specific port|\n|`time_to_connect`|`int`|[_Bounds: 1-60_] How many seconds it took for the proxy to connect|\n|`cookies`|`bool`|Supports requests with cookies|\n|`google`|`bool`|Can connect to Google|\n|`https`|`bool`|Supports HTTPS requests|\n|`post`|`bool`|Supports POST requests|\n|`referer`|`bool`|Supports referer requests|\n|`user_agent`|`bool`|Supports forwarding user-agents|\n\n### `ProxyFetcher` Methods\n\nKeeping it simple (stupid), so just `get_proxy()` and `get_proxies(amount)`.\n\n|Method|Returns|\n|:--|:--|\n|`get_proxy()`|Single proxy as a string, format `{ip}:{port}`|\n|`get_proxies(amount)`|List of `amount` proxies, same format as above|\n\n### Exceptions\n\nAll the exceptions are defined in `errors.py`.\n\n|Exception|Description|\n|:--|:--|\n|`ProxyError`|Base exception that all other pubproxpy errors inherit from|\n|`APIKeyError`|Error raised when the API gives an incorrect API Key response|\n|`RateLimitError`|Error raised when the API gives a rate-limiting response (more than 1 request per second)|\n|`DailyLimitError`|Error raised when the API gives the daily request limit response|\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/LovecraftianHorror/pubproxpy", "keywords": "proxy api,pubproxy,public proxy,pubproxy api,scraping", "license": "GPL-3.0", "maintainer": "LovecraftianHorror", "maintainer_email": "LovecraftianHorror@pm.me", "name": "pubproxpy", "package_url": "https://pypi.org/project/pubproxpy/", "platform": "", "project_url": "https://pypi.org/project/pubproxpy/", "project_urls": { "Homepage": "https://github.com/LovecraftianHorror/pubproxpy", "Repository": "https://github.com/LovecraftianHorror/pubproxpy" }, "release_url": "https://pypi.org/project/pubproxpy/1.0.1/", "requires_dist": [ "requests (>=2.22,<3.0)" ], "requires_python": ">=3.6,<4.0", "summary": "An easy to use Python wrapper for pubproxy.com", "version": "1.0.1" }, "last_serial": 5888125, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "37a944e0d5a48dd74033e2b0d52db3e3", "sha256": "7bbc04a05ef926401c8396e030d7435a3490f6af3b982c7d6c088b0af623982c" }, "downloads": -1, "filename": "pubproxpy-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "37a944e0d5a48dd74033e2b0d52db3e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45627, "upload_time": "2019-06-08T16:02:27", "url": "https://files.pythonhosted.org/packages/f9/b1/61e9d3699cc717cbaf09f889bef7fb4e004616e0470bda99829140ea2ddf/pubproxpy-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c25e836bc34edf5b238023ea6490db44", "sha256": "27a0cba5000df2cd57d9e85f51ce8041b4054a495d00a96467d9b097f98da37d" }, "downloads": -1, "filename": "pubproxpy-0.1.0.tar.gz", "has_sig": false, "md5_digest": "c25e836bc34edf5b238023ea6490db44", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15803, "upload_time": "2019-06-08T16:02:29", "url": "https://files.pythonhosted.org/packages/8c/42/c9d7a9b9131a41db3e4b6819261955d27b7d5fe0a943ac004d78ebbd9736/pubproxpy-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "6f3727c02cd8616bb2c9149b5fcacf8b", "sha256": "6aaab743557eced8037a40109c0dcd0ee94b3215e9c1a639b4c1e9913d56cff2" }, "downloads": -1, "filename": "pubproxpy-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6f3727c02cd8616bb2c9149b5fcacf8b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45625, "upload_time": "2019-06-08T16:31:17", "url": "https://files.pythonhosted.org/packages/2a/92/b095aac422f4c55104f57ba2c2004cbd39219b3870e38072ee2d07c15efe/pubproxpy-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "37cb5ebf213ea4cd82a1c87b708ec02f", "sha256": "7e49d37926af476ca53fa140211e78b3d1ba5a40afe11e9008d4d9c2792e151e" }, "downloads": -1, "filename": "pubproxpy-0.1.1.tar.gz", "has_sig": false, "md5_digest": "37cb5ebf213ea4cd82a1c87b708ec02f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15825, "upload_time": "2019-06-08T16:31:18", "url": "https://files.pythonhosted.org/packages/35/a6/ed8fbaa9b29d585068b6db84e9bf7444be0db087eb69ba013a8967b5ec20/pubproxpy-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "71c8dca8f92204f16aa520eba8d894ea", "sha256": "32492ee6de7fb96178071a1eb8fdca3fda5ffc0853b736a043f43c355a93b790" }, "downloads": -1, "filename": "pubproxpy-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "71c8dca8f92204f16aa520eba8d894ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45628, "upload_time": "2019-06-08T18:26:42", "url": "https://files.pythonhosted.org/packages/23/09/17b533d6eec870545fd110f9b25dcee225a9c1c3e536935a96c3b3e49ac7/pubproxpy-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "103e24e6f8e3ecb80296d503c73c0712", "sha256": "63a7d74dae591124518937a94437757f954bde5fe5b60b2ffc05fb23bad676a4" }, "downloads": -1, "filename": "pubproxpy-0.1.2.tar.gz", "has_sig": false, "md5_digest": "103e24e6f8e3ecb80296d503c73c0712", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15822, "upload_time": "2019-06-08T18:26:43", "url": "https://files.pythonhosted.org/packages/24/ab/d261f3666e8640d128d044adcf20c57ca83b04f91e85556c62a1810cd9e4/pubproxpy-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "028bad5fdcbf9ba8322e80f9722529c3", "sha256": "1f29f51f95feb40679c8b6a5331c1965098afac082f7612df71b9c443aebaae9" }, "downloads": -1, "filename": "pubproxpy-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "028bad5fdcbf9ba8322e80f9722529c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45626, "upload_time": "2019-06-08T18:34:14", "url": "https://files.pythonhosted.org/packages/cb/12/9f610680eb6dc7f1b35cd3ed9b6ecc32b04d4484a098f6e69d6db59dcd59/pubproxpy-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59819c5c6a6e82a8ea2d2acabcde6dce", "sha256": "e61f5acca7046e1ced125ad072264ab5e669e8f08d8f4f7b4ee20dc392be10b3" }, "downloads": -1, "filename": "pubproxpy-0.1.3.tar.gz", "has_sig": false, "md5_digest": "59819c5c6a6e82a8ea2d2acabcde6dce", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15832, "upload_time": "2019-06-08T18:34:16", "url": "https://files.pythonhosted.org/packages/04/4b/1a1f8f2f95aee62e3e39e3d7b97edede1fb155e3b408dd23c1c0baf77f5c/pubproxpy-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "e24fc334b3394967d0402f939e5dad2f", "sha256": "d360d26ebb8a1d33570c7369f2d137aaa8705aef7a43ea97b7331719fbb9c50f" }, "downloads": -1, "filename": "pubproxpy-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e24fc334b3394967d0402f939e5dad2f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45628, "upload_time": "2019-06-08T18:38:42", "url": "https://files.pythonhosted.org/packages/fb/2a/62ad18706f4142a552a55ff5b2db8a8e5ec685fc82146a32d6583926523a/pubproxpy-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd5008afa7b8bd436e22d8b4a08b74da", "sha256": "cb1743e4d57564ca5ece4053ee10f43fbb44c6e801a1b4915105670491a77595" }, "downloads": -1, "filename": "pubproxpy-0.1.4.tar.gz", "has_sig": false, "md5_digest": "fd5008afa7b8bd436e22d8b4a08b74da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15822, "upload_time": "2019-06-08T18:38:43", "url": "https://files.pythonhosted.org/packages/54/a4/f90c451575b2b5cdfd8419112bac8096c55cc4ed6b3acb1d6015af7b14c7/pubproxpy-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "ce63f2d2c15e9ccab94b83640753232c", "sha256": "4ee5b22e598216c6d9de837518b43bf3ef3c55dbd0acc24d8bc2ccea0a3c870f" }, "downloads": -1, "filename": "pubproxpy-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "ce63f2d2c15e9ccab94b83640753232c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45628, "upload_time": "2019-06-08T18:43:27", "url": "https://files.pythonhosted.org/packages/7d/52/b32e2ca906776b5418686b8a962f466b219974ad7a4cab4320c9d22cf940/pubproxpy-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31f0124f97e4b82528f6edc6ff30c701", "sha256": "e58061eacea876592af94d08b759793404d940db47c60dd7d162ee535e73460b" }, "downloads": -1, "filename": "pubproxpy-0.1.5.tar.gz", "has_sig": false, "md5_digest": "31f0124f97e4b82528f6edc6ff30c701", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15833, "upload_time": "2019-06-08T18:43:29", "url": "https://files.pythonhosted.org/packages/dc/ef/f1f5236d8109aeacdf5f58b12175fe2d86cfcdb2efab422940cc6617645f/pubproxpy-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "7ded6d049678a99b1341d868012e1ff7", "sha256": "90ace6cb796c8f501eeeb0cd2f13185a4360c42eef19b2705ecb7899c100019b" }, "downloads": -1, "filename": "pubproxpy-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "7ded6d049678a99b1341d868012e1ff7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45628, "upload_time": "2019-06-08T18:44:35", "url": "https://files.pythonhosted.org/packages/3f/ba/9a020f669fb049543048e719d8256afa92211b07fa05ce5eac8eb5e71cfd/pubproxpy-0.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69f3c102c7bdc9173f6c922b2cd9ab06", "sha256": "f7fc690580616f6f2903d5fd4af665e88822aacc0e48f198db460f96f00be0cc" }, "downloads": -1, "filename": "pubproxpy-0.1.6.tar.gz", "has_sig": false, "md5_digest": "69f3c102c7bdc9173f6c922b2cd9ab06", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15821, "upload_time": "2019-06-08T18:44:37", "url": "https://files.pythonhosted.org/packages/6a/16/47b260087c32d7e5380016d1f372830a37468187fb5a39f1e4d4e224cdb7/pubproxpy-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "ebdc8cd5391a8f83ca600a0afec3f427", "sha256": "c2527ae7399ba756c81caa86a651f17a9f02dfc4ba67a1df21c0fde9526a667e" }, "downloads": -1, "filename": "pubproxpy-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ebdc8cd5391a8f83ca600a0afec3f427", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45627, "upload_time": "2019-06-08T18:46:37", "url": "https://files.pythonhosted.org/packages/33/3a/fa95e34bdbb8da336ef8ef0cbf76928c2acecf53507f787df4515e125c43/pubproxpy-0.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5049a63f2c078d4b7c1a19ac9936d1c5", "sha256": "8f57fc9c171951b58daab57b500343dfa6b4793e273e49ec894ccca0ac9ee4d5" }, "downloads": -1, "filename": "pubproxpy-0.1.7.tar.gz", "has_sig": false, "md5_digest": "5049a63f2c078d4b7c1a19ac9936d1c5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 15832, "upload_time": "2019-06-08T18:46:39", "url": "https://files.pythonhosted.org/packages/9f/c7/8f1695ff5720ed1d053ddd94f1ff964bf32506690ebaf049e19efad1f782/pubproxpy-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "b896eeb51b460f77c9dd5487ce89fe9e", "sha256": "44df3824a076f66094dc00631b52062d1190fe11acb769a730354768fb0e6767" }, "downloads": -1, "filename": "pubproxpy-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "b896eeb51b460f77c9dd5487ce89fe9e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 47282, "upload_time": "2019-06-10T13:21:46", "url": "https://files.pythonhosted.org/packages/34/ac/16876aa5694ea1712128011c6d15f586e757f74fb616662b2721dd870c92/pubproxpy-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "651ed459f4d304e37100564a9cbe8ed4", "sha256": "b461eb3b018146bccd259ec12fb100a0309055caa327adbe98c80e7c695764d0" }, "downloads": -1, "filename": "pubproxpy-0.1.8.tar.gz", "has_sig": false, "md5_digest": "651ed459f4d304e37100564a9cbe8ed4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 17592, "upload_time": "2019-06-10T13:21:47", "url": "https://files.pythonhosted.org/packages/cc/f0/05e5203b15dc86a0aea5a935278986aa9ea71239e6576921c5e0da9928ca/pubproxpy-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "f097045f0c790e2bbd2c73392d0b31de", "sha256": "3abcb6c506617d222b59e287674bc62caed5a331c531b264ee284555c805ff39" }, "downloads": -1, "filename": "pubproxpy-0.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "f097045f0c790e2bbd2c73392d0b31de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 47575, "upload_time": "2019-06-11T14:01:38", "url": "https://files.pythonhosted.org/packages/ad/dc/c079874c4fda1cf6bff073c4b119159b36e3b9723b0844ebe100a89b08ae/pubproxpy-0.1.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a4278a7ed3850631e3cdc8b90353906", "sha256": "63ba5978431c62c152bbce801a90655c3430ee9da253a4fcfaeb9b0839825cf4" }, "downloads": -1, "filename": "pubproxpy-0.1.9.tar.gz", "has_sig": false, "md5_digest": "8a4278a7ed3850631e3cdc8b90353906", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 17817, "upload_time": "2019-06-11T14:01:40", "url": "https://files.pythonhosted.org/packages/25/23/ff0de1b9f25525518d3d6c136956cae56a1caf2ff298f66eecce352f867c/pubproxpy-0.1.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ee6d9c3cb656dd9f6707face9a691b24", "sha256": "8066d0ca06092f4f048f85bd910166ef6669484ec324dd7b0327ca486f284d9f" }, "downloads": -1, "filename": "pubproxpy-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ee6d9c3cb656dd9f6707face9a691b24", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 50557, "upload_time": "2019-08-14T03:13:39", "url": "https://files.pythonhosted.org/packages/3c/e1/1903d9b9fb0684cd118e95d7f496118a381d02499dd2cf49dffe24576426/pubproxpy-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12eab9e480842cdb652eedfb3dc8e317", "sha256": "f17ff3ec0dadaa928bddd4ac8845f015b974cbebe6c341814c1b091c874bd494" }, "downloads": -1, "filename": "pubproxpy-1.0.0.tar.gz", "has_sig": false, "md5_digest": "12eab9e480842cdb652eedfb3dc8e317", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 19080, "upload_time": "2019-08-14T03:13:41", "url": "https://files.pythonhosted.org/packages/fd/de/2bbacf86f579a79b61470bac524b8fd3599507e569f7dc6bc56cc5f23d33/pubproxpy-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "951aa603b17569e1a551d22fb1088d96", "sha256": "a6ecf618a7712b1db37b3ff4890f25fe9c4d7b99723b4dbd8c516cc0fc38a67f" }, "downloads": -1, "filename": "pubproxpy-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "951aa603b17569e1a551d22fb1088d96", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 49442, "upload_time": "2019-09-26T02:54:17", "url": "https://files.pythonhosted.org/packages/51/27/3f5d2ce316ceb3afb030160c504b14cacc8b4a45be40f5c3e401a30a757b/pubproxpy-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e94ca28cf07d10d521f813ec0d7d80e", "sha256": "d6ffacb16d7b6309f8e658a71e880a2fe002f0408aab658bb3064d2f7f1c8979" }, "downloads": -1, "filename": "pubproxpy-1.0.1.tar.gz", "has_sig": false, "md5_digest": "0e94ca28cf07d10d521f813ec0d7d80e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 18874, "upload_time": "2019-09-26T02:54:20", "url": "https://files.pythonhosted.org/packages/d0/4c/3088c42b9e749ef30b99754d17eac30ecdf7b01fa15099334e202bc1b3d8/pubproxpy-1.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "951aa603b17569e1a551d22fb1088d96", "sha256": "a6ecf618a7712b1db37b3ff4890f25fe9c4d7b99723b4dbd8c516cc0fc38a67f" }, "downloads": -1, "filename": "pubproxpy-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "951aa603b17569e1a551d22fb1088d96", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 49442, "upload_time": "2019-09-26T02:54:17", "url": "https://files.pythonhosted.org/packages/51/27/3f5d2ce316ceb3afb030160c504b14cacc8b4a45be40f5c3e401a30a757b/pubproxpy-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e94ca28cf07d10d521f813ec0d7d80e", "sha256": "d6ffacb16d7b6309f8e658a71e880a2fe002f0408aab658bb3064d2f7f1c8979" }, "downloads": -1, "filename": "pubproxpy-1.0.1.tar.gz", "has_sig": false, "md5_digest": "0e94ca28cf07d10d521f813ec0d7d80e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 18874, "upload_time": "2019-09-26T02:54:20", "url": "https://files.pythonhosted.org/packages/d0/4c/3088c42b9e749ef30b99754d17eac30ecdf7b01fa15099334e202bc1b3d8/pubproxpy-1.0.1.tar.gz" } ] }