imread


Nameimread JSON
Version 0.7.5 PyPI version JSON
download
home_pagehttp://luispedro.org/software/imread
Summaryimread: Image reading library
upload_time2023-11-22 10:50:34
maintainer
docs_urlhttps://pythonhosted.org/imread/
authorLuis Pedro Coelho
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ================================
mahotas-imread: Read Image Files
================================

.. image:: https://api.travis-ci.com/luispedro/imread.png
   :target: https://travis-ci.com/luispedro/imread
.. image:: https://anaconda.org/conda-forge/imread/badges/license.svg
   :target: https://opensource.org/licenses/MIT
.. image:: https://anaconda.org/conda-forge/imread/badges/installer/conda.svg
   :target: https://anaconda.org/conda-forge/imread
.. image:: https://anaconda.org/conda-forge/imread/badges/downloads.svg
   :target: https://anaconda.org/conda-forge/imread

IO with images and numpy arrays.


Mahotas-imread is a simple module with a small number of functions:

imread
    Reads an image file
imread_multi
    Reads an image file with multiple images. Currently, TIFF and STK (a TIFF
    sub-based format) support this function.
imsave
    Writes an image file

Example (which uses `mahotas <https://luispedro.org/software/mahotas>`__ for
Gaussian filtering)::


    from imread import imread, imsave
    from mahotas import gaussian_filter
    lena = imread('lena.jpeg')

    lena = gaussian_filter(lena.astype(float), 4.)
    imsave('lena-filtered.jpeg', lena)


This grew out of frustration at current image loading solutions in Python, in
either my packages [`mahotas <https://mahotas.rtfd.io>`__] or packages from
others [`scikit-image <https://scikit-image.org/>`__, for example].

The relationship with numpy is very contained and this could be easily
repurposed to load images in other frameworks, even other programming
languages.

`Online documentation <https://imread.rtfd.io/>`__

Python versions 2.6, 2.7, 3.3+ are officially supported.

Python 3.2 (and earlier versions in the Python 3 series) are officially **not
supported**. Patches will be accepted if they do not mess up anything else, but
bug reports will not be considered as very high priority.

Citation
--------

.. _Citation:

If you use imread on a published publication, please cite the main `mahotas
<https://mahotas.rtfd.io>`__ paper (imread is a spin-off of mahotas):

    **Luis Pedro Coelho** Mahotas: Open source software for scriptable computer
    vision in Journal of Open Research Software, vol 1, 2013. [`DOI
    <https://dx.doi.org/10.5334/jors.ac>`__]


