File size: 752 Bytes
3e848bc 28c2eed c754d32 a06172d c006992 5a870b6 a6888ed 09af6bc 3ac6e56 a06172d 3e848bc d7e7f9f 3e848bc a06172d 43c88a7 c006992 3ac6e56 5a870b6 a6888ed 09af6bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
"""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
from .microsoft import MicrosoftTranslator
__author__ = """Nidhal Baccouri"""
__email__ = '[email protected]'
__version__ = '1.3.4'
__all__ = [GoogleTranslator,
PonsTranslator,
LingueeTranslator,
MyMemoryTranslator,
YandexTranslator,
MicrosoftTranslator,
QCRI,
DeepL,
single_detection,
batch_detection]
|