{ "info": { "author": "nexB Inc., Tomaz Solc and David Wilson", "author_email": "info@nexb.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Internet :: Name Service (DNS)", "Topic :: Utilities" ], "description": "Public Suffix List module for Python\n====================================\n\nThis module allows you to get the public suffix, as well as the registrable domain,\nof a domain name using the Public Suffix List from http://publicsuffix.org\n\nA public suffix is a domain suffix under which you can register domain\nnames, or under which the suffix owner does not control the subdomains.\nSome examples of public suffixes in the former example are \".com\",\n\".co.uk\" and \"pvt.k12.wy.us\"; examples of the latter case are \"github.io\" and\n\"blogspot.com\". The public suffix is sometimes referred to as the effective\nor extended TLD (eTLD).\nAccurately knowing the public suffix of a domain is useful when handling\nweb browser cookies, highlighting the most important part of a domain name\nin a user interface or sorting URLs by web site. It is also used in a wide range\nof research and applications that leverages Domain Name System (DNS) data.\n\nThis module builds the public suffix list as a Trie structure, making it more efficient\nthan other string-based modules available for the same purpose. It can be used\neffectively in large-scale distributed environments, such as PySpark.\n\nThis Python module includes with a copy of the Public Suffix List (PSL) so that it is\nusable out of the box. Newer versions try to provide reasonably fresh copies of\nthis list. It also includes a convenience method to fetch the latest list. The PSL does\nchange regularly.\n\nThe code is a fork of the publicsuffix package and includes the same base API. In\naddition, it contains a few variants useful for certain use cases, such as the option to\nignore wildcards or return only the extended TLD (eTLD). You just need to import publicsuffix2 instead.\n\nThe public suffix list is now provided in UTF-8 format. To correctly process\nIDNA-encoded domains, either the query or the list must be converted. By default, the\nmodule converts the PSL. If your use case includes UTF-8 domains, e.g., '\u98df\u72ee.com.cn',\nyou'll need to set the IDNA-encoding flag to False on instantiation (see examples below).\nFailure to use the correct encoding for your use case can lead to incorrect results for\ndomains that utilize unicode characters.\n\nThe code is MIT-licensed and the publicsuffix data list is MPL-2.0-licensed.\n\n\n\nUsage\n-----\n\nInstall with::\n\n pip install publicsuffix2\n\nThe module provides functions to obtain the base domain, or sld, of an fqdn, as well as one\nto get just the public suffix. In addition, the functions a number of boolean parameters that\ncontrol how wildcards are handled. In addition to the functions, the module exposes a class that\nparses the PSL, and allows for more control.\n\nThe module provides two equivalent functions to query a domain name, and return the base domain,\nor second-level-doamin; get_public_suffix() and get_sld()::\n\n >>> from publicsuffix2 import get_public_suffix\n >>> get_public_suffix('www.example.com')\n 'example.com'\n >>> get_sld('www.example.com')\n 'example.com'\n >>> get_public_suffix('www.example.co.uk')\n 'example.co.uk'\n >>> get_public_suffix('www.super.example.co.uk')\n 'example.co.uk'\n\nThis function loads and caches the public suffix list. To obtain the latest version of the\nPSL, use the fetch() function to first download the latest version. Alternatively, you can pass\na custom list.\n\nFor more control, there is also a class that parses a Public\nSuffix List and allows the same queries on individual domain names::\n\n >>> from publicsuffix2 import PublicSuffixList\n >>> psl = PublicSuffixList()\n >>> psl.get_public_suffix('www.example.com')\n 'example.com'\n >>> psl.get_public_suffix('www.example.co.uk')\n 'example.co.uk'\n >>> psl.get_public_suffix('www.super.example.co.uk')\n 'example.co.uk'\n >>> psl.get_sld('www.super.example.co.uk')\n 'example.co.uk'\n\nNote that the ``host`` part of an URL can contain strings that are\nnot plain DNS domain names (IP addresses, Punycode-encoded names, name in\ncombination with a port number or a username, etc.). It is up to the\ncaller to ensure only domain names are passed to the get_public_suffix()\nmethod.\n\nThe get_public_suffix() function and the PublicSuffixList class initializer accept\nan optional argument pointing to a public suffix file. This can either be a file\npath, an iterable of public suffix lines, or a file-like object pointing to an\nopened list::\n\n >>> from publicsuffix2 import get_public_suffix\n >>> psl_file = 'path to some psl data file'\n >>> get_public_suffix('www.example.com', psl_file)\n 'example.com'\n\nNote that when using get_public_suffix() a global cache keeps the latest provided\nsuffix list data. This will use the cached latest loaded above::\n\n >>> get_public_suffix('www.example.co.uk')\n 'example.co.uk'\n\n**IDNA-encoding.** The public suffix list is now in UTF-8 format. For those use cases that\ninclude IDNA-encoded domains, the list must be converted. Publicsuffix2 includes idna\nencoding as a parameter of the PublicSuffixList initialization and is true by\ndefault. For UTF-8 use cases, set the idna parameter to False::\n\n >>> from publicsuffix2 import PublicSuffixList\n >>> psl = PublicSuffixList(idna=True) # on by default\n >>> psl.get_public_suffix('www.google.com')\n 'google.com'\n >>> psl = PublicSuffixList(idna=False) # use UTF-8 encodings\n >>> psl.get_public_suffix('\u98df\u72ee.com.cn')\n '\u98df\u72ee.com.cn'\n\n**Ignore wildcards.** In some use cases, particularly those related to large-scale domain processing,\nthe user might want to ignore wildcards to create more aggregation. This is possible by setting\nthe parameter wildcard=False.::\n\n >>> psl.get_public_suffix('telinet.com.pg', wildcard=False)\n 'com.pg'\n >>> psl.get_public_suffix('telinet.com.pg', wildcard=True)\n 'telinet.com.pg'\n\n**Require valid eTLDs (strict).** In the publicsuffix2 module, a domain with an invalid TLD will still return\nreturn a base domain, e.g,::\n\n >>> psl.get_public_suffix('www.mine.local')\n 'mine.local'\n\nThis is useful for many use cases, while in others, we want to ensure that the domain includes a\nvalid eTLD. In this case, the boolean parameter strict provides a solution. If this flag is set,\nan invalid TLD will return None.::\n\n >>> psl.get_public_suffix('www.mine.local', strict=True) is None\n True\n\n**Return eTLD only.** The standard use case for publicsuffix2 is to return the registrable,\nor base, domain\naccording to the public suffix list. In some cases, however, we only wish to find the eTLD\nitself. This is available via the get_tld() method.::\n\n >>> psl.get_tld('www.google.com')\n 'com'\n >>> psl.get_tld('www.google.co.uk')\n 'co.uk'\n\nAll of the methods and functions include the wildcard and strict parameters.\n\nFor convenience, the public method get_sld() is available. This is identical to the method\nget_public_suffix() and is intended to clarify the output for some users.\n\nTo **update the bundled suffix list** use the provided setup.py command::\n\n python setup.py update_psl\n\nThe update list will be saved in `src/publicsuffix2/public_suffix_list.dat`\nand you can build a new wheel with this bundled data.\n\nAlternatively, there is a fetch() function that will fetch the latest version\nof a Public Suffix data file from https://publicsuffix.org/list/public_suffix_list.dat\nYou can use it this way::\n\n >>> from publicsuffix2 import get_public_suffix\n >>> from publicsuffix2 import fetch\n >>> psl_file = fetch()\n >>> get_public_suffix('www.example.com', psl_file)\n 'example.com'\n\nNote that the once loaded, the data file is cached and therefore fetched only\nonce.\n\nThe extracted public suffix list, that is the tlds and their modifiers, is put into\nan instance variable, tlds, which can be accessed as an attribute, tlds.::\n\n >>> psl = PublicSuffixList()\n >>> psl.tlds[:5]\n ['ac',\n 'com.ac',\n 'edu.ac',\n 'gov.ac',\n 'net.ac']\n\n**Using the module in large-scale processing**\nIf using this library in large-scale pyspark processing, you should instantiate the class as\na global variable, not within a user function. The class methods can then be used within user\nfunctions for distributed processing.\n\nSource\n------\n\nGet a local copy of the development repository. The development takes\nplace in the ``develop`` branch. Stable releases are tagged in the ``master``\nbranch::\n\n git clone https://github.com/nexB/python-publicsuffix2.git\n\n\nHistory\n-------\nThis code is forked from Toma\u017e \u0160olc's fork of David Wilson's code.\n\nDavid Wilson's code originally at:\n\nhttps://www.tablix.org/~avian/git/publicsuffix.git\n\nCopyright (c) 2014 Toma\u017e \u0160olc \n\nDavid Wilson's code was originally at:\n\nfrom http://code.google.com/p/python-public-suffix-list/\n\nCopyright (c) 2009 David Wilson\n\n\nLicense\n-------\n\nThe code is MIT-licensed.\nThe vendored public suffix list data from Mozilla is under the MPL-2.0.\n\nCopyright (c) 2015 nexB Inc.\n\nCopyright (c) 2014 Toma\u017e \u0160olc \n\nCopyright (c) 2009 David Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n\nChangelog\n---------\n\n2019-08-12 publicsuffix2 2.20190812\n\n * Fix regression in available tlds.\n * Format and streamline code.\n\n\n2019-08-11 publicsuffix2 2.20190811\n\n * Update publicsuffix.file to the latest version from Mozilla.\n\n\n2019-08-08 publicsuffix2 2.20190808\n\n * Add additional functionality and handles change to PSL format\n * Add attribute to retrieve the PSL as a list\n\n\n2019-02-05 publicsuffix2 2.201902051213\n\n * Update publicsuffix.file to the latest version from Mozilla.\n * Restore a fetch() function by popular demand\n\n\n2018-12-13 publicsuffix2 2.20181213\n\n * Update publicsuffix.file to the latest version from Mozilla.\n\n\n2018-10-01 publicsuffix2 2.20180921.2\n\n * Update publicsuffix.file to the latest version from Mozilla.\n * Breaking API change: publicsuffix module renamed to publicsuffix2\n\n\n2016-08-18 publicsuffix2 2.20160818\n\n * Update publicsuffix.file to the latest version from Mozilla.\n\n\n2016-06-21 publicsuffix2 2.20160621\n\n * Update publicsuffix.file to the latest version from Mozilla.\n * Adopt new version scheme: major.\n\n\n2015-10-12 publicsuffix2 2.1.0\n\n * Merged latest updates from publicsuffix\n * Added new convenience top level get_public_suffix_function caching\n a loaded list if needed.\n * Updated publicsuffix.file to the latest version from Mozilla.\n * Added an update_psl setup command to fetch and vendor the latest list\n Use as: python setup.py update_psl\n\n\n2015-06-04 publicsuffix2 2.0.0\n\n * Forked publicsuffix, but kept the same API\n * Updated publicsuffix.file to the latest version from Mozilla.\n * Changed packaging to have the suffix list be package data\n and be wheel friendly.\n * Use spaces indentation, not tabs\n\n\n2014-01-14 publicsuffix 1.0.5\n\n * Correctly handle fully qualified domain names (thanks to Matth\u00e4us\n Wander).\n * Updated publicsuffix.txt to the latest version from Mozilla.\n\n2013-01-02 publicsuffix 1.0.4\n\n * Added missing change log.\n\n2013-01-02 publicsuffix 1.0.3\n\n * Updated publicsuffix.txt to the latest version from Mozilla.\n * Added trove classifiers.\n * Minor update of the README.\n\n2011-10-10 publicsuffix 1.0.2\n\n * Compatibility with Python 3.x (thanks to Joern\n Koerner) and Python 2.5\n\n2011-09-22 publicsuffix 1.0.1\n\n * Fixed installation issue under virtualenv (thanks to\n Mark McClain)\n\n2011-07-29 publicsuffix 1.0.0\n\n * First release\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/nexb/python-publicsuffix2", "keywords": "domain,public suffix,suffix,dns,tld,sld,psl,idna", "license": "MIT and MPL-2.0", "maintainer": "", "maintainer_email": "", "name": "publicsuffix2", "package_url": "https://pypi.org/project/publicsuffix2/", "platform": "", "project_url": "https://pypi.org/project/publicsuffix2/", "project_urls": { "Homepage": "https://github.com/nexb/python-publicsuffix2" }, "release_url": "https://pypi.org/project/publicsuffix2/2.20190812/", "requires_dist": null, "requires_python": "", "summary": "Get a public suffix for a domain name using the Public Suffix List. Forked from and using the same API as the publicsuffix package.", "version": "2.20190812" }, "last_serial": 5666751, "releases": { "2.0.0": [ { "comment_text": "", "digests": { "md5": "a5202b5a583aa9a0f6ce1df11827b3da", "sha256": "bbf090cfac7f3b6501c6730c98323112414e94abf3f82083761841487a889b99" }, "downloads": -1, "filename": "publicsuffix2-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5202b5a583aa9a0f6ce1df11827b3da", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 66811, "upload_time": "2015-06-04T20:02:30", "url": "https://files.pythonhosted.org/packages/d1/61/1fd413024ad1987bd81f1da0a639d597198abde2fa9d8b46366598f5acae/publicsuffix2-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05c1be623cfd1cc62ceb1de63b52b490", "sha256": "944e26aa2d3a5f78c630e029e671fe4426caf28d330c6a2bd9dfb42c5c744465" }, "downloads": -1, "filename": "publicsuffix2-2.0.0.tar.gz", "has_sig": false, "md5_digest": "05c1be623cfd1cc62ceb1de63b52b490", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66079, "upload_time": "2015-06-04T20:02:26", "url": "https://files.pythonhosted.org/packages/50/17/199f7bd44d501d8ba630b9df4cdaeddf1239967aa9203b67ce7076fbd26c/publicsuffix2-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "bb38b3913b53b601417c8aa3325eb5c6", "sha256": "03354bc5aa9d6af3b86904de0d3f891cf7247cb271d394e0690ddb3141a781b7" }, "downloads": -1, "filename": "publicsuffix2-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb38b3913b53b601417c8aa3325eb5c6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 66842, "upload_time": "2015-06-04T22:05:20", "url": "https://files.pythonhosted.org/packages/b3/de/7011fc7d06afc2319813df5063f196c4ef518d4c365179ed38d71ea236e1/publicsuffix2-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e66a7f9fb5f4c8e5a4993c223bcd5f9", "sha256": "1f954d1de6b872dba4136a7633f17be66dafe48bdda777679f24cd5e91bc1174" }, "downloads": -1, "filename": "publicsuffix2-2.0.1.tar.gz", "has_sig": false, "md5_digest": "2e66a7f9fb5f4c8e5a4993c223bcd5f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66159, "upload_time": "2015-06-04T22:05:17", "url": "https://files.pythonhosted.org/packages/24/d6/eb424bc59722bbbfb710ccf7c8bcea8c9ea2f0549761b610cc5aebbb6ec2/publicsuffix2-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "7a90589de25338fa17b26018b8153da1", "sha256": "8fd7af0aba9adff5b1f4febb845bbb7be7ee16cda5ca7c9dae144e424f39d8ce" }, "downloads": -1, "filename": "publicsuffix2-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a90589de25338fa17b26018b8153da1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 81068, "upload_time": "2015-10-12T20:50:46", "url": "https://files.pythonhosted.org/packages/d9/7d/b27abed48404f961c365ba3d5a431270059f1da1d891e01d3750aec2492a/publicsuffix2-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "529a1239095014a53e54f380f8e037be", "sha256": "741a117d1b8284af7b42d4ceeed159d4ad6d361ef82d24a09c9c6cf48d26e71e" }, "downloads": -1, "filename": "publicsuffix2-2.1.0.tar.gz", "has_sig": false, "md5_digest": "529a1239095014a53e54f380f8e037be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79858, "upload_time": "2015-10-12T20:50:41", "url": "https://files.pythonhosted.org/packages/46/0e/a47f134706f36947925bd7ca7ef8b506a2577779a274028def47aa18ea19/publicsuffix2-2.1.0.tar.gz" } ], "2.20160621": [ { "comment_text": "", "digests": { "md5": "8456a48cecfc4680c2b1ce32430e0ad0", "sha256": "cffae84ea9fa66aba3fe3cc3a1dcda9a23e3d116c429f07c8eccd124939a8268" }, "downloads": -1, "filename": "publicsuffix2-2.20160621-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8456a48cecfc4680c2b1ce32430e0ad0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 83968, "upload_time": "2016-06-21T08:56:35", "url": "https://files.pythonhosted.org/packages/06/2b/b23a2cd3d45c19e9b3e735dbdc6573d12029c323b67bc1613383dad7328f/publicsuffix2-2.20160621-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "91c465bb1d0119614b9e7ac267c3de0b", "sha256": "6d66250eb2657e2b8e7a23daf0ff4a3803fcec30c75638182c4df1f606309d1a" }, "downloads": -1, "filename": "publicsuffix2-2.20160621.tar.bz2", "has_sig": false, "md5_digest": "91c465bb1d0119614b9e7ac267c3de0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75702, "upload_time": "2016-06-21T08:56:24", "url": "https://files.pythonhosted.org/packages/e5/af/30d00b8dc021eb82f38ff9aeb455f3c7d9b9a254d5dfb6ea4726a05080ea/publicsuffix2-2.20160621.tar.bz2" }, { "comment_text": "", "digests": { "md5": "14f1a4c37b592613ace59e0542b32f7a", "sha256": "c516d384d9537a0c1f5ef5b13473f1ea0ed3b0146deda0f4b3d6a21e9b8eefb3" }, "downloads": -1, "filename": "publicsuffix2-2.20160621.zip", "has_sig": false, "md5_digest": "14f1a4c37b592613ace59e0542b32f7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91402, "upload_time": "2016-06-21T08:56:30", "url": "https://files.pythonhosted.org/packages/be/9b/d91be66385d7d6dc68bd1f782fc7dd1ce459671fc26dc42e0b4011e5e69b/publicsuffix2-2.20160621.zip" } ], "2.20160818": [ { "comment_text": "", "digests": { "md5": "4dd5ab933d2085b7c667a0c2add0e85b", "sha256": "31d84a12b7eb937ec2ef27493f57a7fb2b2633c259806fc3ba180ee3d03942bc" }, "downloads": -1, "filename": "publicsuffix2-2.20160818-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4dd5ab933d2085b7c667a0c2add0e85b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 85217, "upload_time": "2016-08-18T15:43:27", "url": "https://files.pythonhosted.org/packages/39/43/6148f7ecd25e0f945fc275ddf041d7a00f781b6ba06b3a1d75161ddc7860/publicsuffix2-2.20160818-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b488f4e88e26c5e00bd581ff29558682", "sha256": "c86464922db7fcc60b0749f5ac1fd9064e138aea5fcee04d3c76eea4a62f65ad" }, "downloads": -1, "filename": "publicsuffix2-2.20160818.tar.bz2", "has_sig": false, "md5_digest": "b488f4e88e26c5e00bd581ff29558682", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75842, "upload_time": "2016-08-18T15:43:18", "url": "https://files.pythonhosted.org/packages/f3/a5/445b0fa732c6b788a1a8d1570e3d2cda5525c030b02660d261172e51597c/publicsuffix2-2.20160818.tar.bz2" }, { "comment_text": "", "digests": { "md5": "7f5abb82d88ea31f87baf4e0f57a5466", "sha256": "8346ecdde6660f5a891d11fe79f827ef514ff0f9b9a91b4d2740ad068c868a0f" }, "downloads": -1, "filename": "publicsuffix2-2.20160818.tar.gz", "has_sig": false, "md5_digest": "7f5abb82d88ea31f87baf4e0f57a5466", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82602, "upload_time": "2016-08-18T15:43:24", "url": "https://files.pythonhosted.org/packages/6e/9a/35fa66e6bab0cad700a5f6c951f8b00de0f0cff2513607bbfcd08826d477/publicsuffix2-2.20160818.tar.gz" }, { "comment_text": "", "digests": { "md5": "b38e6d193099bd07f8830141a78e7191", "sha256": "947e0cd265c2adc765311684e00e86d7e4b17f3fb62894eff6d1596bace17486" }, "downloads": -1, "filename": "publicsuffix2-2.20160818.zip", "has_sig": false, "md5_digest": "b38e6d193099bd07f8830141a78e7191", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90518, "upload_time": "2016-08-18T15:43:21", "url": "https://files.pythonhosted.org/packages/68/d7/c08b30db482f20f200c6a69c41adac6108acb9e9521777bf60d7abb5e43e/publicsuffix2-2.20160818.zip" } ], "2.20180921": [ { "comment_text": "", "digests": { "md5": "5337bd506ca48d3068f99f80ef0fbfe9", "sha256": "a79ccbbdbef15615431eafc89b6ec236672cf35a4be3873d443fa37ed0b4aa2b" }, "downloads": -1, "filename": "publicsuffix2-2.20180921-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5337bd506ca48d3068f99f80ef0fbfe9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 86670, "upload_time": "2018-09-21T13:20:57", "url": "https://files.pythonhosted.org/packages/9f/7e/6fffa68895e7d3a87ba782dcaffa5ef3e825287e33b56e13bb42e4ea2b63/publicsuffix2-2.20180921-py2.py3-none-any.whl" } ], "2.20180921.2": [ { "comment_text": "", "digests": { "md5": "1d84afdc16648c905243ea8e54747be0", "sha256": "1713534b6889ba5956693cd246d1a67ed98aeafa1c098bb0fa0c1a9258ba9a98" }, "downloads": -1, "filename": "publicsuffix2-2.20180921.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1d84afdc16648c905243ea8e54747be0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 86628, "upload_time": "2018-10-01T11:52:58", "url": "https://files.pythonhosted.org/packages/22/5b/08b90bdc99b32492ce696d029a9a9250e22425a3624f02ec1a723eddeeea/publicsuffix2-2.20180921.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "60333619b9a8828c64fa414e120963b2", "sha256": "02da1c3c775ce08c96dccc744dcd11b0aceb61612e6917c2bf5651a8b40661fd" }, "downloads": -1, "filename": "publicsuffix2-2.20180921.2.tar.gz", "has_sig": false, "md5_digest": "60333619b9a8828c64fa414e120963b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82493, "upload_time": "2018-10-01T11:53:00", "url": "https://files.pythonhosted.org/packages/8a/9d/f9c107d3ed36541990a1b41027f50ad40b106751aeb79bd7dc0015b922ae/publicsuffix2-2.20180921.2.tar.gz" } ], "2.20181213": [ { "comment_text": "", "digests": { "md5": "9b89e6c2aa0c03c54cc26f425d824b1b", "sha256": "75056f77b8d4f5b7863eba43188718ff345ff91533518c8376f222513fe017dd" }, "downloads": -1, "filename": "publicsuffix2-2.20181213-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b89e6c2aa0c03c54cc26f425d824b1b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 86768, "upload_time": "2018-12-14T10:42:30", "url": "https://files.pythonhosted.org/packages/da/db/cc3fa84eb91d3e16169be78c247671d9a236784e6300314128fdf5b3c053/publicsuffix2-2.20181213-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28688d5fd559b5fb7596929aa07cf050", "sha256": "11eb14474c05ec465cd9aa9425f67517f4d9b06b7a199d41cc6059f625d54b04" }, "downloads": -1, "filename": "publicsuffix2-2.20181213.tar.gz", "has_sig": false, "md5_digest": "28688d5fd559b5fb7596929aa07cf050", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83283, "upload_time": "2018-12-14T10:42:33", "url": "https://files.pythonhosted.org/packages/75/eb/790c070ff4771be093d18454bb6f27c5872f47c0e1628ce304a7037ea5a2/publicsuffix2-2.20181213.tar.gz" } ], "2.20190205": [ { "comment_text": "", "digests": { "md5": "4d1544e3ed9c406001bc40d8e4dd79fc", "sha256": "bfa42c5c15078b80f48e5f0dcf7f81dd1d8613e4cc7dc8dd6eb2c4f188b4918c" }, "downloads": -1, "filename": "publicsuffix2-2.20190205-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d1544e3ed9c406001bc40d8e4dd79fc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 87832, "upload_time": "2019-02-05T14:36:32", "url": "https://files.pythonhosted.org/packages/b8/f3/c47e19c8a37a6dd44f8395ab06732bb828b36c65ad470e5a34e8ac8fca02/publicsuffix2-2.20190205-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f4ab2a6260979b0f922b477209da03d", "sha256": "af5b257520d5c886d8d29a2893e52a3bb89bbeb785f04e7f68bba5f960d76c9d" }, "downloads": -1, "filename": "publicsuffix2-2.20190205.tar.gz", "has_sig": false, "md5_digest": "8f4ab2a6260979b0f922b477209da03d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84498, "upload_time": "2019-02-05T14:36:34", "url": "https://files.pythonhosted.org/packages/d6/85/9db8dad427476ed906adfec4e212e9edc9b040fb0b9928b4857f00933a82/publicsuffix2-2.20190205.tar.gz" } ], "2.20190811": [ { "comment_text": "", "digests": { "md5": "54346f01dca1d2a82fee9e3ed76cb875", "sha256": "7b3d40a6a5668f7a660337d69901786757436b676ce911263d46d17a45eee8f9" }, "downloads": -1, "filename": "publicsuffix2-2.20190811-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "54346f01dca1d2a82fee9e3ed76cb875", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 93865, "upload_time": "2019-08-11T14:48:41", "url": "https://files.pythonhosted.org/packages/85/07/091d677cf9d0930d29ad0509fa4ed1780f212a60c5f32f00ef34e01135ea/publicsuffix2-2.20190811-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "579dd3b37f71abe9ef143b8505618c4a", "sha256": "317b65cb31ca812a894532c295fa4d0c9affa8cf8da5f58451b6974fc9fea6b6" }, "downloads": -1, "filename": "publicsuffix2-2.20190811.tar.gz", "has_sig": false, "md5_digest": "579dd3b37f71abe9ef143b8505618c4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98161, "upload_time": "2019-08-11T14:48:44", "url": "https://files.pythonhosted.org/packages/68/8e/17165094572091c333f65543f369865a3eca5e1bc4b8912e1230013bd55f/publicsuffix2-2.20190811.tar.gz" } ], "2.20190812": [ { "comment_text": "", "digests": { "md5": "771a21d141396d5cac63fd0c5aa5d353", "sha256": "c0a6745167f0ccc1504774e6f59fc617fe08880e6cb706838471210429426747" }, "downloads": -1, "filename": "publicsuffix2-2.20190812-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "771a21d141396d5cac63fd0c5aa5d353", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 93982, "upload_time": "2019-08-12T14:27:26", "url": "https://files.pythonhosted.org/packages/71/ea/9e4ab5f73b57e6a4ad1f1824d99da7f4bad72bccfd7439ee6823ddecc7b0/publicsuffix2-2.20190812-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "160eb008ecddab85dfa33a7a171c5d89", "sha256": "990d0d080c6af538e6de608bf06e07b51962c6af5e9b0f20dae5511271ea5b87" }, "downloads": -1, "filename": "publicsuffix2-2.20190812.tar.gz", "has_sig": false, "md5_digest": "160eb008ecddab85dfa33a7a171c5d89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98348, "upload_time": "2019-08-12T14:27:28", "url": "https://files.pythonhosted.org/packages/61/be/304060d8c9e920e08ce1c4cbf25c6c6e92494a842f0a0afa498bc796ebb2/publicsuffix2-2.20190812.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "771a21d141396d5cac63fd0c5aa5d353", "sha256": "c0a6745167f0ccc1504774e6f59fc617fe08880e6cb706838471210429426747" }, "downloads": -1, "filename": "publicsuffix2-2.20190812-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "771a21d141396d5cac63fd0c5aa5d353", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 93982, "upload_time": "2019-08-12T14:27:26", "url": "https://files.pythonhosted.org/packages/71/ea/9e4ab5f73b57e6a4ad1f1824d99da7f4bad72bccfd7439ee6823ddecc7b0/publicsuffix2-2.20190812-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "160eb008ecddab85dfa33a7a171c5d89", "sha256": "990d0d080c6af538e6de608bf06e07b51962c6af5e9b0f20dae5511271ea5b87" }, "downloads": -1, "filename": "publicsuffix2-2.20190812.tar.gz", "has_sig": false, "md5_digest": "160eb008ecddab85dfa33a7a171c5d89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98348, "upload_time": "2019-08-12T14:27:28", "url": "https://files.pythonhosted.org/packages/61/be/304060d8c9e920e08ce1c4cbf25c6c6e92494a842f0a0afa498bc796ebb2/publicsuffix2-2.20190812.tar.gz" } ] }