In Bibtex format::

    @article{mahotas,
        author = {Luis Pedro Coelho},
        title = {Mahotas: Open source software for scriptable computer vision},
        journal = {Journal of Open Research Software},
        year = {2013},
        doi = {https://dx.doi.org/10.5334/jors.ac},
        month = {July},
        volume = {1}
    }


Installation/Dependencies
~~~~~~~~~~~~~~~~~~~~~~~~~

The easiest environment to install mahotas-imread is anaconda, through
`conda-forge <https://conda-forge.github.io>`__. Just use::

    conda config --add channels conda-forge
    conda install imread


To compile on debian/ubuntu::

    sudo apt-get install libpng12-dev libtiff4-dev libwebp-dev
    sudo apt-get install xcftools

To compile on Mac::

    sudo port install libpng tiff webp

Either way, you can then compile with::

    python setup.py build

and install with::

    python setup.py install

On Windows, you can also just download a pre-built package from `C. Gohlke's
repository <https://www.lfd.uci.edu/~gohlke/pythonlibs/#imread>`__

On nix, you can use::

    nix-env -iA nixpkgs.python3Packages.imread

or use the ``pkgs.python3Packages.imread`` object in your ``*.nix`` files.

Links & Contacts
----------------

*Documentation*: `https://imread.readthedocs.io/ <https://imread.readthedocs.io/>`__

*Issue Tracker*: `github imread issues <https://github.com/luispedro/imread>`__

*Mailing List*: Use the `pythonvision mailing list
<https://groups.google.com/group/pythonvision?pli=1>`_ for questions, bug
submissions, etc.

*Main Author & Maintainer*: `Luis Pedro Coelho <https://luispedro.org>`__ (follow on `twitter
<https://twitter.com/luispedrocoelho>`__ or `github
<https://github.com/luispedro>`__).

History
~~~~~~~

Version 0.7.5 (2023-11-22)
--------------------------
- Fix build issue (#43, patch by @carlosal1015)

Version 0.7.4 (2020-04-14)
--------------------------
- Add missing header files to distribution

Version 0.7.3 (2020-04-09)
--------------------------
- Add missing test data to distribution

Version 0.7.2 (2020-03-24)
--------------------------
- Fix several memory access bugs in parsers (reported by Robert Scott)

Version 0.7.1 (2019-05-09)
--------------------------
- Fix 16-bit RGB/RGBA TIFF write (patch by Tomi Aarnio)

Version 0.7.0 (2018-09-30)
--------------------------
- Add support for reading ImageJ ROIs


Version 0.6.1 (2018-02-15)
--------------------------
- Support pathlib paths as function arguments
- Fix 16 bit PNG write support (patch by Tomi Aarnio)


Version 0.6 (2016-09-21)
--------------------------
- Add `supports_format` function
- Make png compression level tunable when calling imsave
- Add imsave_multi
- Add partial support for reading PNG files in Gray+alpha format


Version 0.5.1 (2014-11-06)
--------------------------
- Improve tests to work after installation
- Fix compilation in MSVC (patch by Christoph Gohlke)


Version 0.5 (2014-10-16)
------------------------
- Add magic-number based format auto-detection
- Auto detect whether webp is installed
- Fix WebP reading (update to newer API)

Version 0.4 (2014-07-21)
------------------------
- Add configuration for TIFF saving
- Correctly save 16 bit PNG images
- Better error messages for JPEG


Version 0.3.2 (2013-10-06)
--------------------------
- Added imload*/imwrite synonyms as suggested by Thouis (Ray) Jones
- Options framework
- Allow user to specify JPEG quality when saving
- Fix loading of 16 bit PNG images

Version 0.3.1 (2013-06-20)
--------------------------
- Fix possible crash on error with TIFF
- Fix compilation on Windows (reported by Volker Hilsenstein)
- Make it easy to compile without WebP

Version 0.3.0 (2013-07-29)
--------------------------
- Support for reading from in-memory blobs
- Support for reading & writing TIFF metadata
- Add PHOTOMETRIC tag to TIFF (reported by Volker Hilsenstein)
- Support writing RGB TIFFs

Version 0.2.6 (2013-06-19)
--------------------------
- Fix hard crash when saving with non-existing file type
- Fix compilation on MacOS (patch by Alexander Bohn)
- Add ``verbose`` argument to tests.run()
- Better error when attempting to save floating point images

Version 0.2.5 (2012-10-29)
--------------------------
- Correctly accept uppercase extensions
- Python 3 support (patch by Christoph Gohlke [pull request 8 on github])
- Read 1-Bit PNGs
- Read simple BMPs (compression and many bit types not supported)
- More complete debug mode (export DEBUG=2 when building), more checks

Version 0.2.4 (2012-06-26)
--------------------------
- Add lzw.cpp to source distribution
- Support saving 16-bit TIFF
- Better Mac OS support (patch from Alexander Bohn)

Version 0.2.3 (2012-06-8)
-------------------------
- Fix imread_multi

Version 0.2.2 (2012-06-5)
-------------------------
- Add `formatstr` argument to imread
- Open files in binary mode on Windows (patch by Christoph Gohlke)
- Read-only support for LSM files
- Read-only support for XCF files (through `xcf2png`)
- Fix writing of non-contiguous images (at least PNG was affected)


Version 0.2.1 (2012-02-11)
--------------------------
- Add missing files to distribution

Version 0.2 (2012-03-19)
------------------------
- Compile on MSVC++ (Patches by Christoph Gohlke)
- Support for WebP
- Support for 1-bit TIFFs
- Better error message
- Support for multi-page TIFF reading
- Experimental read-only support for STK files


Version 0.1 (2012-02-28)
------------------------

- Support for PNG
- Support for TIFF
- Support for JPEG


            

Raw data

            {
    "_id": null,
    "home_page": "http://luispedro.org/software/imread",
    "name": "imread",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/imread/",
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Luis Pedro Coelho",
    "author_email": "luis@luispedro.org",
    "download_url": "https://files.pythonhosted.org/packages/fd/2a/217f661b63b7c7d3bc028780e33d52e978d0df75f6d925c7c436d0e63d4f/imread-0.7.5.tar.gz",
    "platform": "Any",
    "description": "================================\nmahotas-imread: Read Image Files\n================================\n\n.. image:: https://api.travis-ci.com/luispedro/imread.png\n   :target: https://travis-ci.com/luispedro/imread\n.. image:: https://anaconda.org/conda-forge/imread/badges/license.svg\n   :target: https://opensource.org/licenses/MIT\n.. image:: https://anaconda.org/conda-forge/imread/badges/installer/conda.svg\n   :target: https://anaconda.org/conda-forge/imread\n.. image:: https://anaconda.org/conda-forge/imread/badges/downloads.svg\n   :target: https://anaconda.org/conda-forge/imread\n\nIO with images and numpy arrays.\n\n\nMahotas-imread is a simple module with a small number of functions:\n\nimread\n    Reads an image file\nimread_multi\n    Reads an image file with multiple images. Currently, TIFF and STK (a TIFF\n    sub-based format) support this function.\nimsave\n    Writes an image file\n\nExample (which uses `mahotas <https://luispedro.org/software/mahotas>`__ for\nGaussian filtering)::\n\n\n    from imread import imread, imsave\n    from mahotas import gaussian_filter\n    lena = imread('lena.jpeg')\n\n    lena = gaussian_filter(lena.astype(float), 4.)\n    imsave('lena-filtered.jpeg', lena)\n\n\nThis grew out of frustration at current image loading solutions in Python, in\neither my packages [`mahotas <https://mahotas.rtfd.io>`__] or packages from\nothers [`scikit-image <https://scikit-image.org/>`__, for example].\n\nThe relationship with numpy is very contained and this could be easily\nrepurposed to load images in other frameworks, even other programming\nlanguages.\n\n`Online documentation <https://imread.rtfd.io/>`__\n\nPython versions 2.6, 2.7, 3.3+ are officially supported.\n\nPython 3.2 (and earlier versions in the Python 3 series) are officially **not\nsupported**. Patches will be accepted if they do not mess up anything else, but\nbug reports will not be considered as very high priority.\n\nCitation\n--------\n\n.. _Citation:\n\nIf you use imread on a published publication, please cite the main `mahotas\n<https://mahotas.rtfd.io>`__ paper (imread is a spin-off of mahotas):\n\n    **Luis Pedro Coelho** Mahotas: Open source software for scriptable computer\n    vision in Journal of Open Research Software, vol 1, 2013. [`DOI\n    <https://dx.doi.org/10.5334/jors.ac>`__]\n\n\nIn Bibtex format::\n\n    @article{mahotas,\n        author = {Luis Pedro Coelho},\n        title = {Mahotas: Open source software for scriptable computer vision},\n        journal = {Journal of Open Research Software},\n        year = {2013},\n        doi = {https://dx.doi.org/10.5334/jors.ac},\n        month = {July},\n        volume = {1}\n    }\n\n\nInstallation/Dependencies\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe easiest environment to install mahotas-imread is anaconda, through\n`conda-forge <https://conda-forge.github.io>`__. Just use::\n\n    conda config --add channels conda-forge\n    conda install imread\n\n\nTo compile on debian/ubuntu::\n\n    sudo apt-get install libpng12-dev libtiff4-dev libwebp-dev\n    sudo apt-get install xcftools\n\nTo compile on Mac::\n\n    sudo port install libpng tiff webp\n\nEither way, you can then compile with::\n\n    python setup.py build\n\nand install with::\n\n    python setup.py install\n\nOn Windows, you can also just download a pre-built package from `C. Gohlke's\nrepository <https://www.lfd.uci.edu/~gohlke/pythonlibs/#imread>`__\n\nOn nix, you can use::\n\n    nix-env -iA nixpkgs.python3Packages.imread\n\nor use the ``pkgs.python3Packages.imread`` object in your ``*.nix`` files.\n\nLinks & Contacts\n----------------\n\n*Documentation*: `https://imread.readthedocs.io/ <https://imread.readthedocs.io/>`__\n\n*Issue Tracker*: `github imread issues <https://github.com/luispedro/imread>`__\n\n*Mailing List*: Use the `pythonvision mailing list\n<https://groups.google.com/group/pythonvision?pli=1>`_ for questions, bug\nsubmissions, etc.\n\n*Main Author & Maintainer*: `Luis Pedro Coelho <https://luispedro.org>`__ (follow on `twitter\n<https://twitter.com/luispedrocoelho>`__ or `github\n<https://github.com/luispedro>`__).\n\nHistory\n~~~~~~~\n\nVersion 0.7.5 (2023-11-22)\n--------------------------\n- Fix build issue (#43, patch by @carlosal1015)\n\nVersion 0.7.4 (2020-04-14)\n--------------------------\n- Add missing header files to distribution\n\nVersion 0.7.3 (2020-04-09)\n--------------------------\n- Add missing test data to distribution\n\nVersion 0.7.2 (2020-03-24)\n--------------------------\n- Fix several memory access bugs in parsers (reported by Robert Scott)\n\nVersion 0.7.1 (2019-05-09)\n--------------------------\n- Fix 16-bit RGB/RGBA TIFF write (patch by Tomi Aarnio)\n\nVersion 0.7.0 (2018-09-30)\n--------------------------\n- Add support for reading ImageJ ROIs\n\n\nVersion 0.6.1 (2018-02-15)\n--------------------------\n- Support pathlib paths as function arguments\n- Fix 16 bit PNG write support (patch by Tomi Aarnio)\n\n\nVersion 0.6 (2016-09-21)\n--------------------------\n- Add `supports_format` function\n- Make png compression level tunable when calling imsave\n- Add imsave_multi\n- Add partial support for reading PNG files in Gray+alpha format\n\n\nVersion 0.5.1 (2014-11-06)\n--------------------------\n- Improve tests to work after installation\n- Fix compilation in MSVC (patch by Christoph Gohlke)\n\n\nVersion 0.5 (2014-10-16)\n------------------------\n- Add magic-number based format auto-detection\n- Auto detect whether webp is installed\n- Fix WebP reading (update to newer API)\n\nVersion 0.4 (2014-07-21)\n------------------------\n- Add configuration for TIFF saving\n- Correctly save 16 bit PNG images\n- Better error messages for JPEG\n\n\nVersion 0.3.2 (2013-10-06)\n--------------------------\n- Added imload*/imwrite synonyms as suggested by Thouis (Ray) Jones\n- Options framework\n- Allow user to specify JPEG quality when saving\n- Fix loading of 16 bit PNG images\n\nVersion 0.3.1 (2013-06-20)\n--------------------------\n- Fix possible crash on error with TIFF\n- Fix compilation on Windows (reported by Volker Hilsenstein)\n- Make it easy to compile without WebP\n\nVersion 0.3.0 (2013-07-29)\n--------------------------\n- Support for reading from in-memory blobs\n- Support for reading & writing TIFF metadata\n- Add PHOTOMETRIC tag to TIFF (reported by Volker Hilsenstein)\n- Support writing RGB TIFFs\n\nVersion 0.2.6 (2013-06-19)\n--------------------------\n- Fix hard crash when saving with non-existing file type\n- Fix compilation on MacOS (patch by Alexander Bohn)\n- Add ``verbose`` argument to tests.run()\n- Better error when attempting to save floating point images\n\nVersion 0.2.5 (2012-10-29)\n--------------------------\n- Correctly accept uppercase extensions\n- Python 3 support (patch by Christoph Gohlke [pull request 8 on github])\n- Read 1-Bit PNGs\n- Read simple BMPs (compression and many bit types not supported)\n- More complete debug mode (export DEBUG=2 when building), more checks\n\nVersion 0.2.4 (2012-06-26)\n--------------------------\n- Add lzw.cpp to source distribution\n- Support saving 16-bit TIFF\n- Better Mac OS support (patch from Alexander Bohn)\n\nVersion 0.2.3 (2012-06-8)\n-------------------------\n- Fix imread_multi\n\nVersion 0.2.2 (2012-06-5)\n-------------------------\n- Add `formatstr` argument to imread\n- Open files in binary mode on Windows (patch by Christoph Gohlke)\n- Read-only support for LSM files\n- Read-only support for XCF files (through `xcf2png`)\n- Fix writing of non-contiguous images (at least PNG was affected)\n\n\nVersion 0.2.1 (2012-02-11)\n--------------------------\n- Add missing files to distribution\n\nVersion 0.2 (2012-03-19)\n------------------------\n- Compile on MSVC++ (Patches by Christoph Gohlke)\n- Support for WebP\n- Support for 1-bit TIFFs\n- Better error message\n- Support for multi-page TIFF reading\n- Experimental read-only support for STK files\n\n\nVersion 0.1 (2012-02-28)\n------------------------\n\n- Support for PNG\n- Support for TIFF\n- Support for JPEG\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "imread: Image reading library",
    "version": "0.7.5",
    "project_urls": {
        "Homepage": "http://luispedro.org/software/imread"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dc2cccda93a46baf58eb52e5c7c383bf83664d8ec16d86037a30069502b5fbb",
                "md5": "b8e162bddc74fffa444ce81e449ffcf1",
                "sha256": "407adfd89e74785033095b3f9decf80d0432f7c4d2058a8eb3b0624c849fcc85"
            },
            "downloads": -1,
            "filename": "imread-0.7.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8e162bddc74fffa444ce81e449ffcf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1547487,
            "upload_time": "2023-11-22T10:51:03",
            "upload_time_iso_8601": "2023-11-22T10:51:03.711459Z",
            "url": "https://files.pythonhosted.org/packages/1d/c2/cccda93a46baf58eb52e5c7c383bf83664d8ec16d86037a30069502b5fbb/imread-0.7.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e12263d736789f4edaa98d756f51272d84bf6c3f6eb27e169f50b5dcaebdd3d7",
                "md5": "00f54603c5fd588fde3a8897b9f1ac80",
                "sha256": "7f34b31c36acbb249ee7f91840634a8a6bb94ae37f7ea36580915112469582cf"
            },
            "downloads": -1,
            "filename": "imread-0.7.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00f54603c5fd588fde3a8897b9f1ac80",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1548553,
            "upload_time": "2023-11-22T10:54:32",
            "upload_time_iso_8601": "2023-11-22T10:54:32.593046Z",
            "url": "https://files.pythonhosted.org/packages/e1/22/63d736789f4edaa98d756f51272d84bf6c3f6eb27e169f50b5dcaebdd3d7/imread-0.7.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "980db613a05830d401ed21001ed71f33d3f38b24360e3d54892ad02016b915f4",
                "md5": "e5e8e328e98c7219cedf2bdec9b7c684",
                "sha256": "2f367a0136e0d400d325571683efca63bd12acb7d1b698c3e9109f7c6fb7860d"
            },
            "downloads": -1,
            "filename": "imread-0.7.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5e8e328e98c7219cedf2bdec9b7c684",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1546008,
            "upload_time": "2023-11-22T10:54:37",
            "upload_time_iso_8601": "2023-11-22T10:54:37.380574Z",
            "url": "https://files.pythonhosted.org/packages/98/0d/b613a05830d401ed21001ed71f33d3f38b24360e3d54892ad02016b915f4/imread-0.7.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ede9a49f1e50b4e2057435e251f670b22ae0a9a9dca467db7bb7dcd1520b0d62",
                "md5": "911e6903d9c5f935b552f4a0e9ae95f1",
                "sha256": "c85c1f00fa2bcb8f7c0ecea2b169ce14ff4fae68c12596ed0c3dc6a0f9d5ba3a"
            },
            "downloads": -1,
            "filename": "imread-0.7.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "911e6903d9c5f935b552f4a0e9ae95f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1545863,
            "upload_time": "2023-11-22T10:54:42",
            "upload_time_iso_8601": "2023-11-22T10:54:42.411305Z",
            "url": "https://files.pythonhosted.org/packages/ed/e9/a49f1e50b4e2057435e251f670b22ae0a9a9dca467db7bb7dcd1520b0d62/imread-0.7.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7128469cecd85d48833f0a1d50790699309e81de9c5b26be05090fb1dea09c73",
                "md5": "f3ea4108c3a4bcbfb2ad21c7137d7764",
                "sha256": "a5afdbaa77cfadf27934a9e1fe4402ab058cdc7b8f85475cf8f39b779aeeae0a"
            },
            "downloads": -1,
            "filename": "imread-0.7.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3ea4108c3a4bcbfb2ad21c7137d7764",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1547318,
            "upload_time": "2023-11-22T10:54:46",
            "upload_time_iso_8601": "2023-11-22T10:54:46.516309Z",
            "url": "https://files.pythonhosted.org/packages/71/28/469cecd85d48833f0a1d50790699309e81de9c5b26be05090fb1dea09c73/imread-0.7.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26998cbf90686b43d64ddbce85d96f69b3a43849006c4f922d182a6db792625e",
                "md5": "4614070af5a4b87e5dfe62993a4bd672",
                "sha256": "fd3a103d4ade94d325c92c8fdb5f4962d0d8d088d62d6852a34435d565f10609"
            },
            "downloads": -1,
            "filename": "imread-0.7.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4614070af5a4b87e5dfe62993a4bd672",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1547374,
            "upload_time": "2023-11-22T10:54:50",
            "upload_time_iso_8601": "2023-11-22T10:54:50.652065Z",
            "url": "https://files.pythonhosted.org/packages/26/99/8cbf90686b43d64ddbce85d96f69b3a43849006c4f922d182a6db792625e/imread-0.7.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd2a217f661b63b7c7d3bc028780e33d52e978d0df75f6d925c7c436d0e63d4f",
                "md5": "44b5f8ff075d2f020433c7dc0b5d94c0",
                "sha256": "1a25a9035dbc1ae2e56c15b50904071d555ea197eef58ca1d9117349db470db7"
            },
            "downloads": -1,
            "filename": "imread-0.7.5.tar.gz",
            "has_sig": false,
            "md5_digest": "44b5f8ff075d2f020433c7dc0b5d94c0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 130022,
            "upload_time": "2023-11-22T10:50:34",
            "upload_time_iso_8601": "2023-11-22T10:50:34.093702Z",
            "url": "https://files.pythonhosted.org/packages/fd/2a/217f661b63b7c7d3bc028780e33d52e978d0df75f6d925c7c436d0e63d4f/imread-0.7.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-22 10:50:34",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "imread"
}
        
Elapsed time: 0.14365s