This article shows you how to translate text in Python.
To translate text (e.g. from English to Portuguese) from a Python script, do this:
- Copy the following source code to your Python script.
- Specify the language code of the original text on line 10.
- Specify the language code of your target language on line 11.
- Specify the text that needs to be translated on line 12.
- Install the
Requests
library because the sample script depends on it:pip install requests
- Make your script executable:
chmod 755 translate-text.py
- Run the script to see the result:
./translate-text.py
Looking for your language code? See the complete listing.
The trial account only allows you to call the translation API up to 10 times for learning purpose. Subscribe to a Premium plan to use the translation API seriously.
Want to translate text in another programming language? Check out the Translation API page.