summaryrefslogtreecommitdiffhomepage
path: root/libs/tld/__init__.py
blob: d2eaaf0e344c50aa366442dea897098cf6ca260f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from .utils import (
    get_fld,
    get_tld,
    get_tld_names,
    is_tld,
    parse_tld,
    Result,
    update_tld_names,
)

__title__ = "tld"
__version__ = "0.12.6"
__author__ = "Artur Barseghyan"
__copyright__ = "2013-2021 Artur Barseghyan"
__license__ = "MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later"
__all__ = (
    "get_fld",
    "get_tld",
    "get_tld_names",
    "is_tld",
    "parse_tld",
    "Result",
    "update_tld_names",
)