At some point, you must have tried Google Translate to translate some text from one language to the other. But, do you know how Google does that? Well, Google developers have created an API that does it all.
To translate the text from one language to another using Python, we are going to use a package named googletrans
that has been called internally to the Google Translate API. However, we do not need to worry about the internal calling of the API; instead, we can go ahead and directly use the package.
First, let’s install the package by running the following command:
pip install googletrans==3.1.0a0
Now, let’s look at the code:
from googletrans import Translatortranslator = Translator()translated_text = translator.translate('안녕하세요.')print(translated_text.text)translated_text = translator.translate('안녕하세요.', dest='ja')print(translated_text.text)translated_text = translator.translate('veritas lux mea', src='la')print(translated_text.text)
Translator
class and assigned it to translator
variable.ja
.So, in this way, you can easily use Google Translate to translate your text using Python.