aboutsummaryrefslogtreecommitdiffhomepage
path: root/libs/tld/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/tld/__init__.py')
-rw-r--r--libs/tld/__init__.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/tld/__init__.py b/libs/tld/__init__.py
new file mode 100644
index 000000000..93647fadc
--- /dev/null
+++ b/libs/tld/__init__.py
@@ -0,0 +1,24 @@
+from .utils import (
+ get_fld,
+ get_tld,
+ get_tld_names,
+ is_tld,
+ parse_tld,
+ Result,
+ update_tld_names,
+)
+
+__title__ = 'tld'
+__version__ = '0.12.2'
+__author__ = 'Artur Barseghyan'
+__copyright__ = '2013-2020 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',
+)