{ "info": { "author": "ko-zu", "author_email": "causeless@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Operating System :: OS Independent", "Topic :: Internet :: Name Service (DNS)", "Topic :: Text Processing :: Filters" ], "description": "publicsuffixlist\n===\n\n[Public Suffix List](https://publicsuffix.org/) parser implementation for Python 2.5+/3.x.\n\n- Compliant with [TEST DATA](http://mxr.mozilla.org/mozilla-central/source/netwerk/test/unit/data/test_psl.txt?raw=1)\n- Support IDN (unicode or punycoded).\n- Support Python2.5+ and Python 3.x\n- Shipped with built-in PSL and the updater script.\n- Written in Pure Python. No library dependencies.\n\n[![Build Status](https://travis-ci.org/ko-zu/psl.svg?branch=master)](https://travis-ci.org/ko-zu/psl)\n[![PyPI version](https://badge.fury.io/py/publicsuffixlist.svg)](https://badge.fury.io/py/publicsuffixlist)\n[![Downloads](http://pepy.tech/badge/publicsuffixlist)](http://pepy.tech/project/publicsuffixlist)\n\nInstall\n===\n`publicsuffixlist` can be installed via `pip` or `pip3`.\n```\n$ sudo pip install publicsuffixlist\n```\n\nIf you are in a bit old distributions (RHEL/CentOS6.x), you may need to update `pip` itself before install.\n```\n$ sudo pip install -U pip\n```\n\nUsage\n===\n\n```python\nfrom publicsuffixlist import PublicSuffixList\n\npsl = PublicSuffixList()\n# uses built-in PSL file\n\npsl.publicsuffix(\"www.example.com\") # \"com\"\n# longest public suffix part\n\npsl.privatesuffix(\"www.example.com\") # \"example.com\"\n# shortest domain assigned for a registrant\n\npsl.privatesuffix(\"com\") # None\n# None if no private (non-public) part found\n\n\npsl.publicsuffix(\"www.example.unknownnewtld\") # \"unkownnewtld\"\n# new TLDs are valid public suffix by default\n\npsl.publicsuffix(u\"www.example.\u9999\u6e2f\") # u\"\u9999\u6e2f\"\n# accept unicode\n\npsl.publicsuffix(\"www.example.xn--j6w193g\") # \"xn--j6w193g\"\n# accept punycoded IDNs by default\n```\n\nLatest PSL can be passed as a file like line-iterable object.\n```python\nwith open(\"latest_psl.dat\", \"rb\") as f:\n psl = PublicSuffixList(f)\n```\n\nWorks with both Python 2.x and 3.x.\n```\n$ python2 setup.py test\n$ python3 setup.py test\n```\n\nDrop-in compatibility code to replace [publicsuffix](https://pypi.python.org/pypi/publicsuffix/)\n```python\n# from publicsuffix import PublicSuffixList\nfrom publicsuffixlist.compat import PublicSuffixList\n\npsl = PublicSuffixList()\npsl.suffix(\"www.example.com\") # return \"example.com\"\npsl.suffix(\"com\") # return \"\" rather than None\n```\n\nSome convenient methods available.\n```python\npsl.is_private(\"example.com\") # True\npsl.privateparts(\"aaa.www.example.com\") # (\"aaa\", \"www\", \"example.com\")\npsl.subdomain(\"aaa.www.example.com\", depth=1) # \"www.example.com\"\n```\n\n\nLimitation\n===\n`publicsuffixlist` do NOT provide domain name validation.\nIn DNS protocol, most of 8-bit characters are acceptable label of domain name. ICANN compliant registries do not accept domain names that have `_` (underscore) but hostname may have. DMARC records, for example.\n\nUsers need to confirm the input is valid based on the users' context.\n\nPartially encoded (Unicode-mixed) Punycode is not supported because of very slow Punycode en/decoding and unpredictable encoding of results.\nIf you are not sure the input is valid Punycode or not, you should do `unknowndomain.encode(\"idna\")` which is idempotence.\n\nICANN and private suffixes\n===\nThe public suffix list contains both suffixes for ICANN domains and private suffixes. Using the flag `only_icann` the private suffixes can be deactivated:\n```\n>>> psl = PublicSuffixList()\n>>> psl.publicsuffix(\"example.priv.at\")\n'priv.at'\n>>> psl = PublicSuffixList(only_icann=True)\n>>> psl.publicsuffix(\"example.priv.at\")\n'at'\n```\n\nLicense\n===\n\n- This module is licensed under Mozilla Public License 2.0.\n- Public Suffix List maintained by Mozilla Foundation is licensed under Mozilla Public License 2.0.\n- PSL testcase dataset is public domain (CC0).\n\n\nSource / Link\n===\n\n- Git repository on GitHub (https://github.com/ko-zu/psl)\n- PyPI (https://pypi.python.org/pypi?name=publicsuffixlist&:action=display)\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/ko-zu/psl", "keywords": "", "license": "MPL-2.0", "maintainer": "", "maintainer_email": "", "name": "publicsuffixlist", "package_url": "https://pypi.org/project/publicsuffixlist/", "platform": "", "project_url": "https://pypi.org/project/publicsuffixlist/", "project_urls": { "Homepage": "https://github.com/ko-zu/psl" }, "release_url": "https://pypi.org/project/publicsuffixlist/0.6.11/", "requires_dist": [ "pandoc ; extra == 'readme'", "requests ; extra == 'update'" ], "requires_python": "", "summary": "publicsuffixlist implement", "version": "0.6.11" }, "last_serial": 5724891, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "8970837445b329e4382214ba71d4eeb3", "sha256": "94868c7653d5124cfcea1e48976a52a332384e098b0b986efde1c5dd9a915efe" }, "downloads": -1, "filename": "publicsuffixlist-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8970837445b329e4382214ba71d4eeb3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55712, "upload_time": "2014-11-23T05:49:24", "url": "https://files.pythonhosted.org/packages/96/06/862d7af8b2a2053b58bbcbdecb0d95ec76c34e2738ef04b193a32cad25d5/publicsuffixlist-0.2.0-py2.py3-none-any.whl" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "fe6e535fbfefb2606d578587f562acfc", "sha256": "2235f790ea763f2c73f042bb6478bc1b0805603e1299e0154de0a12976d57095" }, "downloads": -1, "filename": "publicsuffixlist-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe6e535fbfefb2606d578587f562acfc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55965, "upload_time": "2014-11-30T17:06:29", "url": "https://files.pythonhosted.org/packages/26/9a/5dc24cfa828d688c1d9d045139f5a587aca6e8538e4d64e4069e555d40a3/publicsuffixlist-0.2.1-py2.py3-none-any.whl" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "cc4aedcc815f3fefb72360157d5583ea", "sha256": "0306e08ef1c864fa3c88ba64dfdf59eef2debd88df64557473b977061c8ddcf3" }, "downloads": -1, "filename": "publicsuffixlist-0.2.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc4aedcc815f3fefb72360157d5583ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 122071, "upload_time": "2015-09-22T17:05:24", "url": "https://files.pythonhosted.org/packages/5b/9a/117ccc2d20c7a8d5dea6aed7168b0b813262bdcaedfc4b5349a53b595ee1/publicsuffixlist-0.2.10-py2.py3-none-any.whl" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "ab87a52b8375bb140fb7cbe44c64bbc1", "sha256": "013173e4fca55f62c1f894ccbb5a4bc28ec1cb31891f0038b7511c98d86ea132" }, "downloads": -1, "filename": "publicsuffixlist-0.2.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab87a52b8375bb140fb7cbe44c64bbc1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68780, "upload_time": "2015-09-22T18:11:55", "url": "https://files.pythonhosted.org/packages/45/b8/6b61846a3c952c3fdb913c4af9c0765db0af2831376783b8580cf7ff550c/publicsuffixlist-0.2.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ceaf25d63a072d05c2bc91fcef55217", "sha256": "7d7aec59c35c3786d80520b5a0566f3a178339c097dd37bcee19400726e83bb8" }, "downloads": -1, "filename": "publicsuffixlist-0.2.11.tar.gz", "has_sig": false, "md5_digest": "5ceaf25d63a072d05c2bc91fcef55217", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70718, "upload_time": "2015-09-22T18:12:08", "url": "https://files.pythonhosted.org/packages/7e/88/e4264356358803b8d2fe9e729d01254da156bb9abec3cd9ef0336f76db91/publicsuffixlist-0.2.11.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "e2c4204b540cf30aef04891591732b5d", "sha256": "64c8d41723b59f141c93a59a2849bcd86c55a0db2ebcfdd1dc1dd5644bcd43b9" }, "downloads": -1, "filename": "publicsuffixlist-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e2c4204b540cf30aef04891591732b5d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 58987, "upload_time": "2014-12-31T19:26:36", "url": "https://files.pythonhosted.org/packages/75/6c/25c39dd5ef36ed0bc5b5799b4060b3ec97f858f3063303a209a6946b92b2/publicsuffixlist-0.2.2-py2.py3-none-any.whl" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "f9e7e1c2e83fa7d60a42401888292888", "sha256": "b0a6f93ed7ce3b317cd1774a6415d6ece468be23f2b0a0773a275a65ffba5d15" }, "downloads": -1, "filename": "publicsuffixlist-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f9e7e1c2e83fa7d60a42401888292888", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60106, "upload_time": "2015-02-16T10:27:26", "url": "https://files.pythonhosted.org/packages/b5/9f/75cec700e20fccdedec0fb7a660113800b62e72f73f083d2f45bc1a14ff8/publicsuffixlist-0.2.3-py2.py3-none-any.whl" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "4cd43849fb89928b96505bf2fad998de", "sha256": "f9ffe8eeae44091abd07e21c000a89c4c505fa7ce51d970ec7e321934e10e122" }, "downloads": -1, "filename": "publicsuffixlist-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4cd43849fb89928b96505bf2fad998de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60300, "upload_time": "2015-03-04T14:59:06", "url": "https://files.pythonhosted.org/packages/f3/b9/c89aeecdc15d9810b7ce1c6049a81eee67d7e0968b5094dd82ef8457c785/publicsuffixlist-0.2.4-py2.py3-none-any.whl" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "bcc7e6ba5b69d5f234559da298056f68", "sha256": "e15769f880dd15e49524396a0f9410b067b5162c602832636655b0be82e8278d" }, "downloads": -1, "filename": "publicsuffixlist-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcc7e6ba5b69d5f234559da298056f68", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 62130, "upload_time": "2015-04-12T07:07:57", "url": "https://files.pythonhosted.org/packages/39/50/72f7674618c16a7af0ebcd8c2766874c86164cc6e188951adaf59621da2c/publicsuffixlist-0.2.5-py2.py3-none-any.whl" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "bff3fc01758ae21be6306d45148175d2", "sha256": "bb5e73cc23e6c11f07e3eac827fc2f18d4c318de833cf99e22b7775fb3605b67" }, "downloads": -1, "filename": "publicsuffixlist-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bff3fc01758ae21be6306d45148175d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 62657, "upload_time": "2015-05-06T18:01:52", "url": "https://files.pythonhosted.org/packages/01/8a/e81b48898ff14d31f63f4f953ff30a3e2a32dfce5b6bf1e50c8228598f8c/publicsuffixlist-0.2.6-py2.py3-none-any.whl" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "ac005e9f654f52e5fdea7a78b716fa9a", "sha256": "380f87d22abd53eb120f3b94c464b8c72046ac8f8d38b16eac1be6dc5ecbcba6" }, "downloads": -1, "filename": "publicsuffixlist-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac005e9f654f52e5fdea7a78b716fa9a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 63636, "upload_time": "2015-05-10T13:02:30", "url": "https://files.pythonhosted.org/packages/1d/99/39a5d9d0f51638024e378f3126646470e98bab68efa6559e2c16071c60ec/publicsuffixlist-0.2.7-py2.py3-none-any.whl" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "954e61382d76fa45154107428a600221", "sha256": "2121a89ba0dee4367f6ad7687e66ca38bbc25cc47f1685441acc8818f43af531" }, "downloads": -1, "filename": "publicsuffixlist-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "954e61382d76fa45154107428a600221", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 117128, "upload_time": "2015-06-29T06:30:27", "url": "https://files.pythonhosted.org/packages/5f/46/fb0c2a37af98258f14148c91d0617a94d420ab04413dce7ea5bbd02105d3/publicsuffixlist-0.2.8-py2.py3-none-any.whl" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "7874d8d556336f1f99386a2d0d9a38c9", "sha256": "68b42ce029b0bfbd749301a17b603f2642b5c64de3d4f27b364719b0bbe84f9a" }, "downloads": -1, "filename": "publicsuffixlist-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7874d8d556336f1f99386a2d0d9a38c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 121490, "upload_time": "2015-08-05T11:43:39", "url": "https://files.pythonhosted.org/packages/34/98/7be9f56916b72fc6a59cd8677cfce0261632ade93e66e26fa8c12da6c0eb/publicsuffixlist-0.2.9-py2.py3-none-any.whl" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "b2e7aa8ef0c3c8ff58b44aa5c9c49b27", "sha256": "3d3e05adccdad178afd579512b9cb04183cb115ea0c5d2144b3bdbcb12d82223" }, "downloads": -1, "filename": "publicsuffixlist-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2e7aa8ef0c3c8ff58b44aa5c9c49b27", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 69238, "upload_time": "2015-09-28T10:48:14", "url": "https://files.pythonhosted.org/packages/36/28/7f72db62beac99c082c8427748b634156ff99923ee095b019f35a673c13d/publicsuffixlist-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ee8284459c27c004270eb22d7d6b2aa", "sha256": "bf7244ad5a5e84b25ba213c88229175d81eea03cb2b647f5813f81e138256fc6" }, "downloads": -1, "filename": "publicsuffixlist-0.3.0.tar.gz", "has_sig": false, "md5_digest": "1ee8284459c27c004270eb22d7d6b2aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71173, "upload_time": "2015-09-28T10:48:03", "url": "https://files.pythonhosted.org/packages/b5/17/2e42e9194415891fff5e14d8a76f2595464b4abec0a319d57281f3768f25/publicsuffixlist-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "20ad681a7966c3e824d9d0e315125bb5", "sha256": "4a6a39770ce11ec5a00f7266a81a43a24ea6c16c1742c05e1fed8ddf138d183e" }, "downloads": -1, "filename": "publicsuffixlist-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20ad681a7966c3e824d9d0e315125bb5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 69972, "upload_time": "2015-10-21T08:33:20", "url": "https://files.pythonhosted.org/packages/e5/93/d76f1ec85dcc9c34ee92a5fa2c751423edad9ff170fce51df9415e2523f9/publicsuffixlist-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23ee2cc4abe0742a22ed95a4de393348", "sha256": "37485320435bf44999608694477bfe5530629c662881db6d1bdb7e25dffe4370" }, "downloads": -1, "filename": "publicsuffixlist-0.3.1.tar.gz", "has_sig": false, "md5_digest": "23ee2cc4abe0742a22ed95a4de393348", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71787, "upload_time": "2015-10-21T08:33:25", "url": "https://files.pythonhosted.org/packages/99/37/adf15131a0c632c3a424a8f917e226e8fab2e83fc31488428533842af5e6/publicsuffixlist-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1bfb8c6a9182f7b6417b40b08990119c", "sha256": "77f9842b26ab92590183befc82c9abb7e9f1e89d20377e322f80960da429d841" }, "downloads": -1, "filename": "publicsuffixlist-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1bfb8c6a9182f7b6417b40b08990119c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70689, "upload_time": "2016-01-10T16:39:14", "url": "https://files.pythonhosted.org/packages/8d/0e/a2b88cb480555709f83fc47469da585dcd1491cb2a95a74dc92146c7a917/publicsuffixlist-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e282947665cbf53ea97f079680e2afc", "sha256": "adab6c85232fa27c6d69b3c5baba0fe060b41cd1e699fa960b2c3eb3e67827d2" }, "downloads": -1, "filename": "publicsuffixlist-0.4.0.tar.gz", "has_sig": false, "md5_digest": "1e282947665cbf53ea97f079680e2afc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72569, "upload_time": "2016-01-10T16:39:21", "url": "https://files.pythonhosted.org/packages/bb/0c/4167b70402b35fb6eb0e2be96195f8576a3735a3d27bca0227a4b0324b88/publicsuffixlist-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "ed019e8bd0f28461450277266b06bb20", "sha256": "3953253c530e86f50e070c30147b54c44d09360d296280ebabf66c915740e6d9" }, "downloads": -1, "filename": "publicsuffixlist-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ed019e8bd0f28461450277266b06bb20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72529, "upload_time": "2016-06-26T05:48:01", "url": "https://files.pythonhosted.org/packages/1e/b9/3ed8230043debfd31ff52d23e9efe1ae8b8f6943ca02c3cf64c3b92d6c3e/publicsuffixlist-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "97e77286806fd72e1073b143fd049a9d", "sha256": "75c6c89a8efc0524ff05e6505ded89f43aa8aa866fc8728a2734969f1cdd16c4" }, "downloads": -1, "filename": "publicsuffixlist-0.4.1.tar.gz", "has_sig": false, "md5_digest": "97e77286806fd72e1073b143fd049a9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74365, "upload_time": "2016-06-26T05:48:06", "url": "https://files.pythonhosted.org/packages/f1/e4/c835173687253b391f06be819fe41b0089912b4f01130ce81f9f0379c9fe/publicsuffixlist-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "2ed2af1a0d4e4d148fab76ff72fb083b", "sha256": "3fa78a7306703785da67eb9ea5c59f9406c9457b26fb3611264989aed8381a5f" }, "downloads": -1, "filename": "publicsuffixlist-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ed2af1a0d4e4d148fab76ff72fb083b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 74827, "upload_time": "2017-03-25T15:31:35", "url": "https://files.pythonhosted.org/packages/67/a9/4e08d13e58fdb870e70e1f2541180443f1cae72389d6b35c41e92087f978/publicsuffixlist-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "339b9bbf328edd6bbfee3a3b95b7fd5b", "sha256": "1ed47925b2715a6961facc8e3f8c782c9fd1f64fd32bedacb0d6b9a8ca474e39" }, "downloads": -1, "filename": "publicsuffixlist-0.4.2.tar.gz", "has_sig": false, "md5_digest": "339b9bbf328edd6bbfee3a3b95b7fd5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76167, "upload_time": "2017-03-25T15:31:38", "url": "https://files.pythonhosted.org/packages/fc/21/637f8293e5c10bc3a5311c7103aee669038924b19126491fd6c3f37a786e/publicsuffixlist-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "795f2029aabc59495ec94b2e4f6a88d5", "sha256": "730a0b544e6abdd4d0abee7521de1891cb96b33757e16ae18731ca3078d7931a" }, "downloads": -1, "filename": "publicsuffixlist-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "795f2029aabc59495ec94b2e4f6a88d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75647, "upload_time": "2017-04-14T04:12:21", "url": "https://files.pythonhosted.org/packages/dc/58/0647952de68434538165f772312e52b17ec60487e1df14a44b2a8970c05b/publicsuffixlist-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7cae7fa912416147ffa5e9429710d3e", "sha256": "77873894845cb9247ee800c32c224e3ae548fafdddcf0a37c9666904adea91d7" }, "downloads": -1, "filename": "publicsuffixlist-0.4.3.tar.gz", "has_sig": false, "md5_digest": "f7cae7fa912416147ffa5e9429710d3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76968, "upload_time": "2017-04-14T04:12:24", "url": "https://files.pythonhosted.org/packages/ab/96/a989ad3afc481d782106acace0ee6eb30a4d470e4dfbde1f060991679493/publicsuffixlist-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "84ac60159798d0f83425dfdf869aa535", "sha256": "ffdfbaba581e036c90ecc958e92fb1a09259a764af11fb954350fc269c1c2605" }, "downloads": -1, "filename": "publicsuffixlist-0.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "84ac60159798d0f83425dfdf869aa535", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77650, "upload_time": "2017-09-13T10:03:18", "url": "https://files.pythonhosted.org/packages/b3/3f/e45df70e66ea3eaaba3ec468572817eea13fb281d2872dcc6780df06264c/publicsuffixlist-0.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2fd8c371a6137e1457d921a2011ea709", "sha256": "06bd8c8da2184f3521730e49bb1728b4c9ad7a6b11761b21208708cb790f17fd" }, "downloads": -1, "filename": "publicsuffixlist-0.4.4.tar.gz", "has_sig": false, "md5_digest": "2fd8c371a6137e1457d921a2011ea709", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78949, "upload_time": "2017-09-13T10:03:21", "url": "https://files.pythonhosted.org/packages/87/f8/3b83c5a3f5954bbe92f3762c94984e781c64ed78ef06edb1e86671cee29c/publicsuffixlist-0.4.4.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "e3be13d5f6e5b368936ac22c48182c66", "sha256": "c9d1a85808e3155287f65d28463a0dd95bb29c400b8ad5ad8b8e5bf651eb2526" }, "downloads": -1, "filename": "publicsuffixlist-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3be13d5f6e5b368936ac22c48182c66", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 78093, "upload_time": "2017-10-03T07:41:23", "url": "https://files.pythonhosted.org/packages/78/70/c85cf4a21a2415f6549055baed6a1ebc50f9af0f4b339b16fa088fd3e594/publicsuffixlist-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f890695c5e9160239a43671383e4374e", "sha256": "ba173f12ea3dcb27f3d90d77e16fd525b60df5662a465feed10efbba58d5530f" }, "downloads": -1, "filename": "publicsuffixlist-0.5.0.tar.gz", "has_sig": false, "md5_digest": "f890695c5e9160239a43671383e4374e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79286, "upload_time": "2017-10-03T07:41:25", "url": "https://files.pythonhosted.org/packages/0b/ab/88d2c0c4d5bd5543c64c989553f8038afedfd49e272ffa0f893aa98f94b7/publicsuffixlist-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "b9187ceca5da58fe9188e43d5d7fa76b", "sha256": "27aff29567805f56ca468484891a02efdb16e2eeb946e36a4bd248f9c395c264" }, "downloads": -1, "filename": "publicsuffixlist-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b9187ceca5da58fe9188e43d5d7fa76b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 79334, "upload_time": "2018-03-31T02:15:29", "url": "https://files.pythonhosted.org/packages/4e/69/533c5ef605ba5b93e07267fd86efee87b8a3758f8d865070da0f15d71f46/publicsuffixlist-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc29f4b324711f8ad31cf3070af95e61", "sha256": "1adbdd7f88e83c76af59e0c77682eb315ae92b3bf850907d5a776e3d89bbe86d" }, "downloads": -1, "filename": "publicsuffixlist-0.5.1.tar.gz", "has_sig": false, "md5_digest": "fc29f4b324711f8ad31cf3070af95e61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80234, "upload_time": "2018-03-31T02:15:31", "url": "https://files.pythonhosted.org/packages/5a/a5/8fd0ead78121bd58312658b406a622ef22193785e03f691696712f574653/publicsuffixlist-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "a0159344b86bb79eb3ead54b3ef4f9b0", "sha256": "6aed31a42edbdfbf8b4fe98a3373bcda689680962aa1650be1add7fb09485b89" }, "downloads": -1, "filename": "publicsuffixlist-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a0159344b86bb79eb3ead54b3ef4f9b0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77701, "upload_time": "2018-05-15T14:01:28", "url": "https://files.pythonhosted.org/packages/95/fe/fd3a15cedf662b928445b648f796fcc687cf84c2815149834dd89292195d/publicsuffixlist-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15e2d9ecaeee57ecfe4538fc196f6524", "sha256": "c6106ca70427c4184a599b806cac191b35b395190561be2b2790ad89d1dcf92f" }, "downloads": -1, "filename": "publicsuffixlist-0.6.0.tar.gz", "has_sig": false, "md5_digest": "15e2d9ecaeee57ecfe4538fc196f6524", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81077, "upload_time": "2018-05-15T14:01:30", "url": "https://files.pythonhosted.org/packages/0c/2f/2e7cbaa0e39865ab012e50686c7509deba0e8752b7f77ef47b3eb99ba293/publicsuffixlist-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "c31ee4ec2e744b7addb2bab3190b1f82", "sha256": "9ee35dcf14fd82fe71079705a13d82a6f8f2ba7884092e7fdb4cccf4478251de" }, "downloads": -1, "filename": "publicsuffixlist-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c31ee4ec2e744b7addb2bab3190b1f82", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77732, "upload_time": "2018-05-18T09:14:29", "url": "https://files.pythonhosted.org/packages/bb/77/3870c619f8c22bc9b693c6b77f5702ea050df7f0850287409ba7efab45a9/publicsuffixlist-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c57055910a4ac292c0f6cd185b6901a6", "sha256": "78d80a7a6f5da4eb2164f0b5ed4442960ff2271d22add2e2d54de6e8d7af5d1c" }, "downloads": -1, "filename": "publicsuffixlist-0.6.1.tar.gz", "has_sig": false, "md5_digest": "c57055910a4ac292c0f6cd185b6901a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81124, "upload_time": "2018-05-18T09:14:31", "url": "https://files.pythonhosted.org/packages/2c/b3/4f9de7d54ec2b17e3e16a955aa0d994b417c398049bc54c260a5ead9347a/publicsuffixlist-0.6.1.tar.gz" } ], "0.6.10": [ { "comment_text": "", "digests": { "md5": "d4624f2401fbd857a350279806584989", "sha256": "00287e611556663354ace5827c8dde4c9602b6e49aba190f436626f29dc85ce2" }, "downloads": -1, "filename": "publicsuffixlist-0.6.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d4624f2401fbd857a350279806584989", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 86301, "upload_time": "2019-08-03T19:32:45", "url": "https://files.pythonhosted.org/packages/4c/b9/db400b3495c7da799722ebb6b04c4dd2fe2ef24a7e7b79f9672c3d6195ef/publicsuffixlist-0.6.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36076aa21f9a643b8b13361e0050c06e", "sha256": "b29653ddfbdc546bf8af6a560f86b67ba462b202a9738b91d07e2f3d58c7d413" }, "downloads": -1, "filename": "publicsuffixlist-0.6.10.tar.gz", "has_sig": false, "md5_digest": "36076aa21f9a643b8b13361e0050c06e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85435, "upload_time": "2019-08-03T19:32:47", "url": "https://files.pythonhosted.org/packages/38/e9/0cb23d60e07fbaa31344d346efc55a91720957fe4e6e2c2d14e25dc65b2f/publicsuffixlist-0.6.10.tar.gz" } ], "0.6.11": [ { "comment_text": "", "digests": { "md5": "e7bbf8a74b12cfe13a841b068d96fd7d", "sha256": "773a9dea9ab157fa41a2e96c28176feb64313519f5c26fc0cdf77231c0c7b77d" }, "downloads": -1, "filename": "publicsuffixlist-0.6.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7bbf8a74b12cfe13a841b068d96fd7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 86214, "upload_time": "2019-08-24T17:41:55", "url": "https://files.pythonhosted.org/packages/55/a3/5235cee5943737c26fced49b7c7bb8225860a9fb2ace92d325e000543373/publicsuffixlist-0.6.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5430c16f9623d0811cc2d81ff793f3e", "sha256": "3aa0a5996d1dbdd965a22cf22f9922c52a706a82e3589fe91625d795d8a00e4a" }, "downloads": -1, "filename": "publicsuffixlist-0.6.11.tar.gz", "has_sig": false, "md5_digest": "e5430c16f9623d0811cc2d81ff793f3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85356, "upload_time": "2019-08-24T17:41:57", "url": "https://files.pythonhosted.org/packages/29/14/ff6affd0ea9512e4d87634d5a6e957c68d7ed2eda676edc54d7b417b0846/publicsuffixlist-0.6.11.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "0b3c1227c1f4f5e436024d9882feed1c", "sha256": "d6264c5aab90392423ef79a3eccae53bf12eb765af832732e95538dfbd5e0314" }, "downloads": -1, "filename": "publicsuffixlist-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b3c1227c1f4f5e436024d9882feed1c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77752, "upload_time": "2018-08-04T18:15:42", "url": "https://files.pythonhosted.org/packages/67/bc/d062f1e74143bba26e179de2e41983b4ef2de267faf9dec727ea4d1bf846/publicsuffixlist-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d42fc1be890ecaa52c4b3b85641fad79", "sha256": "bbcfca8f251afdf38ce8c4f98b6f53fe9b214f09686095e4817776e31c60813a" }, "downloads": -1, "filename": "publicsuffixlist-0.6.2.tar.gz", "has_sig": false, "md5_digest": "d42fc1be890ecaa52c4b3b85641fad79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81153, "upload_time": "2018-08-04T18:15:44", "url": "https://files.pythonhosted.org/packages/18/47/c8a4c27a7dc828655f4cbdb351c3648167596cff860d606d6d53434fa023/publicsuffixlist-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "edcf0c1eb4fa9414bf1a911aaa90899f", "sha256": "076e7b526a9ee2271aff107eca3c03c99d6b3075f82b86393c3e38cf0984f7e8" }, "downloads": -1, "filename": "publicsuffixlist-0.6.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "edcf0c1eb4fa9414bf1a911aaa90899f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83257, "upload_time": "2018-12-21T03:51:06", "url": "https://files.pythonhosted.org/packages/be/8d/e54ef61819ce870e9fc294ea41e167dfa3aea049ea5e58c64b162e4fd384/publicsuffixlist-0.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed85e190f4f82125fb02e344323da0db", "sha256": "4f7eac42b60e6c2b0dd5aa23e15b93b34a607142d0686d0a0a4faca81dfd4b0c" }, "downloads": -1, "filename": "publicsuffixlist-0.6.3.tar.gz", "has_sig": false, "md5_digest": "ed85e190f4f82125fb02e344323da0db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82390, "upload_time": "2018-12-21T03:50:17", "url": "https://files.pythonhosted.org/packages/7d/f9/3f3b7238e50c7d5605995a8e6b792b6328eb88d181e9d9ea140d027aabb0/publicsuffixlist-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "6b2f67bbdcf1c3967cbb96a9b6f0ce3a", "sha256": "1be9727a6fb09aec10867d0f28cdd19c518681050dc217820743b27bf4500eeb" }, "downloads": -1, "filename": "publicsuffixlist-0.6.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b2f67bbdcf1c3967cbb96a9b6f0ce3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83954, "upload_time": "2019-02-17T16:22:14", "url": "https://files.pythonhosted.org/packages/91/b2/b7ede8c62908e91fd18a9431dca788aa87368d2c199eee9fef5fa765fb8e/publicsuffixlist-0.6.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fba5ad5c4c1f52e4573821e2322f844", "sha256": "738afd3c8efa4d3805006353eeb373524ffb6c175f405c22d70cfaef0be0bef4" }, "downloads": -1, "filename": "publicsuffixlist-0.6.4.tar.gz", "has_sig": false, "md5_digest": "4fba5ad5c4c1f52e4573821e2322f844", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83082, "upload_time": "2019-02-17T16:22:16", "url": "https://files.pythonhosted.org/packages/b1/a0/f8f68e747aa04a14270a7cfb5bd58ee21e34ff67337f22e350897b8f02c7/publicsuffixlist-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "9675433692a191a77b9f058fd1954f76", "sha256": "f1bd91681d21b7e01e1d43831342cb0b78cff956a0fad42c1ecbe192276a0839" }, "downloads": -1, "filename": "publicsuffixlist-0.6.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9675433692a191a77b9f058fd1954f76", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83945, "upload_time": "2019-03-12T01:25:26", "url": "https://files.pythonhosted.org/packages/99/32/5ab2991e82577100095e543759666a4988ae25181c692b2eb5c89a8c884d/publicsuffixlist-0.6.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebb79702ad15fa0cea237ab668ccc4ae", "sha256": "76ce8397db1cce0c86a9cfb310f97a285c79c2c2a4ba2e68935d8b7cfaa81b57" }, "downloads": -1, "filename": "publicsuffixlist-0.6.5.tar.gz", "has_sig": false, "md5_digest": "ebb79702ad15fa0cea237ab668ccc4ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83072, "upload_time": "2019-03-12T01:25:28", "url": "https://files.pythonhosted.org/packages/79/aa/e3046cec0133c5e1a36cd8a1c1171b7113acd500b5742adf7cca325dd818/publicsuffixlist-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "335f32edec44662ca53e4cb2e5b5f0a3", "sha256": "b5ce9b2c94fd07e575c84d69ccb08471303d8193fe63afeeb31b58ffaada40fb" }, "downloads": -1, "filename": "publicsuffixlist-0.6.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "335f32edec44662ca53e4cb2e5b5f0a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 84202, "upload_time": "2019-04-07T07:57:27", "url": "https://files.pythonhosted.org/packages/fe/00/56c71cfcaf35f33febe36439dab8b64d91fe8f06da9b5dc40a22c4465c06/publicsuffixlist-0.6.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d634bb32961c3b288bcfa95865b5156", "sha256": "e89ec1c5e73149e310495746a8d383f54bbb070a808680892189b6c4893331cb" }, "downloads": -1, "filename": "publicsuffixlist-0.6.6.tar.gz", "has_sig": false, "md5_digest": "1d634bb32961c3b288bcfa95865b5156", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83311, "upload_time": "2019-04-07T07:57:28", "url": "https://files.pythonhosted.org/packages/4a/c3/9bd2b75d5e642fc32b6f90537852f3b935a4ee4ac85f3efeda3f06e1d260/publicsuffixlist-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "b952565d3385e429da92d008cf817bf5", "sha256": "d8c4829bc0763be50a84886739a8b8bfe93ffc6ce0e4f935f2c5d7c5ea147a0a" }, "downloads": -1, "filename": "publicsuffixlist-0.6.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b952565d3385e429da92d008cf817bf5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 84356, "upload_time": "2019-05-02T21:18:34", "url": "https://files.pythonhosted.org/packages/59/91/75dee50e8b09b2a36b5b98e42ed83046b4d04e7cf896b6e927825a07f786/publicsuffixlist-0.6.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a05c932bb3c96bf059b0cf4d80eb0d21", "sha256": "b3203bed5dbcb1895d8422dd0da1f7c35408dbea418c788676b876dcf70d7cbe" }, "downloads": -1, "filename": "publicsuffixlist-0.6.7.tar.gz", "has_sig": false, "md5_digest": "a05c932bb3c96bf059b0cf4d80eb0d21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83470, "upload_time": "2019-05-02T21:18:35", "url": "https://files.pythonhosted.org/packages/cc/3d/e74159c6d707f54229ba3a9a9936d20e560e2d34c2414eb722877e641b4b/publicsuffixlist-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "545f970018fe94d8323d062843d89038", "sha256": "4400bd45c77bc6f1c7b4344ca42064bad553fe9366702fc6d23e6410405c34aa" }, "downloads": -1, "filename": "publicsuffixlist-0.6.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "545f970018fe94d8323d062843d89038", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 85870, "upload_time": "2019-06-08T06:13:58", "url": "https://files.pythonhosted.org/packages/c8/15/9670b0a090a1ce67b057c98c8e4b1d65b72b16c7cede35a50c90443d41c8/publicsuffixlist-0.6.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16f089d43d5abd6897b5fd97cea490f3", "sha256": "1d7c2c0f51e7e28243b84d517ad455a45325d1d99e8f4e94c5aa8e66ce049e80" }, "downloads": -1, "filename": "publicsuffixlist-0.6.8.tar.gz", "has_sig": false, "md5_digest": "16f089d43d5abd6897b5fd97cea490f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85034, "upload_time": "2019-06-08T06:14:00", "url": "https://files.pythonhosted.org/packages/4b/a1/cc1e0295f9587a11f0d9b6ed2bce759b7c3ddddffcea96e13f5a5e376e8b/publicsuffixlist-0.6.8.tar.gz" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "cf624004fd045e23d4c89f17c406fee0", "sha256": "e1c5c901428b4046711e55be1e929d21ce87724a675a78afcd98fcefe3288c8f" }, "downloads": -1, "filename": "publicsuffixlist-0.6.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf624004fd045e23d4c89f17c406fee0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 86062, "upload_time": "2019-07-13T11:38:38", "url": "https://files.pythonhosted.org/packages/99/b1/c7d3744d3d056447045787ba5a0f2c341b913fdbf40e07451951b972094c/publicsuffixlist-0.6.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8aa333c52b7efc280ba7b513cae8800f", "sha256": "8298606acd4ab115f4ba4db9fa551ed6374b351a72474ae6eb8181802eb6909e" }, "downloads": -1, "filename": "publicsuffixlist-0.6.9.tar.gz", "has_sig": false, "md5_digest": "8aa333c52b7efc280ba7b513cae8800f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85217, "upload_time": "2019-07-13T11:38:40", "url": "https://files.pythonhosted.org/packages/8d/22/f5e3fafbdeb44be8343a5b7d1fbc9a1db21197ffcbfa9987ca6af0b99450/publicsuffixlist-0.6.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e7bbf8a74b12cfe13a841b068d96fd7d", "sha256": "773a9dea9ab157fa41a2e96c28176feb64313519f5c26fc0cdf77231c0c7b77d" }, "downloads": -1, "filename": "publicsuffixlist-0.6.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7bbf8a74b12cfe13a841b068d96fd7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 86214, "upload_time": "2019-08-24T17:41:55", "url": "https://files.pythonhosted.org/packages/55/a3/5235cee5943737c26fced49b7c7bb8225860a9fb2ace92d325e000543373/publicsuffixlist-0.6.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5430c16f9623d0811cc2d81ff793f3e", "sha256": "3aa0a5996d1dbdd965a22cf22f9922c52a706a82e3589fe91625d795d8a00e4a" }, "downloads": -1, "filename": "publicsuffixlist-0.6.11.tar.gz", "has_sig": false, "md5_digest": "e5430c16f9623d0811cc2d81ff793f3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85356, "upload_time": "2019-08-24T17:41:57", "url": "https://files.pythonhosted.org/packages/29/14/ff6affd0ea9512e4d87634d5a6e957c68d7ed2eda676edc54d7b417b0846/publicsuffixlist-0.6.11.tar.gz" } ] }