Tutorial by Examples

PyTesseract is an in-development python package for OCR. Using PyTesseract is pretty easy: try: import Image except ImportError: from PIL import Image import pytesseract #Basic OCR print(pytesseract.image_to_string(Image.open('test.png'))) #In French print(pyt...
Another module of some use is PyOCR, source code of which is here. Also simple to use and has more features than PyTesseract. To initialize: from PIL import Image import sys import pyocr import pyocr.builders tools = pyocr.get_available_tools() # The tools are returned in the recommended...

Page 1 of 1