Metadata-Version: 1.1
Name: tlds
Version: 2022010300
Summary: Automatically updated list of valid TLDs taken directly from IANA
Home-page: https://github.com/kichik/tlds
Author: Amir Szekely
Author-email: kichik@gmail.com
License: MIT
Description: ###################################################
        Automatically updated list of valid TLDs for Python
        ###################################################
        
        The `tlds` module provides a a set of valid TLDs directly taken from IANA_. The package is automatically updated daily.
        
        Available on PyPI_.
        
        .. _IANA: http://data.iana.org/TLD/tlds-alpha-by-domain.txt
        .. _PyPI: https://pypi.org/pypi/tlds/
        
        .. image:: https://github.com/kichik/tlds/workflows/tlds%20build/badge.svg
           :target: https://github.com/kichik/tlds/actions
        
        .. image:: https://badge.fury.io/py/tlds.svg
            :target: https://badge.fury.io/py/tlds
        
        Usage
        -----
        
          >>> from tlds import tld_set
          >>> 'com' in tld_set
          True
          >>> 'foobar' in tld_set
          False
          >>> 'pizza' in tld_set
          True
          >>>
        
Keywords: tld
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Communications
