=
commited on
Commit
·
fee339b
1
Parent(s):
a6888ed
release with deepl basic support
Browse files- README.rst +1 -1
- deep_translator/__init__.py +1 -1
- setup.cfg +1 -1
- setup.py +1 -1
README.rst
CHANGED
@@ -100,7 +100,7 @@ Features
|
|
100 |
* Support for the `Mymemory translator <https://mymemory.translated.net/>`_
|
101 |
* Support for the `Yandex translator <https://yandex.com/>`_ (version >= 1.2.1)
|
102 |
* Support for the `QCRI translator <https://mt.qcri.org/api/>`_ (version >= 1.2.4)
|
103 |
-
* Support for the `DeepL translator <https://www.deepl.com/en/translator/>`_ (version >= 1.2.
|
104 |
* Automatic single language detection
|
105 |
* Batch language detection
|
106 |
* Translate directly from a text file
|
|
|
100 |
* Support for the `Mymemory translator <https://mymemory.translated.net/>`_
|
101 |
* Support for the `Yandex translator <https://yandex.com/>`_ (version >= 1.2.1)
|
102 |
* Support for the `QCRI translator <https://mt.qcri.org/api/>`_ (version >= 1.2.4)
|
103 |
+
* Support for the `DeepL translator <https://www.deepl.com/en/translator/>`_ (version >= 1.2.5)
|
104 |
* Automatic single language detection
|
105 |
* Batch language detection
|
106 |
* Translate directly from a text file
|
deep_translator/__init__.py
CHANGED
@@ -12,7 +12,7 @@ from .detection import single_detection, batch_detection
|
|
12 |
|
13 |
__author__ = """Nidhal Baccouri"""
|
14 |
__email__ = '[email protected]'
|
15 |
-
__version__ = '1.2.
|
16 |
|
17 |
__all__ = [GoogleTranslator,
|
18 |
PonsTranslator,
|
|
|
12 |
|
13 |
__author__ = """Nidhal Baccouri"""
|
14 |
__email__ = '[email protected]'
|
15 |
+
__version__ = '1.2.5'
|
16 |
|
17 |
__all__ = [GoogleTranslator,
|
18 |
PonsTranslator,
|
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.5
|
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.5',
|
55 |
zip_safe=False,
|
56 |
)
|