File size: 836 Bytes
fdb2846
28c2eed
050157d
 
 
 
 
 
 
 
 
 
 
a06172d
0706c16
 
 
3e848bc
9fd56bc
 
810451b
 
 
 
 
 
 
a0b5eac
 
810451b
 
a0b5eac
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
29
30
31
32
33
"""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
from .papago import PapagoTranslator
from .libre import LibreTranslator

__author__ = """Nidhal Baccouri"""
__email__ = '[email protected]'
__version__ = '1.5.0'

__all__ = [
    "GoogleTranslator",
    "PonsTranslator",
    "LingueeTranslator",
    "MyMemoryTranslator",
    "YandexTranslator",
    "MicrosoftTranslator",
    "QCRI",
    "DeepL",
    "LibreTranslator",
    "PapagoTranslator",
    "single_detection",
    "batch_detection"
    ]