Windows python GUI for Google's Tesseract OCR engine
pip install mssfor screen capturepip install Pillowfor image file readingpip install PyQt5for GUIpip install pytesseractfor tesseract interfacing (this will be removed in future versions as it does hardly anything)
You must download tesseract from https://github.com/UB-Mannheim/tesseract/wiki
After installiation, move around the files so that it matches this:
.
├── TESSDATA # tessdata folder (comes with installed tesseract)
│ ├── script
│ │ ├── Cyrillic.traineddata
│ │ ├── Arabic.traineddata
│ │ ├── ...
│ ├── chi_sim.traineddata
│ ├── eng.traineddata
│ ├── ...
├── TESSERACT # Main installed tesseract engine
│ ├── tesseract.exe
│ ├── text2image.exe
│ ├── libtesseract-5.dll
│ ├── ... # And lots of other dll's/exe's
└── ScreenSnip.py # Main python script from this repo
