“Building a Multi-Lingual Translator with Python”

Per aspera ad astra
3 min readJan 29, 2023

--

Translators are tools that can translate text from one language to another. In this lesson, we’ll learn how to build a basic translator using Python.

To build a translator, we’ll need to know two things:

  1. How to retrieve text from a user
  2. How to use an API to translate text from one language to another

In this lesson, we’ll use the Googletrans library to translate text from one language to another. The Googletrans library is a Python wrapper for the Google Translate API, which is a powerful and easy-to-use API for translating text from one language to another.

Getting Started:

To get started, we’ll need to install the Googletrans library. We can do this by running the following command in our terminal:

pip install googletrans

Once the library is installed, we can import it into our Python script like this:

from googletrans import Translator

Translating Text:

Next, we’ll retrieve text from the user and translate it using the Googletrans library. We’ll start by writing a simple script to translate a single word from one language to another.

from googletrans import Translator
translator = Translator(service_urls=['translate.google.com'])text = input("Enter a word: ")translation = translator.translate(text, dest='fr')print("Translation:", translation.text)

In this script, we import the Translator class from the Googletrans library, and create an instance of the Translator class. We then retrieve a word from the user, and use the translate() method to translate the word to French. Finally, we print the translated text.

Here’s an example of the output when we run this script:

Enter a word: hello
Translation: bonjour

Translating Sentences:

Now that we know how to translate a single word, let’s see how we can translate a sentence. We’ll modify our script to allow the user to enter a sentence, and translate the sentence to another language.

from googletrans import Translator
translator = Translator(service_urls=['translate.google.com'])text = input("Enter a sentence: ")translation = translator.translate(text, dest='fr')print("Translation:", translation.text)

In this script, we retrieve a sentence from the user instead of a single word. The rest of the script is the same, and we use the translate() method to translate the sentence to French.

Here’s an example of the output when we run this script:

Enter a sentence: I love Python
Translation: J'aime Python

Translating Text with Multiple Languages:

So far, we’ve translated text to only one language, French. But what if we want to translate text to multiple languages?

We’ll modify our script to allow the user to enter a sentence and translate the sentence to multiple languages.

from googletrans import Translator
# get user input
sentence = input("Enter a sentence to translate: ")
# create Translator object
translator = Translator(service_urls=['translate.google.com'])
# list of languages to translate to
languages = ['fr', 'de', 'es', 'ja']
# translate the sentence to each language
for lang in languages:
result = translator.translate(sentence, dest=lang)
print(f"Translation to {result.dest}: {result.text}")

Now, when you run the script, it will prompt the user to enter a sentence. The sentence will then be translated to French, German, Spanish, and Japanese.

This is just a simple example of how to use the googletrans library to translate text. There are many other features and options available in the library that you can explore and use in your own projects.

--

--