I\'m running a large number of OCRs on screenshots with Pytesseract. This is working well in most cases, but a small number is causing this error:
pytesserac
Use Unidecode
from unidecode import unidecode import pytesseract strs = pytesseract.image_to_string(Image.open('binarized_image.png')) strs = unidecode(strs) print (strs)