=========
tesserocr
=========
A simple, |Pillow|_-friendly,
wrapper around the ``tesseract-ocr`` API for Optical Character Recognition
(OCR).
.. image:: https://github.com/sirfz/tesserocr/actions/workflows/build.yml/badge.svg
:target: https://github.com/sirfz/tesserocr/actions/workflows/build.yml
:alt: Github Actions build status
.. image:: https://img.shields.io/pypi/v/tesserocr.svg?maxAge=2592000
:target: https://pypi.python.org/pypi/tesserocr
:alt: Latest version on PyPi
.. image:: https://img.shields.io/pypi/pyversions/tesserocr.svg?maxAge=2592000
:alt: Supported python versions
**tesserocr** integrates directly with Tesseract's C++ API using Cython
which allows for a simple Pythonic and easy-to-read source code. It
enables real concurrent execution when used with Python's ``threading``
module by releasing the GIL while processing an image in tesseract.
**tesserocr** is designed to be |Pillow|_-friendly but can also be used
with image files instead.
.. |Pillow| replace:: ``Pillow``
.. _Pillow: http://python-pillow.github.io/
Requirements
============
Requires libtesseract (>=3.04) and libleptonica (>=1.71).
On Debian/Ubuntu:
::
$ apt-get install tesseract-ocr libtesseract-dev libleptonica-dev pkg-config
You may need to `manually compile tesseract`_ for a more recent version. Note that you may need
to update your ``LD_LIBRARY_PATH`` environment variable to point to the right library versions in
case you have multiple tesseract/leptonica installations.
|Cython|_ (>=0.23) is required for building and optionally |Pillow|_ to support ``PIL.Image`` objects.
.. _manually compile tesseract: https://github.com/tesseract-ocr/tesseract/wiki/Compiling
.. |Cython| replace:: ``Cython``
.. _Cython: http://cython.org/
Installation
============
Linux and BSD/MacOS
-------------------
::
$ pip install tesserocr
The setup script attempts to detect the include/library dirs (via |pkg-config|_ if available) but you
can override them with your own parameters, e.g.:
::
$ CPPFLAGS=-I/usr/local/include pip install tesserocr
or
::
$ python setup.py build_ext -I/usr/local/include
Tested on Linux and BSD/MacOS
.. |pkg-config| replace:: **pkg-config**
.. _pkg-config: https://pkgconfig.freedesktop.org/
Windows
-------
The proposed downloads consist of stand-alone packages containing all the Windows libraries needed for execution. This means that no additional installation of tesseract is required on your system.
The recommended method of installation is via Conda as described below.
Conda
`````
You can use the `simonflueckiger <https://anaconda.org/simonflueckiger/tesserocr>`_ channel to install from Conda:
::
> conda install -c simonflueckiger tesserocr
Or alternatively the `conda-forge <https://anaconda.org/conda-forge/tesserocr>`_ channel:
::
> conda install -c conda-forge tesserocr
pip
```
Download the wheel file corresponding to your Windows platform and Python installation from `simonflueckiger/tesserocr-windows_build/releases <https://github.com/simonflueckiger/tesserocr-windows_build/releases>`_ and install them via:
::
> pip install <package_name>.whl
Build from source
`````````````````
If you need Windows tessocr package and your Python version is not supported by above mentioned project,
you can try to follow `step by step instructions for Windows 64bit` in `Windows.build.md`_.
.. _Windows.build.md: Windows.build.md
tessdata
========
You may need to point to the tessdata path if it cannot be detected automatically. This can be done by setting the ``TESSDATA_PREFIX`` environment variable or by passing the path to ``PyTessBaseAPI`` (e.g.: ``PyTessBaseAPI(path='/usr/share/tessdata')``). The path should contain ``.traineddata`` files which can be found at https://github.com/tesseract-ocr/tessdata.
Make sure you have the correct version of traineddata for your ``tesseract --version``.
You can list the current supported languages on your system using the ``get_languages`` function:
.. code:: python
from tesserocr import get_languages
print(get_languages('/usr/share/tessdata')) # or any other path that applies to your system
Usage
=====
Initialize and re-use the tesseract API instance to score multiple
images:
.. code:: python
from tesserocr import PyTessBaseAPI
images = ['sample.jpg', 'sample2.jpg', 'sample3.jpg']
with PyTessBaseAPI() as api:
for img in images:
api.SetImageFile(img)
print(api.GetUTF8Text())
print(api.AllWordConfidences())
# api is automatically finalized when used in a with-statement (context manager).
# otherwise api.End() should be explicitly called when it's no longer needed.
``PyTessBaseAPI`` exposes several tesseract API methods. Make sure you
read their docstrings for more info.
Basic example using available helper functions:
.. code:: python
import tesserocr
from PIL import Image
print(tesserocr.tesseract_version()) # print tesseract-ocr version
print(tesserocr.get_languages()) # prints tessdata path and list of available languages
image = Image.open('sample.jpg')
print(tesserocr.image_to_text(image)) # print ocr text from image
# or
print(tesserocr.file_to_text('sample.jpg'))
``image_to_text`` and ``file_to_text`` can be used with ``threading`` to
concurrently process multiple images which is highly efficient.
Advanced API Examples
---------------------
GetComponentImages example:
```````````````````````````
.. code:: python
from PIL import Image
from tesserocr import PyTessBaseAPI, RIL
image = Image.open('/usr/src/tesseract/testing/phototest.tif')
with PyTessBaseAPI() as api:
api.SetImage(image)
boxes = api.GetComponentImages(RIL.TEXTLINE, True)
print('Found {} textline image components.'.format(len(boxes)))
for i, (im, box, _, _) in enumerate(boxes):
# im is a PIL image object
# box is a dict with x, y, w and h keys
api.SetRectangle(box['x'], box['y'], box['w'], box['h'])
ocrResult = api.GetUTF8Text()
conf = api.MeanTextConf()
print(u"Box[{0}]: x={x}, y={y}, w={w}, h={h}, "
"confidence: {1}, text: {2}".format(i, conf, ocrResult, **box))
Orientation and script detection (OSD):
```````````````````````````````````````
.. code:: python
from PIL import Image
from tesserocr import PyTessBaseAPI, PSM
with PyTessBaseAPI(psm=PSM.AUTO_OSD) as api:
image = Image.open("/usr/src/tesseract/testing/eurotext.tif")
api.SetImage(image)
api.Recognize()
it = api.AnalyseLayout()
orientation, direction, order, deskew_angle = it.Orientation()
print("Orientation: {:d}".format(orientation))
print("WritingDirection: {:d}".format(direction))
print("TextlineOrder: {:d}".format(order))
print("Deskew angle: {:.4f}".format(deskew_angle))
or more simply with ``OSD_ONLY`` page segmentation mode:
.. code:: python
from tesserocr import PyTessBaseAPI, PSM
with PyTessBaseAPI(psm=PSM.OSD_ONLY) as api:
api.SetImageFile("/usr/src/tesseract/testing/eurotext.tif")
os = api.DetectOS()
print("Orientation: {orientation}\nOrientation confidence: {oconfidence}\n"
"Script: {script}\nScript confidence: {sconfidence}".format(**os))
more human-readable info with tesseract 4+ (demonstrates LSTM engine usage):
.. code:: python
from tesserocr import PyTessBaseAPI, PSM, OEM
with PyTessBaseAPI(psm=PSM.OSD_ONLY, oem=OEM.LSTM_ONLY) as api:
api.SetImageFile("/usr/src/tesseract/testing/eurotext.tif")
os = api.DetectOrientationScript()
print("Orientation: {orient_deg}\nOrientation confidence: {orient_conf}\n"
"Script: {script_name}\nScript confidence: {script_conf}".format(**os))
Iterator over the classifier choices for a single symbol:
`````````````````````````````````````````````````````````
.. code:: python
from __future__ import print_function
from tesserocr import PyTessBaseAPI, RIL, iterate_level
with PyTessBaseAPI() as api:
api.SetImageFile('/usr/src/tesseract/testing/phototest.tif')
api.SetVariable("save_blob_choices", "T")
api.SetRectangle(37, 228, 548, 31)
api.Recognize()
ri = api.GetIterator()
level = RIL.SYMBOL
for r in iterate_level(ri, level):
symbol = r.GetUTF8Text(level) # r == ri
conf = r.Confidence(level)
if symbol:
print(u'symbol {}, conf: {}'.format(symbol, conf), end='')
indent = False
ci = r.GetChoiceIterator()
for c in ci:
if indent:
print('\t\t ', end='')
print('\t- ', end='')
choice = c.GetUTF8Text() # c == ci
print(u'{} conf: {}'.format(choice, c.Confidence()))
indent = True
print('---------------------------------------------')
Raw data
{
"_id": null,
"home_page": "https://github.com/sirfz/tesserocr",
"name": "tesserocr",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "Tesseract, tesseract-ocr, OCR, optical character recognition, PIL, Pillow, Cython",
"author": "Fayez Zouheiry",
"author_email": "iamfayez@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/1c/26/21e95383b4316773dab9db892885e2eae74da05f14d520de7b66e5f9ddbb/tesserocr-2.7.1.tar.gz",
"platform": null,
"description": "=========\ntesserocr\n=========\n\nA simple, |Pillow|_-friendly,\nwrapper around the ``tesseract-ocr`` API for Optical Character Recognition\n(OCR).\n\n.. image:: https://github.com/sirfz/tesserocr/actions/workflows/build.yml/badge.svg\n :target: https://github.com/sirfz/tesserocr/actions/workflows/build.yml\n :alt: Github Actions build status\n\n.. image:: https://img.shields.io/pypi/v/tesserocr.svg?maxAge=2592000\n :target: https://pypi.python.org/pypi/tesserocr\n :alt: Latest version on PyPi\n\n.. image:: https://img.shields.io/pypi/pyversions/tesserocr.svg?maxAge=2592000\n :alt: Supported python versions\n\n**tesserocr** integrates directly with Tesseract's C++ API using Cython\nwhich allows for a simple Pythonic and easy-to-read source code. It\nenables real concurrent execution when used with Python's ``threading``\nmodule by releasing the GIL while processing an image in tesseract.\n\n**tesserocr** is designed to be |Pillow|_-friendly but can also be used\nwith image files instead.\n\n.. |Pillow| replace:: ``Pillow``\n.. _Pillow: http://python-pillow.github.io/\n\nRequirements\n============\n\nRequires libtesseract (>=3.04) and libleptonica (>=1.71).\n\nOn Debian/Ubuntu:\n\n::\n\n $ apt-get install tesseract-ocr libtesseract-dev libleptonica-dev pkg-config\n\nYou may need to `manually compile tesseract`_ for a more recent version. Note that you may need\nto update your ``LD_LIBRARY_PATH`` environment variable to point to the right library versions in\ncase you have multiple tesseract/leptonica installations.\n\n|Cython|_ (>=0.23) is required for building and optionally |Pillow|_ to support ``PIL.Image`` objects.\n\n.. _manually compile tesseract: https://github.com/tesseract-ocr/tesseract/wiki/Compiling\n.. |Cython| replace:: ``Cython``\n.. _Cython: http://cython.org/\n\nInstallation\n============\nLinux and BSD/MacOS\n-------------------\n::\n\n $ pip install tesserocr\n\nThe setup script attempts to detect the include/library dirs (via |pkg-config|_ if available) but you\ncan override them with your own parameters, e.g.:\n\n::\n\n $ CPPFLAGS=-I/usr/local/include pip install tesserocr\n\nor\n\n::\n\n $ python setup.py build_ext -I/usr/local/include\n\nTested on Linux and BSD/MacOS\n\n.. |pkg-config| replace:: **pkg-config**\n.. _pkg-config: https://pkgconfig.freedesktop.org/\n\nWindows\n-------\n\nThe proposed downloads consist of stand-alone packages containing all the Windows libraries needed for execution. This means that no additional installation of tesseract is required on your system.\n\nThe recommended method of installation is via Conda as described below.\n\nConda\n`````\n\nYou can use the `simonflueckiger <https://anaconda.org/simonflueckiger/tesserocr>`_ channel to install from Conda:\n\n::\n\n > conda install -c simonflueckiger tesserocr\n\nOr alternatively the `conda-forge <https://anaconda.org/conda-forge/tesserocr>`_ channel:\n\n::\n\n > conda install -c conda-forge tesserocr\n\npip\n```\n\nDownload the wheel file corresponding to your Windows platform and Python installation from `simonflueckiger/tesserocr-windows_build/releases <https://github.com/simonflueckiger/tesserocr-windows_build/releases>`_ and install them via:\n\n::\n\n > pip install <package_name>.whl\n\nBuild from source\n`````````````````\n\nIf you need Windows tessocr package and your Python version is not supported by above mentioned project,\nyou can try to follow `step by step instructions for Windows 64bit` in `Windows.build.md`_.\n\n.. _Windows.build.md: Windows.build.md\n\ntessdata\n========\n\nYou may need to point to the tessdata path if it cannot be detected automatically. This can be done by setting the ``TESSDATA_PREFIX`` environment variable or by passing the path to ``PyTessBaseAPI`` (e.g.: ``PyTessBaseAPI(path='/usr/share/tessdata')``). The path should contain ``.traineddata`` files which can be found at https://github.com/tesseract-ocr/tessdata.\n\nMake sure you have the correct version of traineddata for your ``tesseract --version``.\n\nYou can list the current supported languages on your system using the ``get_languages`` function:\n\n.. code:: python\n\n from tesserocr import get_languages\n\n print(get_languages('/usr/share/tessdata')) # or any other path that applies to your system\n\nUsage\n=====\n\nInitialize and re-use the tesseract API instance to score multiple\nimages:\n\n.. code:: python\n\n from tesserocr import PyTessBaseAPI\n\n images = ['sample.jpg', 'sample2.jpg', 'sample3.jpg']\n\n with PyTessBaseAPI() as api:\n for img in images:\n api.SetImageFile(img)\n print(api.GetUTF8Text())\n print(api.AllWordConfidences())\n # api is automatically finalized when used in a with-statement (context manager).\n # otherwise api.End() should be explicitly called when it's no longer needed.\n\n``PyTessBaseAPI`` exposes several tesseract API methods. Make sure you\nread their docstrings for more info.\n\nBasic example using available helper functions:\n\n.. code:: python\n\n import tesserocr\n from PIL import Image\n\n print(tesserocr.tesseract_version()) # print tesseract-ocr version\n print(tesserocr.get_languages()) # prints tessdata path and list of available languages\n\n image = Image.open('sample.jpg')\n print(tesserocr.image_to_text(image)) # print ocr text from image\n # or\n print(tesserocr.file_to_text('sample.jpg'))\n\n``image_to_text`` and ``file_to_text`` can be used with ``threading`` to\nconcurrently process multiple images which is highly efficient.\n\nAdvanced API Examples\n---------------------\n\nGetComponentImages example:\n```````````````````````````\n\n.. code:: python\n\n from PIL import Image\n from tesserocr import PyTessBaseAPI, RIL\n\n image = Image.open('/usr/src/tesseract/testing/phototest.tif')\n with PyTessBaseAPI() as api:\n api.SetImage(image)\n boxes = api.GetComponentImages(RIL.TEXTLINE, True)\n print('Found {} textline image components.'.format(len(boxes)))\n for i, (im, box, _, _) in enumerate(boxes):\n # im is a PIL image object\n # box is a dict with x, y, w and h keys\n api.SetRectangle(box['x'], box['y'], box['w'], box['h'])\n ocrResult = api.GetUTF8Text()\n conf = api.MeanTextConf()\n print(u\"Box[{0}]: x={x}, y={y}, w={w}, h={h}, \"\n \"confidence: {1}, text: {2}\".format(i, conf, ocrResult, **box))\n\nOrientation and script detection (OSD):\n```````````````````````````````````````\n\n.. code:: python\n\n from PIL import Image\n from tesserocr import PyTessBaseAPI, PSM\n\n with PyTessBaseAPI(psm=PSM.AUTO_OSD) as api:\n image = Image.open(\"/usr/src/tesseract/testing/eurotext.tif\")\n api.SetImage(image)\n api.Recognize()\n\n it = api.AnalyseLayout()\n orientation, direction, order, deskew_angle = it.Orientation()\n print(\"Orientation: {:d}\".format(orientation))\n print(\"WritingDirection: {:d}\".format(direction))\n print(\"TextlineOrder: {:d}\".format(order))\n print(\"Deskew angle: {:.4f}\".format(deskew_angle))\n\nor more simply with ``OSD_ONLY`` page segmentation mode:\n\n.. code:: python\n\n from tesserocr import PyTessBaseAPI, PSM\n\n with PyTessBaseAPI(psm=PSM.OSD_ONLY) as api:\n api.SetImageFile(\"/usr/src/tesseract/testing/eurotext.tif\")\n\n os = api.DetectOS()\n print(\"Orientation: {orientation}\\nOrientation confidence: {oconfidence}\\n\"\n \"Script: {script}\\nScript confidence: {sconfidence}\".format(**os))\n\nmore human-readable info with tesseract 4+ (demonstrates LSTM engine usage):\n\n.. code:: python\n\n from tesserocr import PyTessBaseAPI, PSM, OEM\n\n with PyTessBaseAPI(psm=PSM.OSD_ONLY, oem=OEM.LSTM_ONLY) as api:\n api.SetImageFile(\"/usr/src/tesseract/testing/eurotext.tif\")\n\n os = api.DetectOrientationScript()\n print(\"Orientation: {orient_deg}\\nOrientation confidence: {orient_conf}\\n\"\n \"Script: {script_name}\\nScript confidence: {script_conf}\".format(**os))\n\nIterator over the classifier choices for a single symbol:\n`````````````````````````````````````````````````````````\n\n.. code:: python\n\n from __future__ import print_function\n\n from tesserocr import PyTessBaseAPI, RIL, iterate_level\n\n with PyTessBaseAPI() as api:\n api.SetImageFile('/usr/src/tesseract/testing/phototest.tif')\n api.SetVariable(\"save_blob_choices\", \"T\")\n api.SetRectangle(37, 228, 548, 31)\n api.Recognize()\n\n ri = api.GetIterator()\n level = RIL.SYMBOL\n for r in iterate_level(ri, level):\n symbol = r.GetUTF8Text(level) # r == ri\n conf = r.Confidence(level)\n if symbol:\n print(u'symbol {}, conf: {}'.format(symbol, conf), end='')\n indent = False\n ci = r.GetChoiceIterator()\n for c in ci:\n if indent:\n print('\\t\\t ', end='')\n print('\\t- ', end='')\n choice = c.GetUTF8Text() # c == ci\n print(u'{} conf: {}'.format(choice, c.Confidence()))\n indent = True\n print('---------------------------------------------')\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A simple, Pillow-friendly, Python wrapper around tesseract-ocr API using Cython",
"version": "2.7.1",
"project_urls": {
"Homepage": "https://github.com/sirfz/tesserocr"
},
"split_keywords": [
"tesseract",
" tesseract-ocr",
" ocr",
" optical character recognition",
" pil",
" pillow",
" cython"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e61b75692340ebe441fbd714c8b1ccc33399969acb43a62578a8ec748b9b5c16",
"md5": "c098f2265f2ee2e4fb5ad4e9e113f5fa",
"sha256": "1b8c4828f970af7bcfca83a1fb228aa68a2587299387bc875d0dfad8b6baf8ed"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c098f2265f2ee2e4fb5ad4e9e113f5fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4258856,
"upload_time": "2024-08-26T20:21:57",
"upload_time_iso_8601": "2024-08-26T20:21:57.769547Z",
"url": "https://files.pythonhosted.org/packages/e6/1b/75692340ebe441fbd714c8b1ccc33399969acb43a62578a8ec748b9b5c16/tesserocr-2.7.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c5e2ecaad24fa0dc21edaecde54188bf0c361954ab3d184ec597f7771aa8489",
"md5": "039452af042a7cba698cf2ebb3329f21",
"sha256": "3bb5d336ebf2cc47cd0d117cadc8b25b2e558f54fb9a2dedaa28a14cb5a6b437"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "039452af042a7cba698cf2ebb3329f21",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 217954,
"upload_time": "2024-08-26T20:22:00",
"upload_time_iso_8601": "2024-08-26T20:22:00.437604Z",
"url": "https://files.pythonhosted.org/packages/5c/5e/2ecaad24fa0dc21edaecde54188bf0c361954ab3d184ec597f7771aa8489/tesserocr-2.7.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0ad584d829721da26f0de0679729e5938e4579e372986d3fe2df0da1a10750e",
"md5": "b92e9b61b8a82e9537bbc426899de1b7",
"sha256": "3ff7f6d6b5c12dd31b80842eb0892b661a41ca3edf0e6cc1e54ec2c14552ceef"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "b92e9b61b8a82e9537bbc426899de1b7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4781028,
"upload_time": "2024-08-26T20:22:03",
"upload_time_iso_8601": "2024-08-26T20:22:03.329731Z",
"url": "https://files.pythonhosted.org/packages/a0/ad/584d829721da26f0de0679729e5938e4579e372986d3fe2df0da1a10750e/tesserocr-2.7.1-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d29f27228f8b1955df7f0f25957081bd3a159d2d7986a82e8a456275698a6c17",
"md5": "a2a15786e888d3100aaf4ee35b4edc8e",
"sha256": "ae794c5434373f4afa4c7f8b59f19fde810f8caf096d8bb701a4b2f3a6739460"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "a2a15786e888d3100aaf4ee35b4edc8e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5048708,
"upload_time": "2024-08-26T20:22:06",
"upload_time_iso_8601": "2024-08-26T20:22:06.632654Z",
"url": "https://files.pythonhosted.org/packages/d2/9f/27228f8b1955df7f0f25957081bd3a159d2d7986a82e8a456275698a6c17/tesserocr-2.7.1-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4eaa44d493decf9a4959f772f3ae6b72782a996dd70ec956827f229dbeac039c",
"md5": "3809d3f683d2c840077a33667c30838e",
"sha256": "0a0895a4d9ff6a34f5a6f203fe0c9899f31d6f2378ae99be80605637b622687b"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "3809d3f683d2c840077a33667c30838e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5276829,
"upload_time": "2024-08-26T20:22:10",
"upload_time_iso_8601": "2024-08-26T20:22:10.238334Z",
"url": "https://files.pythonhosted.org/packages/4e/aa/44d493decf9a4959f772f3ae6b72782a996dd70ec956827f229dbeac039c/tesserocr-2.7.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c55e35840da36e0a867b05993e7cb43a7295fc6bc378e5361d689c172a56ec59",
"md5": "36838dd993823b740ac0b737a505b26c",
"sha256": "4c3187d14b95c866aa1d34cc374a53d583e2168742eefe33347e4790af70338e"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "36838dd993823b740ac0b737a505b26c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4263125,
"upload_time": "2024-08-26T20:22:12",
"upload_time_iso_8601": "2024-08-26T20:22:12.840701Z",
"url": "https://files.pythonhosted.org/packages/c5/5e/35840da36e0a867b05993e7cb43a7295fc6bc378e5361d689c172a56ec59/tesserocr-2.7.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44f480946ebce8f9549aefa53cf810cb3991823eb567bc217764bf9e97e7bbfb",
"md5": "2803ee386ca39fa507fef3a3a411cf1a",
"sha256": "ec52be3d82136430081427062ad0211a52fc38fa28fe58e216b89f840354f216"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2803ee386ca39fa507fef3a3a411cf1a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 221211,
"upload_time": "2024-08-26T20:22:15",
"upload_time_iso_8601": "2024-08-26T20:22:15.644287Z",
"url": "https://files.pythonhosted.org/packages/44/f4/80946ebce8f9549aefa53cf810cb3991823eb567bc217764bf9e97e7bbfb/tesserocr-2.7.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed2c40e19b255cc5f37426b87028b1bae81ec151767fa3294518699e5f22801e",
"md5": "1cc3e058e9d0522e8cc8c50ae5be8a2c",
"sha256": "44e71b3e8da36b2567760309398689ea9785ee62db3ff21140a9ea6941a233c4"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "1cc3e058e9d0522e8cc8c50ae5be8a2c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4869975,
"upload_time": "2024-08-26T20:22:18",
"upload_time_iso_8601": "2024-08-26T20:22:18.066934Z",
"url": "https://files.pythonhosted.org/packages/ed/2c/40e19b255cc5f37426b87028b1bae81ec151767fa3294518699e5f22801e/tesserocr-2.7.1-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "218093ff9fc65d76d1ede7fb21454959568fe354e905d8f8dd26d46190c42700",
"md5": "ced1aaacb8c239ed4119cfa3777c103c",
"sha256": "e31a49d7784e7e52fe656719145c3a872856d67daa9bfb340c2990db00e023e9"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "ced1aaacb8c239ed4119cfa3777c103c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5139015,
"upload_time": "2024-08-26T20:22:21",
"upload_time_iso_8601": "2024-08-26T20:22:21.341504Z",
"url": "https://files.pythonhosted.org/packages/21/80/93ff9fc65d76d1ede7fb21454959568fe354e905d8f8dd26d46190c42700/tesserocr-2.7.1-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efbf76de5eb0b81bf34f2767b33091ff3af669d989bf0be19ed7c6e082a9e51f",
"md5": "9690431626220db03e870092df66f53f",
"sha256": "37abde15c1c940d691305fd87836e4cad25a1434799729c324bbcd2277bcae44"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9690431626220db03e870092df66f53f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5360587,
"upload_time": "2024-08-26T20:22:24",
"upload_time_iso_8601": "2024-08-26T20:22:24.578320Z",
"url": "https://files.pythonhosted.org/packages/ef/bf/76de5eb0b81bf34f2767b33091ff3af669d989bf0be19ed7c6e082a9e51f/tesserocr-2.7.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b3410270bd2660e153c324fd0612435655e0c7b1fe9a888357c65e23f03146d",
"md5": "68eeafa2bc7ff7fd8eed819e6de8866f",
"sha256": "1b6349d35d333d420d24acf1953ad6f1d5613ffcde462c62126b68bdfca12753"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "68eeafa2bc7ff7fd8eed819e6de8866f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4261803,
"upload_time": "2024-08-26T20:22:27",
"upload_time_iso_8601": "2024-08-26T20:22:27.024308Z",
"url": "https://files.pythonhosted.org/packages/3b/34/10270bd2660e153c324fd0612435655e0c7b1fe9a888357c65e23f03146d/tesserocr-2.7.1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6e1fc5f38e66197cfa7ccab9ccb6cf5691cf17a06e23d78a6d7f5cf2931f55f",
"md5": "8ce11b4a9bb67cdbd49186ded40e51f9",
"sha256": "42f009cde8479f3b339da12a8e419fd9559b64b13bc08a248bd0833c6ae94331"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8ce11b4a9bb67cdbd49186ded40e51f9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 221495,
"upload_time": "2024-08-26T20:22:29",
"upload_time_iso_8601": "2024-08-26T20:22:29.335650Z",
"url": "https://files.pythonhosted.org/packages/c6/e1/fc5f38e66197cfa7ccab9ccb6cf5691cf17a06e23d78a6d7f5cf2931f55f/tesserocr-2.7.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20208c0e1b140cb1dea1ef8e4c5223b373b8dc1f6b873a54d5131640fd6d555a",
"md5": "b6210faf658bcf9ba3a892d0d97b7236",
"sha256": "6e13204b3b92fac76ece6e33f55eba6335b30e379f4a7b75e285c2ad05762027"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "b6210faf658bcf9ba3a892d0d97b7236",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4839536,
"upload_time": "2024-08-26T20:22:31",
"upload_time_iso_8601": "2024-08-26T20:22:31.749199Z",
"url": "https://files.pythonhosted.org/packages/20/20/8c0e1b140cb1dea1ef8e4c5223b373b8dc1f6b873a54d5131640fd6d555a/tesserocr-2.7.1-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "52334b77784543a09f2a8da8194667d7a1f8d4c5ed3daf39fdbd6003901214c7",
"md5": "69654a46d8e7678408e2b863d5a0cb61",
"sha256": "65afdec0c5dc09a4a23a62e65524989cd940af41be1603e251a64ac10de9babf"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "69654a46d8e7678408e2b863d5a0cb61",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5116575,
"upload_time": "2024-08-26T20:22:34",
"upload_time_iso_8601": "2024-08-26T20:22:34.475552Z",
"url": "https://files.pythonhosted.org/packages/52/33/4b77784543a09f2a8da8194667d7a1f8d4c5ed3daf39fdbd6003901214c7/tesserocr-2.7.1-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b134069a2c9560bd9174334fe1f1f3b0276bbf5f886f2827eef46e8d6bae25d",
"md5": "93a7fd3930ad6d3aa5e6f775d1ff4f79",
"sha256": "4c5f59fb072c90bff8aa6a365fc82b747c2668b7b48233901728b155860d1ff9"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "93a7fd3930ad6d3aa5e6f775d1ff4f79",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5339848,
"upload_time": "2024-08-26T20:22:37",
"upload_time_iso_8601": "2024-08-26T20:22:37.097461Z",
"url": "https://files.pythonhosted.org/packages/8b/13/4069a2c9560bd9174334fe1f1f3b0276bbf5f886f2827eef46e8d6bae25d/tesserocr-2.7.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6add6782a31efff805392531a9aebdd121840b7eda8e06aceaf56e9a709ea4bc",
"md5": "0217e169a90d9b2304d4f3b7ac6b6348",
"sha256": "f62d662e3002868384e14e8cd620bdedf34ab9f9fc3ebbce527cfe032a7485ee"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0217e169a90d9b2304d4f3b7ac6b6348",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4258465,
"upload_time": "2024-08-26T20:22:40",
"upload_time_iso_8601": "2024-08-26T20:22:40.606174Z",
"url": "https://files.pythonhosted.org/packages/6a/dd/6782a31efff805392531a9aebdd121840b7eda8e06aceaf56e9a709ea4bc/tesserocr-2.7.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa6fe936612e8cbb63113dd1b7bbe2b9cef562bea5c7cb2ff05d5730345ee2f1",
"md5": "8a90dcbb55b41360c8ed4b1ac61446dc",
"sha256": "e80051812685bd521bc17cb70cf1480ffbb3e54ccc2883e90d5bcda15f8278ea"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8a90dcbb55b41360c8ed4b1ac61446dc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 217604,
"upload_time": "2024-08-26T20:22:42",
"upload_time_iso_8601": "2024-08-26T20:22:42.817159Z",
"url": "https://files.pythonhosted.org/packages/aa/6f/e936612e8cbb63113dd1b7bbe2b9cef562bea5c7cb2ff05d5730345ee2f1/tesserocr-2.7.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53b6cf74dec9251f0548738980dc427a9edc6fc13754ea0ece74f7918d960f60",
"md5": "b0cdba412268a42914876f5ca7ea1c24",
"sha256": "2690cb2330fc9349d68ff027cbdac09693fdda36470836b196c04f16dcc99e9d"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp38-cp38-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "b0cdba412268a42914876f5ca7ea1c24",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4805689,
"upload_time": "2024-08-26T20:22:45",
"upload_time_iso_8601": "2024-08-26T20:22:45.866954Z",
"url": "https://files.pythonhosted.org/packages/53/b6/cf74dec9251f0548738980dc427a9edc6fc13754ea0ece74f7918d960f60/tesserocr-2.7.1-cp38-cp38-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f80accf692d9d7146be7b8f1d4aff8c1e4927a4b7f77347b4d0dcb37ce6895e7",
"md5": "c44e95fee2ff099434d573460e92f2af",
"sha256": "d01ebd094103451ecb77b6510ade2f6bb064c51413ff35b135f649f3d6067a67"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c44e95fee2ff099434d573460e92f2af",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 5072017,
"upload_time": "2024-08-26T20:22:48",
"upload_time_iso_8601": "2024-08-26T20:22:48.906902Z",
"url": "https://files.pythonhosted.org/packages/f8/0a/ccf692d9d7146be7b8f1d4aff8c1e4927a4b7f77347b4d0dcb37ce6895e7/tesserocr-2.7.1-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba0defdf49a8dbea95f895e91ac395e61b91f8bef6223634be9a01b62e582567",
"md5": "eff830f7f700cf40580f74dc3b63f99b",
"sha256": "f8069ae6cd9ea3c056b6a596bc99f501ee9f95d6fd2928fcaffb9777071c210d"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "eff830f7f700cf40580f74dc3b63f99b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 5375496,
"upload_time": "2024-08-26T20:22:53",
"upload_time_iso_8601": "2024-08-26T20:22:53.135296Z",
"url": "https://files.pythonhosted.org/packages/ba/0d/efdf49a8dbea95f895e91ac395e61b91f8bef6223634be9a01b62e582567/tesserocr-2.7.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "024c31a49c2867c5f799614b90ea19c94985cc674cdeea93fbb738cdfef7f0cc",
"md5": "56b312b20b3636fbbeb91df3386273b7",
"sha256": "b2d3d23223d0a448877fb91af83c46ce95ff0a497a82fa93e93068148c9712e5"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "56b312b20b3636fbbeb91df3386273b7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4259255,
"upload_time": "2024-08-26T20:22:55",
"upload_time_iso_8601": "2024-08-26T20:22:55.654687Z",
"url": "https://files.pythonhosted.org/packages/02/4c/31a49c2867c5f799614b90ea19c94985cc674cdeea93fbb738cdfef7f0cc/tesserocr-2.7.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "598e91dd449bf3037a5822f46e3982f4a651f7a7890554749b6a5490b908aed1",
"md5": "45e90a85c21aa906328cc62caef9ca19",
"sha256": "ef8a09a44c2e96bab0f40dbf0633767d063680d86b79365b43fc4e1234219694"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "45e90a85c21aa906328cc62caef9ca19",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 218196,
"upload_time": "2024-08-26T20:22:57",
"upload_time_iso_8601": "2024-08-26T20:22:57.340299Z",
"url": "https://files.pythonhosted.org/packages/59/8e/91dd449bf3037a5822f46e3982f4a651f7a7890554749b6a5490b908aed1/tesserocr-2.7.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "76960bc89097513ed9e9de6ef907e9495063e3b61d50e18e25452178c593af55",
"md5": "8ad19acf755c4e3c991dea3bf6e8b12b",
"sha256": "6e613213ea5b64db06f2cba0b93c3656b7e6aec2d9b2d2e929edf49da7143225"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "8ad19acf755c4e3c991dea3bf6e8b12b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4780926,
"upload_time": "2024-08-26T20:23:00",
"upload_time_iso_8601": "2024-08-26T20:23:00.467069Z",
"url": "https://files.pythonhosted.org/packages/76/96/0bc89097513ed9e9de6ef907e9495063e3b61d50e18e25452178c593af55/tesserocr-2.7.1-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7854f1c60ccff2cf41cddd60f79588410071df8342c70b979b428988adf5c86",
"md5": "5af272a697b96112fc06e07ad834c063",
"sha256": "4a8888b765e26680a6e34b8ec09b7bb85a17e08cea76f0661eafe2a84254562a"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "5af272a697b96112fc06e07ad834c063",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5048246,
"upload_time": "2024-08-26T20:23:02",
"upload_time_iso_8601": "2024-08-26T20:23:02.950041Z",
"url": "https://files.pythonhosted.org/packages/d7/85/4f1c60ccff2cf41cddd60f79588410071df8342c70b979b428988adf5c86/tesserocr-2.7.1-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0ebef4256e5f6877f04135f8593b0aec6df853736f86d261057dcbe0c985c15",
"md5": "630755c6643827608cfd4ae5d12b3d07",
"sha256": "64f25763e56c4c29b808e59b485c930cac46b6a1ac8eadd994086dc40a29d3a1"
},
"downloads": -1,
"filename": "tesserocr-2.7.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "630755c6643827608cfd4ae5d12b3d07",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5279334,
"upload_time": "2024-08-26T20:23:06",
"upload_time_iso_8601": "2024-08-26T20:23:06.705668Z",
"url": "https://files.pythonhosted.org/packages/a0/eb/ef4256e5f6877f04135f8593b0aec6df853736f86d261057dcbe0c985c15/tesserocr-2.7.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c2621e95383b4316773dab9db892885e2eae74da05f14d520de7b66e5f9ddbb",
"md5": "cec9cd32334c4e3591fc74c22849f954",
"sha256": "3744c5c8bbabf18172849c7731be00dc2e5e44f8c556d37c850e788794ae0af4"
},
"downloads": -1,
"filename": "tesserocr-2.7.1.tar.gz",
"has_sig": false,
"md5_digest": "cec9cd32334c4e3591fc74c22849f954",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 71816,
"upload_time": "2024-08-26T20:23:08",
"upload_time_iso_8601": "2024-08-26T20:23:08.910671Z",
"url": "https://files.pythonhosted.org/packages/1c/26/21e95383b4316773dab9db892885e2eae74da05f14d520de7b66e5f9ddbb/tesserocr-2.7.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-26 20:23:08",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sirfz",
"github_project": "tesserocr",
"travis_ci": true,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "Pillow",
"specs": []
}
],
"tox": true,
"lcname": "tesserocr"
}