tesserocr


Nametesserocr JSON
Version 2.7.0 PyPI version JSON
download
home_pagehttps://github.com/sirfz/tesserocr
SummaryA simple, Pillow-friendly, Python wrapper around tesseract-ocr API using Cython
upload_time2024-04-27 15:20:39
maintainerNone
docs_urlNone
authorFayez Zouheiry
requires_pythonNone
licenseMIT
keywords tesseract tesseract-ocr ocr optical character recognition pil pillow cython
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            =========
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/0a/54/cada4e5b7d96f2e76db8f237ccbde724b988bfeda0749e9bc91e08709e13/tesserocr-2.7.0.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.0",
    "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": "6788f3211b385088e6a5796d548e59e2b60dc9776b5e059f7bf0ba4b9506e052",
                "md5": "9c735e645a11d4dcdc880730e4130226",
                "sha256": "59d6e5f7d5d5a1e5bc1bb7610f19b4689f83594644d2ac617b51d7a2100d1883"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c735e645a11d4dcdc880730e4130226",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4256565,
            "upload_time": "2024-04-27T15:12:40",
            "upload_time_iso_8601": "2024-04-27T15:12:40.846430Z",
            "url": "https://files.pythonhosted.org/packages/67/88/f3211b385088e6a5796d548e59e2b60dc9776b5e059f7bf0ba4b9506e052/tesserocr-2.7.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1980b813c95a708ea189b6fd03ffb89236a01f7587193c1998137fe73715ec88",
                "md5": "548dd3779da83d85e1d51a0850acc762",
                "sha256": "13f1b6a2c72115bc0e29ceb4036d667e12dba2d8a29f4ef8e74760dd7fc752f8"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "548dd3779da83d85e1d51a0850acc762",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 218020,
            "upload_time": "2024-04-27T15:12:44",
            "upload_time_iso_8601": "2024-04-27T15:12:44.327136Z",
            "url": "https://files.pythonhosted.org/packages/19/80/b813c95a708ea189b6fd03ffb89236a01f7587193c1998137fe73715ec88/tesserocr-2.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b7ac4d1a0b6d4a45191617238d5ca57bc09d6b96eb5b0ea616d44378b8951d1",
                "md5": "81e2a8a9189e026ddc2400ee6eb4bc50",
                "sha256": "35975f930cba251949ac15523137db3534b35a54fcef6e63d75645d8c30a8f15"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "81e2a8a9189e026ddc2400ee6eb4bc50",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4782283,
            "upload_time": "2024-04-27T15:13:06",
            "upload_time_iso_8601": "2024-04-27T15:13:06.191225Z",
            "url": "https://files.pythonhosted.org/packages/8b/7a/c4d1a0b6d4a45191617238d5ca57bc09d6b96eb5b0ea616d44378b8951d1/tesserocr-2.7.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12fd0f6d9a28bb5f2ac00694d35e0ebd2d6717e0afbca3386d06fc8c3ed8182a",
                "md5": "b6927a9cea0aa14d80bb46a67205a103",
                "sha256": "dad62774741e5e6fdb73aa18ee1dfebb001d2e95ac1d549e3bfd12bb557f25b5"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6927a9cea0aa14d80bb46a67205a103",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5045790,
            "upload_time": "2024-04-27T15:13:33",
            "upload_time_iso_8601": "2024-04-27T15:13:33.951474Z",
            "url": "https://files.pythonhosted.org/packages/12/fd/0f6d9a28bb5f2ac00694d35e0ebd2d6717e0afbca3386d06fc8c3ed8182a/tesserocr-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e70208f7e3f1f84f2fa9d6f4c478041a86b9882301bc362fe97560e42be952ab",
                "md5": "78f4f711cb392a4c9834dd407bc75876",
                "sha256": "0d683a48afffc002037b46ffd76f7421f50065a5f1e578d30827004c10586fce"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "78f4f711cb392a4c9834dd407bc75876",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5278570,
            "upload_time": "2024-04-27T15:14:00",
            "upload_time_iso_8601": "2024-04-27T15:14:00.888708Z",
            "url": "https://files.pythonhosted.org/packages/e7/02/08f7e3f1f84f2fa9d6f4c478041a86b9882301bc362fe97560e42be952ab/tesserocr-2.7.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f09aa5d046ff5b7c963b81b3d0e2b07a7c8e013e8f86ba50210bd19cb13e36fa",
                "md5": "01aad7de2810671d8a1e66e5fdf7e8f1",
                "sha256": "4e04d6a37daf4101e994e0979a3804622cd860090377e2b3dd7a526ee815d8da"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01aad7de2810671d8a1e66e5fdf7e8f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4260841,
            "upload_time": "2024-04-27T15:14:19",
            "upload_time_iso_8601": "2024-04-27T15:14:19.807639Z",
            "url": "https://files.pythonhosted.org/packages/f0/9a/a5d046ff5b7c963b81b3d0e2b07a7c8e013e8f86ba50210bd19cb13e36fa/tesserocr-2.7.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3683a5b38f70b14bb00511b9384e9a9a50d8c2db2aed2819401ae0b83b46fa6",
                "md5": "0a574282007a1a57c7acf04720056798",
                "sha256": "04218778efbf05dcddfaa160c54176b135732b2a6467d8bcc20814bc9c74117a"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0a574282007a1a57c7acf04720056798",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 221381,
            "upload_time": "2024-04-27T15:14:23",
            "upload_time_iso_8601": "2024-04-27T15:14:23.339810Z",
            "url": "https://files.pythonhosted.org/packages/d3/68/3a5b38f70b14bb00511b9384e9a9a50d8c2db2aed2819401ae0b83b46fa6/tesserocr-2.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ee4f86179a1b5a78ecd0649e0960f0dbcf2ee5fad2e8b060875eb9d66d88927",
                "md5": "388485d3f2a76b0cca71bb0187f44cb7",
                "sha256": "c6e2c8450746a025eaa09e2c7924844919fa1470f82cf52fcebf07d7d27b29ce"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "388485d3f2a76b0cca71bb0187f44cb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4869684,
            "upload_time": "2024-04-27T15:14:42",
            "upload_time_iso_8601": "2024-04-27T15:14:42.755003Z",
            "url": "https://files.pythonhosted.org/packages/6e/e4/f86179a1b5a78ecd0649e0960f0dbcf2ee5fad2e8b060875eb9d66d88927/tesserocr-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "519c67699257281814009d1e65c4cec331aa2ee828f9400f8aacb4b8da1f7590",
                "md5": "50ad104e3063da5738b6bf0403f54d05",
                "sha256": "4f7ccc71ddfe50059cbc9afb4ad55a9b0b781b760254efec169d3a34b93a21d5"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50ad104e3063da5738b6bf0403f54d05",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5137782,
            "upload_time": "2024-04-27T15:15:10",
            "upload_time_iso_8601": "2024-04-27T15:15:10.552790Z",
            "url": "https://files.pythonhosted.org/packages/51/9c/67699257281814009d1e65c4cec331aa2ee828f9400f8aacb4b8da1f7590/tesserocr-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "815b74f0ccb722a3105e935ccb265adcde5474ca4b72890b407153914da0bc5c",
                "md5": "486751100e3096839ca6d4dd77a0a221",
                "sha256": "d3ca02d8b7c3104c531f514e7440ef371be57d0599ba12098300751613d3bb62"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "486751100e3096839ca6d4dd77a0a221",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5359894,
            "upload_time": "2024-04-27T15:15:43",
            "upload_time_iso_8601": "2024-04-27T15:15:43.483213Z",
            "url": "https://files.pythonhosted.org/packages/81/5b/74f0ccb722a3105e935ccb265adcde5474ca4b72890b407153914da0bc5c/tesserocr-2.7.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83b0b2be9c218777561d4e2cba401b9d8c61eb89abe205a6420e3c08b80033c0",
                "md5": "9e3665388e8e24f96b338f576001656a",
                "sha256": "0c1a65989207e012853f68365a38029c994fc2742a30c1776e7aae8e11af4a7c"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e3665388e8e24f96b338f576001656a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4259526,
            "upload_time": "2024-04-27T15:16:02",
            "upload_time_iso_8601": "2024-04-27T15:16:02.003804Z",
            "url": "https://files.pythonhosted.org/packages/83/b0/b2be9c218777561d4e2cba401b9d8c61eb89abe205a6420e3c08b80033c0/tesserocr-2.7.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42e46b8e094a6a8011f77aab4d98013f45b27ffbe77613b5abb563e0af86077c",
                "md5": "22762e6190b3bf13686fed84d6373ceb",
                "sha256": "9aa605b873798bf49e9e0a0b8ec6dcfb75575ad511a31d6fec27a3280d6d343c"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "22762e6190b3bf13686fed84d6373ceb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 221722,
            "upload_time": "2024-04-27T15:16:05",
            "upload_time_iso_8601": "2024-04-27T15:16:05.081376Z",
            "url": "https://files.pythonhosted.org/packages/42/e4/6b8e094a6a8011f77aab4d98013f45b27ffbe77613b5abb563e0af86077c/tesserocr-2.7.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f76d0f7838b1278fc58abd7f18173cdc7c32f0009482eca9f44667a17e33a9a0",
                "md5": "39c47d9da79c37851f96abd38f39068b",
                "sha256": "751e5242083a2c5302f3ed716e676f092a078b508c1e872e52e64a4c4b2b560a"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "39c47d9da79c37851f96abd38f39068b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4840141,
            "upload_time": "2024-04-27T15:16:27",
            "upload_time_iso_8601": "2024-04-27T15:16:27.348663Z",
            "url": "https://files.pythonhosted.org/packages/f7/6d/0f7838b1278fc58abd7f18173cdc7c32f0009482eca9f44667a17e33a9a0/tesserocr-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06daf630deded750bb3976552bdcccfbb9faffe79f950a51d57980e723e8c9fb",
                "md5": "292c2d7c58cd7d560c75a8bca8934b90",
                "sha256": "7c44869093b498ed63bdca5b10a6f75fd6b9d58ab412cf5d9ed609d6f5f59e5e"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "292c2d7c58cd7d560c75a8bca8934b90",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5115596,
            "upload_time": "2024-04-27T15:16:55",
            "upload_time_iso_8601": "2024-04-27T15:16:55.399347Z",
            "url": "https://files.pythonhosted.org/packages/06/da/f630deded750bb3976552bdcccfbb9faffe79f950a51d57980e723e8c9fb/tesserocr-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "172bd960abbac64b95817e99402884f376860569b6cccfd98fe5256414303bba",
                "md5": "c81821adde3625559feb74dd0b5ab461",
                "sha256": "311b8315ce1ff16a67393e6173009405a3bc609c8d496e281a68229f83c2bcc1"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c81821adde3625559feb74dd0b5ab461",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5341994,
            "upload_time": "2024-04-27T15:17:25",
            "upload_time_iso_8601": "2024-04-27T15:17:25.218463Z",
            "url": "https://files.pythonhosted.org/packages/17/2b/d960abbac64b95817e99402884f376860569b6cccfd98fe5256414303bba/tesserocr-2.7.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e05b262a1569c561d95990b531a95159bf481c411a3e7479a0dc3e18c720e42",
                "md5": "654455f18727e604c98adc0e7783ac68",
                "sha256": "1a0784398142ef40fe87a9bf10ab0bcfb19069ae204bda46d28482a5304b5145"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "654455f18727e604c98adc0e7783ac68",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4256172,
            "upload_time": "2024-04-27T15:17:47",
            "upload_time_iso_8601": "2024-04-27T15:17:47.704803Z",
            "url": "https://files.pythonhosted.org/packages/5e/05/b262a1569c561d95990b531a95159bf481c411a3e7479a0dc3e18c720e42/tesserocr-2.7.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "629684fa34ef6eae2dd65d797f48f26a7aa1f6b5e4ea98eea5542abb29d45f8c",
                "md5": "12edd76b46b0ec3a89fd0eb4b7db6eb9",
                "sha256": "e416002ce51c72a9505bcd3beb0febac87113146d9394dd65c44ea5c0d9fbd33"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "12edd76b46b0ec3a89fd0eb4b7db6eb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 217791,
            "upload_time": "2024-04-27T15:17:50",
            "upload_time_iso_8601": "2024-04-27T15:17:50.736647Z",
            "url": "https://files.pythonhosted.org/packages/62/96/84fa34ef6eae2dd65d797f48f26a7aa1f6b5e4ea98eea5542abb29d45f8c/tesserocr-2.7.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2036a66d7ff64b7182767ccb55c5dd2db52c3608e26ca3654920b2553f636177",
                "md5": "03bf7c6adfa10111a08cec5722ff8050",
                "sha256": "f3e9aecdf85f2954e58ab77a7ecfdcb32e914453c39e51af2f8058a10e402048"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "03bf7c6adfa10111a08cec5722ff8050",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4806943,
            "upload_time": "2024-04-27T15:18:10",
            "upload_time_iso_8601": "2024-04-27T15:18:10.702154Z",
            "url": "https://files.pythonhosted.org/packages/20/36/a66d7ff64b7182767ccb55c5dd2db52c3608e26ca3654920b2553f636177/tesserocr-2.7.0-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff2b3106a0ceecf1511d140a5435edce1d6ea077763de4535edefad29fd9121c",
                "md5": "b591b1a08deaf6ad0a5f9aae53c233a1",
                "sha256": "81ef428da185197db078712f04389d9e4e5c2bbd6519408769f387eb0985fc2e"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b591b1a08deaf6ad0a5f9aae53c233a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5071314,
            "upload_time": "2024-04-27T15:18:33",
            "upload_time_iso_8601": "2024-04-27T15:18:33.978991Z",
            "url": "https://files.pythonhosted.org/packages/ff/2b/3106a0ceecf1511d140a5435edce1d6ea077763de4535edefad29fd9121c/tesserocr-2.7.0-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82ef335f345ae08e48ff3cc4c884c2037c4cf6fc0221badf52d319a2023951ff",
                "md5": "e84f6aa7d9b7249802fdb92193599805",
                "sha256": "464e6bf2e64ce6e6cb995507c60325d54f4b79723936013075e820e86f026f93"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e84f6aa7d9b7249802fdb92193599805",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5374740,
            "upload_time": "2024-04-27T15:19:01",
            "upload_time_iso_8601": "2024-04-27T15:19:01.804691Z",
            "url": "https://files.pythonhosted.org/packages/82/ef/335f345ae08e48ff3cc4c884c2037c4cf6fc0221badf52d319a2023951ff/tesserocr-2.7.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43189072efd51d112b8bf968f7b931d1836e4434d3531ab7e03007000cc0731a",
                "md5": "b29558a1c210e7de597403ebbf474122",
                "sha256": "08bdb97b9a9464c4588b39b58ed2f7f740bbd94c097f8cfc043a2119aeb409d2"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b29558a1c210e7de597403ebbf474122",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4256933,
            "upload_time": "2024-04-27T15:19:26",
            "upload_time_iso_8601": "2024-04-27T15:19:26.049137Z",
            "url": "https://files.pythonhosted.org/packages/43/18/9072efd51d112b8bf968f7b931d1836e4434d3531ab7e03007000cc0731a/tesserocr-2.7.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f88c77431409836ba5fc255ac75f4cddcc183fab8a03d2e97ae06dec7fa646a",
                "md5": "5d5f22b1dbcc77c2e0ed2b202414b7c6",
                "sha256": "42abb19243d9e5c318cb7da4aa8adfdcc5163d7c80b0d920dab4b644895cbbe6"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5d5f22b1dbcc77c2e0ed2b202414b7c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 218373,
            "upload_time": "2024-04-27T15:19:29",
            "upload_time_iso_8601": "2024-04-27T15:19:29.282144Z",
            "url": "https://files.pythonhosted.org/packages/4f/88/c77431409836ba5fc255ac75f4cddcc183fab8a03d2e97ae06dec7fa646a/tesserocr-2.7.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42b565337b0c4d4999cce6702ff70ee589fb23884a5b8c269f9dc63d017f398e",
                "md5": "a0a529ae1e5963e44a7fa8f3519b20ae",
                "sha256": "c1f455732697657cc0e39f4453b80e9e74bc87fcc5ebf85c325cd939f7c136c6"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a0a529ae1e5963e44a7fa8f3519b20ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4782427,
            "upload_time": "2024-04-27T15:19:50",
            "upload_time_iso_8601": "2024-04-27T15:19:50.737122Z",
            "url": "https://files.pythonhosted.org/packages/42/b5/65337b0c4d4999cce6702ff70ee589fb23884a5b8c269f9dc63d017f398e/tesserocr-2.7.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a6b3e9f8021f860bf072af719d7bdbbfa6adb434b37ea726f3a2023a3944534",
                "md5": "e1d455c08b82add5ced00ec776fd0348",
                "sha256": "7c87712af9883a774cf182ddb355f49973e86cec4f7bf3f424cf8d87af595b13"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1d455c08b82add5ced00ec776fd0348",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5047825,
            "upload_time": "2024-04-27T15:20:05",
            "upload_time_iso_8601": "2024-04-27T15:20:05.913370Z",
            "url": "https://files.pythonhosted.org/packages/4a/6b/3e9f8021f860bf072af719d7bdbbfa6adb434b37ea726f3a2023a3944534/tesserocr-2.7.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "850af3e77ecc5b62b98cf00fe88a691b4d6027f482229b19e0e56eac3c8d1bc3",
                "md5": "a1b6c5255b3f92edc311f5706c228445",
                "sha256": "4acd2eb300f8dcb3bbe1b07d0d7cade09492c37068e3785ff0b2b2158353143c"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1b6c5255b3f92edc311f5706c228445",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5279360,
            "upload_time": "2024-04-27T15:20:36",
            "upload_time_iso_8601": "2024-04-27T15:20:36.454912Z",
            "url": "https://files.pythonhosted.org/packages/85/0a/f3e77ecc5b62b98cf00fe88a691b4d6027f482229b19e0e56eac3c8d1bc3/tesserocr-2.7.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a54cada4e5b7d96f2e76db8f237ccbde724b988bfeda0749e9bc91e08709e13",
                "md5": "7785ec06782e06d9d9278d53213f952e",
                "sha256": "45c093630337d01a6a8f977a246ad6d732eb11f2e072bb226d59ad3d24781c99"
            },
            "downloads": -1,
            "filename": "tesserocr-2.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7785ec06782e06d9d9278d53213f952e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 71807,
            "upload_time": "2024-04-27T15:20:39",
            "upload_time_iso_8601": "2024-04-27T15:20:39.026895Z",
            "url": "https://files.pythonhosted.org/packages/0a/54/cada4e5b7d96f2e76db8f237ccbde724b988bfeda0749e9bc91e08709e13/tesserocr-2.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 15:20:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sirfz",
    "github_project": "tesserocr",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "tesserocr"
}
        
Elapsed time: 0.24294s