=
commited on
Commit
·
5a870b6
1
Parent(s):
1f09504
updated docs and added examples for qcri
Browse files- deep_translator/__init__.py +3 -1
- setup.cfg +1 -1
- setup.py +1 -1
deep_translator/__init__.py
CHANGED
|
@@ -5,17 +5,19 @@ from .pons import PonsTranslator
|
|
| 5 |
from .linguee import LingueeTranslator
|
| 6 |
from .mymemory import MyMemoryTranslator
|
| 7 |
from .yandex import YandexTranslator
|
|
|
|
| 8 |
from .detection import single_detection, batch_detection
|
| 9 |
|
| 10 |
|
| 11 |
__author__ = """Nidhal Baccouri"""
|
| 12 |
__email__ = '[email protected]'
|
| 13 |
-
__version__ = '1.2.
|
| 14 |
|
| 15 |
__all__ = [GoogleTranslator,
|
| 16 |
PonsTranslator,
|
| 17 |
LingueeTranslator,
|
| 18 |
MyMemoryTranslator,
|
| 19 |
YandexTranslator,
|
|
|
|
| 20 |
single_detection,
|
| 21 |
batch_detection]
|
|
|
|
| 5 |
from .linguee import LingueeTranslator
|
| 6 |
from .mymemory import MyMemoryTranslator
|
| 7 |
from .yandex import YandexTranslator
|
| 8 |
+
from .qcri import QCRI
|
| 9 |
from .detection import single_detection, batch_detection
|
| 10 |
|
| 11 |
|
| 12 |
__author__ = """Nidhal Baccouri"""
|
| 13 |
__email__ = '[email protected]'
|
| 14 |
+
__version__ = '1.2.4'
|
| 15 |
|
| 16 |
__all__ = [GoogleTranslator,
|
| 17 |
PonsTranslator,
|
| 18 |
LingueeTranslator,
|
| 19 |
MyMemoryTranslator,
|
| 20 |
YandexTranslator,
|
| 21 |
+
QCRI,
|
| 22 |
single_detection,
|
| 23 |
batch_detection]
|
setup.cfg
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
[bumpversion]
|
| 2 |
-
current_version = 1.2.
|
| 3 |
commit = True
|
| 4 |
tag = True
|
| 5 |
|
|
|
|
| 1 |
[bumpversion]
|
| 2 |
+
current_version = 1.2.4
|
| 3 |
commit = True
|
| 4 |
tag = True
|
| 5 |
|
setup.py
CHANGED
|
@@ -51,6 +51,6 @@ setup(
|
|
| 51 |
test_suite='tests',
|
| 52 |
tests_require=test_requirements,
|
| 53 |
url='https://github.com/nidhaloff/deep_translator',
|
| 54 |
-
version='1.2.
|
| 55 |
zip_safe=False,
|
| 56 |
)
|
|
|
|
| 51 |
test_suite='tests',
|
| 52 |
tests_require=test_requirements,
|
| 53 |
url='https://github.com/nidhaloff/deep_translator',
|
| 54 |
+
version='1.2.4',
|
| 55 |
zip_safe=False,
|
| 56 |
)
|