=
commited on
Commit
·
c801a01
1
Parent(s):
c006992
added support for yandex translator
Browse files- README.rst +1 -3
- deep_translator/__init__.py +1 -1
- docs/usage.rst +2 -4
- setup.cfg +1 -1
- setup.py +1 -1
README.rst
CHANGED
|
@@ -132,8 +132,6 @@ Usage
|
|
| 132 |
=====
|
| 133 |
|
| 134 |
In this section, demos on how to use all different integrated translators in this tool are provided.
|
| 135 |
-
This includes the google, pons, linguee and mymemory translator (at least for now). Perhaps more
|
| 136 |
-
translators will be integrated in the future.
|
| 137 |
|
| 138 |
.. note::
|
| 139 |
|
|
@@ -338,7 +336,7 @@ Yandex Translator
|
|
| 338 |
|
| 339 |
.. note::
|
| 340 |
|
| 341 |
-
You need to require an private api key if you want to use the yandex translator.
|
| 342 |
visit the official website for more information about how to get one
|
| 343 |
|
| 344 |
- Language detection
|
|
|
|
| 132 |
=====
|
| 133 |
|
| 134 |
In this section, demos on how to use all different integrated translators in this tool are provided.
|
|
|
|
|
|
|
| 135 |
|
| 136 |
.. note::
|
| 137 |
|
|
|
|
| 336 |
|
| 337 |
.. note::
|
| 338 |
|
| 339 |
+
You need to require an **private api key** if you want to use the yandex translator.
|
| 340 |
visit the official website for more information about how to get one
|
| 341 |
|
| 342 |
- Language detection
|
deep_translator/__init__.py
CHANGED
|
@@ -10,7 +10,7 @@ from .detection import single_detection, batch_detection
|
|
| 10 |
|
| 11 |
__author__ = """Nidhal Baccouri"""
|
| 12 |
__email__ = '[email protected]'
|
| 13 |
-
__version__ = '1.2.
|
| 14 |
|
| 15 |
__all__ = [GoogleTranslator,
|
| 16 |
PonsTranslator,
|
|
|
|
| 10 |
|
| 11 |
__author__ = """Nidhal Baccouri"""
|
| 12 |
__email__ = '[email protected]'
|
| 13 |
+
__version__ = '1.2.1'
|
| 14 |
|
| 15 |
__all__ = [GoogleTranslator,
|
| 16 |
PonsTranslator,
|
docs/usage.rst
CHANGED
|
@@ -3,9 +3,7 @@ Usage
|
|
| 3 |
=====
|
| 4 |
|
| 5 |
|
| 6 |
-
In this section, demos on how to use all different integrated translators
|
| 7 |
-
This includes the google, pons, linguee and mymemory translator (at least for now). Perhaps more
|
| 8 |
-
translators will be integrated in the future.
|
| 9 |
|
| 10 |
.. note::
|
| 11 |
|
|
@@ -209,7 +207,7 @@ Yandex Translator
|
|
| 209 |
|
| 210 |
.. note::
|
| 211 |
|
| 212 |
-
You need to require an private api key if you want to use the yandex translator.
|
| 213 |
visit the official website for more information about how to get one
|
| 214 |
|
| 215 |
- Language detection
|
|
|
|
| 3 |
=====
|
| 4 |
|
| 5 |
|
| 6 |
+
In this section, demos on how to use all different integrated translators are provided.
|
|
|
|
|
|
|
| 7 |
|
| 8 |
.. note::
|
| 9 |
|
|
|
|
| 207 |
|
| 208 |
.. note::
|
| 209 |
|
| 210 |
+
You need to require an **private api key** if you want to use the yandex translator.
|
| 211 |
visit the official website for more information about how to get one
|
| 212 |
|
| 213 |
- Language 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.1
|
| 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.1',
|
| 55 |
zip_safe=False,
|
| 56 |
)
|