You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
677 B
26 lines
677 B
4 years ago
|
"""Top-level package for deep_translator."""
|
||
|
|
||
|
from .google_trans import GoogleTranslator
|
||
|
from .pons import PonsTranslator
|
||
|
from .linguee import LingueeTranslator
|
||
|
from .mymemory import MyMemoryTranslator
|
||
|
from .yandex import YandexTranslator
|
||
|
from .qcri import QCRI
|
||
|
from .deepl import DeepL
|
||
|
from .detection import single_detection, batch_detection
|
||
|
|
||
|
|
||
|
__author__ = """Nidhal Baccouri"""
|
||
|
__email__ = 'nidhalbacc@gmail.com'
|
||
|
__version__ = '1.3.2'
|
||
|
|
||
|
__all__ = [GoogleTranslator,
|
||
|
PonsTranslator,
|
||
|
LingueeTranslator,
|
||
|
MyMemoryTranslator,
|
||
|
YandexTranslator,
|
||
|
QCRI,
|
||
|
DeepL,
|
||
|
single_detection,
|
||
|
batch_detection]
|