Creating a Translator with Python on Pydroid3

Опубликовано: 29 Июнь 2026
на канале: Python Project
2,552
48

Modules:
deep_translator
gtts (for saving the audio)
PyQt5 (for user interface)
All modules can be found and downloaded from PYPI website:
https://pypi.org/
pip install deep-translator
pip install gtts
pip install PyQt5

I had difficulties getting the sound to play since most audio player modules do not support android yet. Luckily, I found kivy audio player that works fine on Android. You can use kivy audio player:

from kivy.core.audio import SoundLoader
sound = SoundLoader.load(audiofile)
sound.play()