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 94d6194 commit ce98828Copy full SHA for ce98828
README.md
@@ -1 +1,32 @@
1
-# googletrans
+# Google Translate API for Python
2
+
3
+This is a Python library that provides an interface to the Google Translate API.
4
5
+## Installation
6
7
+You can install this library using pip:
8
9
+```bash
10
+pip3 install googletrans-python
11
+```
12
13
+## Usage
14
15
+```python
16
+import googletrans as gt
17
18
+# Translate text from English to Korean
19
+print(gt.translate("Hello, How are you?", "ko"))
20
21
+# Translate text from English to Japanese
22
+print(gt.translate("Hello, How are you?", "ja"))
23
24
+# Translate text from English to French
25
+print(gt.translate("Hello, How are you?", "fr"))
26
27
28
29
+안녕하세요. 어떻게 지내세요?
30
+こんにちは元気ですか?
31
+Bonjour comment allez-vous?
32
0 commit comments