File size: 677 Bytes
3e848bc 28c2eed c754d32 a06172d c006992 5a870b6 a6888ed 09af6bc a06172d 3e848bc a507afc 3e848bc a06172d 43c88a7 c006992 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 |
"""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__ = '[email protected]'
__version__ = '1.2.8'
__all__ = [GoogleTranslator,
PonsTranslator,
LingueeTranslator,
MyMemoryTranslator,
YandexTranslator,
QCRI,
DeepL,
single_detection,
batch_detection]
|