Metadata-Version: 2.1
Name: tlds
Version: 2018082401
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
Keywords: tld
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Communications

###################################################
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://travis-ci.org/kichik/tlds.svg?branch=master
   :target: https://travis-ci.org/kichik/tlds

.. 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
  >>>


