Description: | This module allows you to get the public suffix, as well as the registrable
domain, of a domain name using the Public Suffix List from
http://publicsuffix.org
This module builds the public suffix list as a Trie structure, making it more
efficient than other string-based modules available for the same purpose. It can
be used effectively in large-scale distributed environments, such as PySpark.
The code is a fork of the publicsuffix package and includes the same base API.
In addition, it contains a few variants useful for certain use cases, such as
the option to ignore wildcards or return only the extended TLD (eTLD). You just
need to import publicsuffix2 instead. |