mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 09:37:25 +00:00
a430bffe57
- added tld library, so "Common Fixes" mod can detect domain names and won't add spaces after each dot in them. - fix HI_before_colon_noncaps, so it won't remove http: from URLs.
24 lines
443 B
Python
24 lines
443 B
Python
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',
|
|
)
|