We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db44e7 commit ee87efcCopy full SHA for ee87efc
README.md
@@ -127,9 +127,10 @@ Antonyms: <br>
127
```python
128
from PyDictAPI import Translate
129
t = Translate()
130
+print(t.languages_help()) # Prints all supported languages
131
+# OR
132
print(t.languages_help(pretty=True))
-# Pretty=true returns the list of supported languages in a well structured manner
-# By default Pretty is set to False
133
+# Pretty=true returns the list in a well structured manner. By default Pretty is set to False
134
135
print(t.translateItems("Hello, How are you?", "hi")) # hi: Hindi
136
0 commit comments