{ "info": { "author": "Luis Pedro Coelho", "author_email": "luis@luispedro.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: C++", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Multimedia", "Topic :: Scientific/Engineering :: Image Recognition", "Topic :: Software Development :: Libraries" ], "description": "================================\nmahotas-imread: Read Image Files\n================================\n\n.. image:: https://api.travis-ci.org/luispedro/imread.png\n :target: https://travis-ci.org/luispedro/imread\n.. image:: https://anaconda.org/conda-forge/imread/badges/license.svg\n :target: http://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 `__ 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 `__] or packages from\nothers [`scikit-image `__, 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 `__\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`__ 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 `__]\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 = {http://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 `__. 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 `__\n\nOn nix, you can use::\n\n nix-env -iA nixpkgs.python27Packages.imread\n\nor use the ``pkgs.python27Packages.imread`` object in your ``*.nix`` files.\n\nLinks & Contacts\n----------------\n\n*Documentation*: `http://imread.readthedocs.io/ `__\n\n*Issue Tracker*: `github imread issues `__\n\n*Mailing List*: Use the `pythonvision mailing list\n`_ for questions, bug\nsubmissions, etc.\n\n*Main Author & Maintainer*: `Luis Pedro Coelho `__ (follow on `twitter\n`__ or `github\n`__).\n\nHistory\n~~~~~~~\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", "description_content_type": "text/x-rst", "docs_url": "https://pythonhosted.org/imread/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://luispedro.org/software/imread", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "imread", "package_url": "https://pypi.org/project/imread/", "platform": "Any", "project_url": "https://pypi.org/project/imread/", "project_urls": { "Homepage": "http://luispedro.org/software/imread" }, "release_url": "https://pypi.org/project/imread/0.7.1/", "requires_dist": null, "requires_python": "", "summary": "imread: Image reading library", "version": "0.7.1" }, "last_serial": 5259206, "releases": { "0.0": [], "0.1": [ { "comment_text": "", "digests": { "md5": "7e09b822852b3b27f0cb88ddca5e5bbf", "sha256": "4e9749d6af08d465d61568c2a079505752968679a1458e4dd93592c5bc92e1f3" }, "downloads": -1, "filename": "imread-0.1.tar.gz", "has_sig": false, "md5_digest": "7e09b822852b3b27f0cb88ddca5e5bbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10109, "upload_time": "2012-02-28T15:15:15", "url": "https://files.pythonhosted.org/packages/88/9b/031739f672a43fb0ee7aa8926981b33dd4691ce48556da268873513c27b6/imread-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "33d302bd0884a2b6c8925d1a6176d5da", "sha256": "63cbce974a039c766ed9fc6b1f82a5e0a94c9582fdf129b5026985df574a16cf" }, "downloads": -1, "filename": "imread-0.2.tar.gz", "has_sig": false, "md5_digest": "33d302bd0884a2b6c8925d1a6176d5da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12049, "upload_time": "2012-03-19T12:47:36", "url": "https://files.pythonhosted.org/packages/51/4d/95d48302eb4a7c3e9017b62cf8e22e59a09588878fc9e982d03ec1f57dfb/imread-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "d3a0a442e5ece76ace15cee4e9030f55", "sha256": "d70141de40d8fe13d811a8581927bfe5dda2a38f67608d93eda0e573e07993d8" }, "downloads": -1, "filename": "imread-0.2.1.tar.gz", "has_sig": false, "md5_digest": "d3a0a442e5ece76ace15cee4e9030f55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14467, "upload_time": "2012-04-11T13:53:08", "url": "https://files.pythonhosted.org/packages/14/53/279bc1bff7412d2ae355037ffa1ff2f9b254e28d5b7530511d99f49afed4/imread-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "d9064593952c6408b2e3ba1cfdaf2b96", "sha256": "d1d6c6509426aecda436996348f96bb0aea0ba05423f9ea27160563da629c929" }, "downloads": -1, "filename": "imread-0.2.2.tar.gz", "has_sig": false, "md5_digest": "d9064593952c6408b2e3ba1cfdaf2b96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24945, "upload_time": "2012-06-05T17:27:22", "url": "https://files.pythonhosted.org/packages/94/36/cad84026d5487edec87bb4163beab3c38816a6f97cb826741a93cc3224d2/imread-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "20b749a0710f51a991abd3400d0eb686", "sha256": "47ee38124ba030f5a2efc9741c252ecab75c6a18fb2966d6447df73e3b542450" }, "downloads": -1, "filename": "imread-0.2.3.tar.gz", "has_sig": false, "md5_digest": "20b749a0710f51a991abd3400d0eb686", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25234, "upload_time": "2012-06-08T14:27:58", "url": "https://files.pythonhosted.org/packages/d7/cb/169a0ea3f1c7e42aabb9a120a8b8131786882017f21012be19f894f37811/imread-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "28865dc9d68d1b2a66583ae1912bbced", "sha256": "d33952eb44843e7dce367ec4ae6ec0530d69769297e6115c3223ee78417cb8c9" }, "downloads": -1, "filename": "imread-0.2.4.tar.gz", "has_sig": false, "md5_digest": "28865dc9d68d1b2a66583ae1912bbced", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30063, "upload_time": "2012-06-26T20:04:36", "url": "https://files.pythonhosted.org/packages/0c/6f/aed6d9a448363d356dbf25d02be26fb1bcfb06d2ae1955bafe64a8387f92/imread-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "2155afebd4a419175111613ecdef9778", "sha256": "8484525fcdfb4ee0fda18d47b174432038acc8b62297f2400c9ed7551cdc1f27" }, "downloads": -1, "filename": "imread-0.2.5.tar.gz", "has_sig": false, "md5_digest": "2155afebd4a419175111613ecdef9778", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82913, "upload_time": "2012-10-29T13:23:31", "url": "https://files.pythonhosted.org/packages/0f/44/177996efd80a5e7bdc2cead0a6a4e4d783ff46c0891de018893017cffa7a/imread-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "b72e7e823e4d3a453ba7811261bda56e", "sha256": "c75fde957e0fa2c6e997c4c185c729b2d6d9ab228a9ce6a4d572ebebdfd116dd" }, "downloads": -1, "filename": "imread-0.2.6.tar.gz", "has_sig": false, "md5_digest": "b72e7e823e4d3a453ba7811261bda56e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84319, "upload_time": "2013-06-19T08:14:04", "url": "https://files.pythonhosted.org/packages/92/1d/293297329b29477e2e716d275e001537a25bc66327b1528906c19986daeb/imread-0.2.6.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "8acc96ba58aeb71d9a06980fe056c9bc", "sha256": "9b825409bf62f5f8b55788e4d5abefca2058ee28ee0b6350ff6e0580a1c0ecb4" }, "downloads": -1, "filename": "imread-0.3.0.tar.gz", "has_sig": false, "md5_digest": "8acc96ba58aeb71d9a06980fe056c9bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87695, "upload_time": "2013-07-29T13:07:06", "url": "https://files.pythonhosted.org/packages/4b/1e/712809e0382c9b76684e8acc1575e7925f7cc437eb449bd899009cab9ca3/imread-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "8211572c0b2c30bc8a2e7ddc41a7f4a6", "sha256": "ae357d482c755ed8c19d060012978da53a7491ac1b7fbfcec54fb697b01ef02f" }, "downloads": -1, "filename": "imread-0.3.1.tar.gz", "has_sig": false, "md5_digest": "8211572c0b2c30bc8a2e7ddc41a7f4a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88044, "upload_time": "2013-08-20T06:34:20", "url": "https://files.pythonhosted.org/packages/96/d9/29353b1f8652d09d93f3ca1b00edb1f75db5e2326f4bf96b10f5521d7ff6/imread-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "aed92237570a7dd84a5ed4bd8441b631", "sha256": "0ca475c6aa7cf52c1210d0cd9ebfa1c3cffe7302e01beeed6f694624eb70a156" }, "downloads": -1, "filename": "imread-0.3.2.tar.gz", "has_sig": false, "md5_digest": "aed92237570a7dd84a5ed4bd8441b631", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91397, "upload_time": "2013-10-06T15:09:24", "url": "https://files.pythonhosted.org/packages/04/20/72c857781773d6150a8efe5b8ef36c1e7dee61a83439208c94c34ccb43c4/imread-0.3.2.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "46c21e31019dde4c7dfa40f211c92d5d", "sha256": "ab4fd8870035f95df644e6880320338416f06e12a2a67a82b0a923b740d4d4af" }, "downloads": -1, "filename": "imread-0.4.tar.gz", "has_sig": false, "md5_digest": "46c21e31019dde4c7dfa40f211c92d5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 94734, "upload_time": "2014-07-21T12:37:23", "url": "https://files.pythonhosted.org/packages/d2/72/c940a2909507f367b720fe7b1bab8a3332005bcda0c52e32c0ca51562aa4/imread-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "fbe9697d47f9fdd69be2146db501b97f", "sha256": "e76bb30fd79c6ae88ec6a8908747f454524f9df197a35e541781caec711b9f74" }, "downloads": -1, "filename": "imread-0.5.tar.gz", "has_sig": false, "md5_digest": "fbe9697d47f9fdd69be2146db501b97f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113834, "upload_time": "2014-10-16T13:22:22", "url": "https://files.pythonhosted.org/packages/fc/ca/24d30f349cb654b5227268d763a3f18919d48939b7de5669cfab712b58c4/imread-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "e038158211b5e2bb28bc0cd2b40fba79", "sha256": "c72d05d6099e17c45ec00b6629f432e70de7e555daa48de84e94199c22ff2ec7" }, "downloads": -1, "filename": "imread-0.5.1.tar.gz", "has_sig": false, "md5_digest": "e038158211b5e2bb28bc0cd2b40fba79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112233, "upload_time": "2014-11-06T11:56:14", "url": "https://files.pythonhosted.org/packages/fd/57/952f2145be8d99a3696abd28da1df13bca432391b29cd74bf25a4fb49500/imread-0.5.1.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "d2fb0012bcfa472b75f06ec14a3f0fc7", "sha256": "a12a6d891b7afdd6009ceeaa2d2afc3b7614ca393abb76ac8a3234dbd8cfa960" }, "downloads": -1, "filename": "imread-0.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "d2fb0012bcfa472b75f06ec14a3f0fc7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1552629, "upload_time": "2017-01-15T19:06:38", "url": "https://files.pythonhosted.org/packages/6d/df/c0c97303aa84cbebf4d4df8e16a196a16a4336d02086c0913fb0f165b1ff/imread-0.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "76bdd2b3f8ce181c1c122ed6e9c3347b", "sha256": "0008d5478c3bbf545d99e571efc3ed165435b49c8287c1aaa9beffd80439afdf" }, "downloads": -1, "filename": "imread-0.6-cp27-cp27m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "76bdd2b3f8ce181c1c122ed6e9c3347b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3088455, "upload_time": "2017-01-15T19:07:18", "url": "https://files.pythonhosted.org/packages/b5/fa/a2ba48d9993888b61fee83109be5d5666cb47fc7b1ae4bf0469ddf230d3f/imread-0.6-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1ffbf0e0ed7bf6874bf0e1bb00f58a12", "sha256": "7671b9067eb0620cbdf3ca1ea9021f886b0abe39556d07888dc74947480276a4" }, "downloads": -1, "filename": "imread-0.6-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "1ffbf0e0ed7bf6874bf0e1bb00f58a12", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3196877, "upload_time": "2017-01-15T19:07:22", "url": "https://files.pythonhosted.org/packages/30/4a/b61e31c308b77924e11ab031e1f274c42b42a401b6a1de48f4885a5801b5/imread-0.6-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "88267d44dc0b744d7cfcd346cd341efb", "sha256": "d65080945cf545ea908ad0e079e834c1980951ed3eb9650bb7fb54ce921bed3f" }, "downloads": -1, "filename": "imread-0.6-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "88267d44dc0b744d7cfcd346cd341efb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3088473, "upload_time": "2017-01-15T19:07:25", "url": "https://files.pythonhosted.org/packages/7e/6b/de909133ccd5e5c05de0a613fe1df18b43aca446828d6c5c7a9521cdd890/imread-0.6-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b08303ea2d688118647cfdee449e5e0c", "sha256": "55861f0077c99d17294c8a01e3eb97a0ec7fd5ab5774ff611c718e08910a0d26" }, "downloads": -1, "filename": "imread-0.6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b08303ea2d688118647cfdee449e5e0c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3196853, "upload_time": "2017-01-15T19:07:30", "url": "https://files.pythonhosted.org/packages/72/4c/483a395bdec51b010db320e227947b9e62efb9d204485dad77bb9777a54f/imread-0.6-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ab4e57a1d7de474f8d25e44ab81943a7", "sha256": "fb6d4283bb6fa3670546ef18140bbcc09483bc95d379348fd18067e6ed037b50" }, "downloads": -1, "filename": "imread-0.6-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "ab4e57a1d7de474f8d25e44ab81943a7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1552995, "upload_time": "2017-01-15T19:06:40", "url": "https://files.pythonhosted.org/packages/e1/3e/6cc519d33796c57178089551b29d74a2c339b7bbb57d84d82d3ddaf4aac8/imread-0.6-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7c06bc1d8e37995eeabac848175961b1", "sha256": "4ccea357aeca14e4deb6dd42195dd6feb78f99a6ba2f049ab828359da1aff267" }, "downloads": -1, "filename": "imread-0.6-cp34-cp34m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "7c06bc1d8e37995eeabac848175961b1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 3089461, "upload_time": "2017-01-15T19:07:34", "url": "https://files.pythonhosted.org/packages/3a/64/158e7c63b4fd1c8cf5f3da9fa86d75fe5db33aae72cb91b5e0a46ee6b884/imread-0.6-cp34-cp34m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ef011ff91ee20305df045bce03fa537e", "sha256": "0823c60075dc5dc9c252121f53a5c1fad311c343bb5745d9b5a60e35254681db" }, "downloads": -1, "filename": "imread-0.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "ef011ff91ee20305df045bce03fa537e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 3199057, "upload_time": "2017-01-15T19:07:38", "url": "https://files.pythonhosted.org/packages/0e/f8/cb38c9d680343079fdfc03a9eb755d46d3418588ab5d066a44f29c9deff6/imread-0.6-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "93ef13415bae976c4c872988e6911bf5", "sha256": "381b45047828941afed2e9f88343d55d1686d7505fd5ae039b55acdc7d8e5f90" }, "downloads": -1, "filename": "imread-0.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "93ef13415bae976c4c872988e6911bf5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1553037, "upload_time": "2017-01-15T19:06:43", "url": "https://files.pythonhosted.org/packages/37/f5/39d44c27556b0bc945aa35a07a302e102fe2fb4da938de102c2635deb76b/imread-0.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "391601992e8f95791a1f15a04925263f", "sha256": "7df2970707b218614b56f9eabec7c4a326cb51732393f7a99ef1b0790801385e" }, "downloads": -1, "filename": "imread-0.6-cp35-cp35m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "391601992e8f95791a1f15a04925263f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3089721, "upload_time": "2017-01-15T19:07:42", "url": "https://files.pythonhosted.org/packages/32/bd/742845e6d55809e56fa7c518d3033b29210d17926e76b8b69a662004bbb2/imread-0.6-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "8408c437fcd95694bde6491e4b8e746b", "sha256": "b9d64c03ae1eb847a4c518c35713eac3bbe1ae6987ddd0041a01245e3572aa2c" }, "downloads": -1, "filename": "imread-0.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "8408c437fcd95694bde6491e4b8e746b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3199362, "upload_time": "2017-01-15T19:07:46", "url": "https://files.pythonhosted.org/packages/b1/d1/788e84694e92add15a8fe7c1ed0861d3a378605c9fa0e41df2d04be9a278/imread-0.6-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e6259baf3b0aa0a2570084389cf37d33", "sha256": "efed8d49bc700e9a7d97012658f6b80d97dd24fc9446fccc860648c98ea6c7d4" }, "downloads": -1, "filename": "imread-0.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "e6259baf3b0aa0a2570084389cf37d33", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1553072, "upload_time": "2017-01-15T19:06:46", "url": "https://files.pythonhosted.org/packages/9b/a8/87f292a76bfd3e6999e7fa54f7ea552b0b60082fd1ffacc75d10004ac056/imread-0.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9151caa027301a66bd55302df9c25825", "sha256": "ecaeda975b8ae3b5c2eef54dd8e69c953e98a4ed872aaaa40e7f6e30772769b2" }, "downloads": -1, "filename": "imread-0.6-cp36-cp36m-manylinux1_i686.whl", "has_sig": true, "md5_digest": "9151caa027301a66bd55302df9c25825", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3089724, "upload_time": "2017-01-15T19:07:49", "url": "https://files.pythonhosted.org/packages/7d/24/63e3e8cbb08a199d593c3ab35c8cd260b6b1f4abdabc37b643f026531e2b/imread-0.6-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "2bef76d5472247812097a37da3170a06", "sha256": "d8dbf49ac58d9d576fc7f97de62500b191511de9d2322053151aec05a802f62c" }, "downloads": -1, "filename": "imread-0.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "2bef76d5472247812097a37da3170a06", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3199328, "upload_time": "2017-01-15T19:07:52", "url": "https://files.pythonhosted.org/packages/8e/ee/0c0a9bbca6dbe8edc7e948c2038debbdbf9c5d86412e6bcce9ac697b9327/imread-0.6-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b35abb1acaf550cff71e3d3cd2f293f2", "sha256": "97364c44b9861ebd74dbf9a7cafea604a802543b3a9b463c9de68befed72d86c" }, "downloads": -1, "filename": "imread-0.6.tar.gz", "has_sig": false, "md5_digest": "b35abb1acaf550cff71e3d3cd2f293f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116215, "upload_time": "2016-09-21T08:43:57", "url": "https://files.pythonhosted.org/packages/7a/c8/ab440ea4b304b9f9371f5329c4209b049432f667a5085a6b6f1ab2ebcdd3/imread-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "abd83d45006e2f6a340423529858a121", "sha256": "a4a0384ed35e50a8c68cad21a4a077247aec984af69f70cfbf76e3d206926832" }, "downloads": -1, "filename": "imread-0.6.1.tar.gz", "has_sig": false, "md5_digest": "abd83d45006e2f6a340423529858a121", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139198, "upload_time": "2018-02-15T17:24:29", "url": "https://files.pythonhosted.org/packages/2b/2f/e4111c2aeb24c54e202bf43a692d71a1e550e8b7e9869a7ea06a39e15206/imread-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "04f5a1a120d1b00e2500ae072c7be4c0", "sha256": "5efc90a124d2fbf451afc89850127842eb87ff12942733d77605d2687c756079" }, "downloads": -1, "filename": "imread-0.7.0.tar.gz", "has_sig": false, "md5_digest": "04f5a1a120d1b00e2500ae072c7be4c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147022, "upload_time": "2018-09-30T13:57:30", "url": "https://files.pythonhosted.org/packages/fb/85/847554bfb1542f19a0ec30d063dced1df3c97d30efb8e3e724cfea007bb9/imread-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "e6bafbf4f1404ea340ff87442ce346d5", "sha256": "f06a31c2fe365dbefb2415e24399c3ab2f3cb59224eb923c94d827b84c59e9cb" }, "downloads": -1, "filename": "imread-0.7.1-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e6bafbf4f1404ea340ff87442ce346d5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1496286, "upload_time": "2019-05-12T15:41:48", "url": "https://files.pythonhosted.org/packages/6d/c1/7ea81da83466c269c3a06e5d5544c0d9380d188dcf778c69bf06e87c094b/imread-0.7.1-cp27-cp27m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cd9d4cdfcd194ce64972366267bbab37", "sha256": "958f7b063290096cbd4f3d662ebc1f2aad091d9ee899c3d83eb61f979ddd5beb" }, "downloads": -1, "filename": "imread-0.7.1-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "cd9d4cdfcd194ce64972366267bbab37", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1496270, "upload_time": "2019-05-12T15:41:52", "url": "https://files.pythonhosted.org/packages/c0/fa/f1cc1795e5f194c0d65961615e580dcb3f72e5f7d844c435250356a95530/imread-0.7.1-cp27-cp27mu-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6112a3f000a5505004b37dd0451f557f", "sha256": "c1309433669a3cccebf146500a7fceccfc032a7e431dba7d0cb431e736e7c58c" }, "downloads": -1, "filename": "imread-0.7.1-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6112a3f000a5505004b37dd0451f557f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1501619, "upload_time": "2019-05-12T15:41:57", "url": "https://files.pythonhosted.org/packages/0e/dd/89f1660874b8365e11f81d65d4cab0d8bb12f40d1370a139932cdf7cb248/imread-0.7.1-cp34-cp34m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1e727bd01f6d9e4c499d435afd9d572d", "sha256": "a5d9f486726d6526b9528f33aab9650522e8adbbfe6ccc15293b96548b0e46c8" }, "downloads": -1, "filename": "imread-0.7.1-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1e727bd01f6d9e4c499d435afd9d572d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1502153, "upload_time": "2019-05-12T15:42:02", "url": "https://files.pythonhosted.org/packages/e7/4d/68e83bd55c5c7b26f2f34d1c90881bdef116d7f460af8b989767ce82c671/imread-0.7.1-cp35-cp35m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "43ae66cc74e9b8d998c007676e75b8d9", "sha256": "1ca20a4319ea7b04410bb7253e9ab2f66058c9ab2409bc22aad90930790229e7" }, "downloads": -1, "filename": "imread-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "43ae66cc74e9b8d998c007676e75b8d9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1502820, "upload_time": "2019-05-12T15:42:07", "url": "https://files.pythonhosted.org/packages/02/4c/6d3a661e2129a5847dd4c2ef9a19fd1791b5b16ab808b7cb6edc1fdd9b33/imread-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c0d735f84729e6dcb255ff447b247948", "sha256": "871d2b91c0b76df25fb88dc741f0489280fbe36b13feb0500015b67174c7ae05" }, "downloads": -1, "filename": "imread-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c0d735f84729e6dcb255ff447b247948", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1504409, "upload_time": "2019-05-12T15:42:11", "url": "https://files.pythonhosted.org/packages/a4/5f/6d57235a6064c303bdf94356216e5360835ea3de97a8bbda84d90b06d7cb/imread-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "48f4c71f58ff1c5c3bce5939f4d409dc", "sha256": "c343b546ab54acdb50dbe69d6793d64ead3ba6d585022f5a7ad4687b7f3db79b" }, "downloads": -1, "filename": "imread-0.7.1.tar.gz", "has_sig": false, "md5_digest": "48f4c71f58ff1c5c3bce5939f4d409dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147234, "upload_time": "2019-05-09T05:20:27", "url": "https://files.pythonhosted.org/packages/4e/7e/52603151a6746a229f80b3d22a08e468dce9bcf723728a3b99d050372e86/imread-0.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e6bafbf4f1404ea340ff87442ce346d5", "sha256": "f06a31c2fe365dbefb2415e24399c3ab2f3cb59224eb923c94d827b84c59e9cb" }, "downloads": -1, "filename": "imread-0.7.1-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e6bafbf4f1404ea340ff87442ce346d5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1496286, "upload_time": "2019-05-12T15:41:48", "url": "https://files.pythonhosted.org/packages/6d/c1/7ea81da83466c269c3a06e5d5544c0d9380d188dcf778c69bf06e87c094b/imread-0.7.1-cp27-cp27m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cd9d4cdfcd194ce64972366267bbab37", "sha256": "958f7b063290096cbd4f3d662ebc1f2aad091d9ee899c3d83eb61f979ddd5beb" }, "downloads": -1, "filename": "imread-0.7.1-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "cd9d4cdfcd194ce64972366267bbab37", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1496270, "upload_time": "2019-05-12T15:41:52", "url": "https://files.pythonhosted.org/packages/c0/fa/f1cc1795e5f194c0d65961615e580dcb3f72e5f7d844c435250356a95530/imread-0.7.1-cp27-cp27mu-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6112a3f000a5505004b37dd0451f557f", "sha256": "c1309433669a3cccebf146500a7fceccfc032a7e431dba7d0cb431e736e7c58c" }, "downloads": -1, "filename": "imread-0.7.1-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6112a3f000a5505004b37dd0451f557f", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1501619, "upload_time": "2019-05-12T15:41:57", "url": "https://files.pythonhosted.org/packages/0e/dd/89f1660874b8365e11f81d65d4cab0d8bb12f40d1370a139932cdf7cb248/imread-0.7.1-cp34-cp34m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1e727bd01f6d9e4c499d435afd9d572d", "sha256": "a5d9f486726d6526b9528f33aab9650522e8adbbfe6ccc15293b96548b0e46c8" }, "downloads": -1, "filename": "imread-0.7.1-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1e727bd01f6d9e4c499d435afd9d572d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1502153, "upload_time": "2019-05-12T15:42:02", "url": "https://files.pythonhosted.org/packages/e7/4d/68e83bd55c5c7b26f2f34d1c90881bdef116d7f460af8b989767ce82c671/imread-0.7.1-cp35-cp35m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "43ae66cc74e9b8d998c007676e75b8d9", "sha256": "1ca20a4319ea7b04410bb7253e9ab2f66058c9ab2409bc22aad90930790229e7" }, "downloads": -1, "filename": "imread-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "43ae66cc74e9b8d998c007676e75b8d9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1502820, "upload_time": "2019-05-12T15:42:07", "url": "https://files.pythonhosted.org/packages/02/4c/6d3a661e2129a5847dd4c2ef9a19fd1791b5b16ab808b7cb6edc1fdd9b33/imread-0.7.1-cp36-cp36m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c0d735f84729e6dcb255ff447b247948", "sha256": "871d2b91c0b76df25fb88dc741f0489280fbe36b13feb0500015b67174c7ae05" }, "downloads": -1, "filename": "imread-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c0d735f84729e6dcb255ff447b247948", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1504409, "upload_time": "2019-05-12T15:42:11", "url": "https://files.pythonhosted.org/packages/a4/5f/6d57235a6064c303bdf94356216e5360835ea3de97a8bbda84d90b06d7cb/imread-0.7.1-cp37-cp37m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "48f4c71f58ff1c5c3bce5939f4d409dc", "sha256": "c343b546ab54acdb50dbe69d6793d64ead3ba6d585022f5a7ad4687b7f3db79b" }, "downloads": -1, "filename": "imread-0.7.1.tar.gz", "has_sig": false, "md5_digest": "48f4c71f58ff1c5c3bce5939f4d409dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147234, "upload_time": "2019-05-09T05:20:27", "url": "https://files.pythonhosted.org/packages/4e/7e/52603151a6746a229f80b3d22a08e468dce9bcf723728a3b99d050372e86/imread-0.7.1.tar.gz" } ] }