=
commited on
Commit
·
37ef637
1
Parent(s):
426be43
updated readme
Browse files- README.rst +17 -2
README.rst
CHANGED
@@ -55,6 +55,21 @@ More features are coming soon, mainly support for the PONS translator and others
|
|
55 |
Basically, my goal is to integrate support for multiple famous translators
|
56 |
in this tool.
|
57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
Features
|
59 |
--------
|
60 |
|
@@ -72,7 +87,7 @@ Install the stable release:
|
|
72 |
|
73 |
.. code-block:: console
|
74 |
|
75 |
-
$ pip install deep_translator
|
76 |
|
77 |
take a look at the docs if you want to install from source.
|
78 |
|
@@ -81,7 +96,7 @@ Usage
|
|
81 |
|
82 |
.. code-block:: python
|
83 |
|
84 |
-
from deep_translator import GoogleTranslator, PonsTranslator, LingueeTranslator
|
85 |
|
86 |
english_text = 'happy coding'
|
87 |
|
|
|
55 |
Basically, my goal is to integrate support for multiple famous translators
|
56 |
in this tool.
|
57 |
|
58 |
+
When you should use it
|
59 |
+
-----------------------
|
60 |
+
- If you want to translate text using python
|
61 |
+
- If you want to translate from a file
|
62 |
+
- If you want to get translations from many sources and not only one
|
63 |
+
- If you want to automate translations
|
64 |
+
- If you want to compare different translations
|
65 |
+
|
66 |
+
Why you should use it
|
67 |
+
----------------------
|
68 |
+
- High level of abstraction
|
69 |
+
- Easy to use and extend
|
70 |
+
- It's the only python tool that integrates many translators
|
71 |
+
- Stable
|
72 |
+
|
73 |
Features
|
74 |
--------
|
75 |
|
|
|
87 |
|
88 |
.. code-block:: console
|
89 |
|
90 |
+
$ pip install -U deep_translator
|
91 |
|
92 |
take a look at the docs if you want to install from source.
|
93 |
|
|
|
96 |
|
97 |
.. code-block:: python
|
98 |
|
99 |
+
from deep_translator import GoogleTranslator, PonsTranslator, LingueeTranslator, MyMemoryTranslator
|
100 |
|
101 |
english_text = 'happy coding'
|
102 |
|