PyElant is a simple python tool for performing translations and storing it on the clipboard. Input can be received via microphone, command line or the clipboard itself. This programs runs in the background so you can easily translate on the go and paste it in multiple programs such as text editors, browsers or programming tools easily without changing your current window.
You can install this package either via pip or via repository download.
pip3 install pyelant
To run this program on Debian distros you need to install the following dependencies:
sudo apt install sudo apt-get install xsel # To have proper access to the clipboard
sudo apt install portaudio19-dev python-pyaudio # Only if you want to use the microphone input
For the Speech Recognition library, please visit their repository for more details.
For other python packages required to run this program read requirements.txt
.
There are three ways of using pyelant:
- Voice input via microphone
- Input text via clipboard
- Input text via command line
First, initiate the program using the command line and let it run on the background:
python3 -m pyelant
Then press CTRL + ALT + M
to start listening. Say something and wait for the program to execute the translation.
Once it's done, it will automatically place it in your clipboard, so you can easily paste it wherever you want.
First, initiate the program using the command line and let it run on the background:
python3 -m pyelant
Then press CTRL + ALT + E
to translate the text that is already in your clipboard.
Once it's done, it will automatically place it in your clipboard, so you can easily paste it wherever you want.
First, run the program with the -t
or --text
argument
python3 -m pyelant -t "This sentence will be translated to Japanese."
And it will automatically store the translation in your clipboard.
python3 -m PyElant comes by default with English as the input language and Japanese as the output language.
Currently the program can only accept a single pair of languages per execution, meaning that you need to close the program to change languages.
To translate other languages use the -i
or --input_language
and -o
or --output_language
as follows:
python3 -m pyelant -i pt -o en # To run in the background and translate from Portuguese to English
python3 -m pyelant -i fr -o kr # To run in the backrground and translate from French to Korean
python3 -m pyelant -i En -o it -t "This sentence will be translated from English to Italian."
To disable the system notification use -dn
or --disable_notification
.
MIT License as described in LICENSE.txt
.