NOTE: Python 3.7 or higher is required
# clone the repo
$ git clone https://github.com/ZetrextJG/Auto-Deutch.git
#Iinstall python3 and python3-pip if thery are not installed
$ https://www.python.org/
$ https://digi.bib.uni-mannheim.de/tesseract/tesseract-ocr-w32-setup-v5.0.0-alpha.20200328.exe # 32 bit version
$ https://digi.bib.uni-mannheim.de/tesseract/tesseract-ocr-w64-setup-v5.0.0-alpha.20200328.exe # 64 bit version
# Files from:
$ https://github.com/UB-Mannheim/tesseract/wiki
# Add tesseract folder to PATH (default: C://Program Files//Tesseract-OCR)
$ sudo apt-get update
$ sudo apt-get install tesseract-ocr
$ sudo apt-get install libtesseract-dev
$ python3 -m pip install -r requirements.txt
$ python3 auto-deutsch.py
# Wait for the GUI to pop up
# Press the green button to start screen capturing and select wanted area
# Wait for the webbrowser to pop up with your translation
# Enjoy
$ python3 auto-deutsch.py --pln 1
# This command runs appliaction in experimental mode that translates text straight to Polish language.
Screen capturing with tkinter by stack-overflow user Brett Lapierre