├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── app.py ├── images ├── ocr_image_1.png ├── ocr_image_2.png ├── ocr_image_3.jpg ├── ocr_image_4.jpeg └── ocr_image_5.jpg ├── ocr_core.py ├── requirements.txt ├── static └── uploads │ └── ocr_image_1.png └── templates ├── index.html └── upload.html /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .sonarlint/** 2 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/app.py -------------------------------------------------------------------------------- /images/ocr_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/images/ocr_image_1.png -------------------------------------------------------------------------------- /images/ocr_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/images/ocr_image_2.png -------------------------------------------------------------------------------- /images/ocr_image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/images/ocr_image_3.jpg -------------------------------------------------------------------------------- /images/ocr_image_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/images/ocr_image_4.jpeg -------------------------------------------------------------------------------- /images/ocr_image_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/images/ocr_image_5.jpg -------------------------------------------------------------------------------- /ocr_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/ocr_core.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/uploads/ocr_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/static/uploads/ocr_image_1.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ro6ley/python-ocr-example/HEAD/templates/upload.html --------------------------------------------------------------------------------