Skip to main content

Image transformation, compression, and decompression codecs

Project description

Imagecodecs is a Python library that provides block-oriented, in-memory buffer transformation, compression, and decompression functions for use in the tifffile, czifile, zarr, and other scientific image input/output modules.

Decode and/or encode functions are implemented for Zlib (DEFLATE), GZIP, ZStandard (ZSTD), Blosc, Brotli, Snappy, LZMA, BZ2, LZ4, LZ4F, LZ4HC, LZW, LZF, PGLZ (PostgreSQL LZ), ZFP, AEC, LERC, NPY, PNG, GIF, TIFF, WebP, JPEG 8-bit, JPEG 12-bit, Lossless JPEG (LJPEG, SOF3), JPEG 2000, JPEG LS, JPEG XR (WDP, HD Photo), JPEG XL, AVIF, PackBits, Packed Integers, Delta, XOR Delta, Floating Point Predictor, Bitorder reversal, Bitshuffle, and Float24 (24-bit floating point).

Author:

Christoph Gohlke

Organization:

Laboratory for Fluorescence Dynamics. University of California, Irvine

License:

BSD 3-Clause

Version:

2021.4.28

Status:

Alpha

Requirements

This release has been tested with the following requirements and dependencies (other versions may work):

Required Python packages for testing (other versions may work):

Notes

The API is not stable yet and might change between revisions.

Works on little-endian platforms only.

Python 32-bit versions are deprecated. Python <= 3.6 are no longer supported.

Some codecs are currently decode-only: tiff, lzw, packints, and jpegsof3.

The latest Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019 is required on Windows.

Refer to the imagecodecs/licenses folder for 3rd-party library licenses.

This software is based in part on the work of the Independent JPEG Group.

This software includes a modified version of dcm2niix’s jpg_0XC3.cpp.

This software includes a modified version of PostgreSQL’s pg_lzcompress.c.

This software includes a copy of liblj92.

Build instructions and wheels for manylinux and macOS courtesy of Grzegorz Bokota.

Update pip and setuptools to the latest version before installing imagecodecs:

python -m pip install --upgrade pip setuptools

Install imagecodecs using precompiled wheels:

python -m pip install --upgrade imagecodecs

Install the requirements for building imagecodecs from source code on latest Ubuntu Linux distributions:

sudo apt-get install build-essential python3-dev cython3 python3-setuptools python3-pip python3-wheel python3-numpy python3-zarr python3-pytest python3-blosc python3-brotli python3-snappy python3-lz4 libz-dev libblosc-dev liblzma-dev liblz4-dev libzstd-dev libpng-dev libwebp-dev libbz2-dev libopenjp2-7-dev libjpeg-dev libjxr-dev liblcms2-dev libcharls-dev libaec-dev libbrotli-dev libsnappy-dev libzopfli-dev libgif-dev libtiff-dev libdeflate-dev libavif-dev

Use the --lite build option to only build extensions without 3rd-party dependencies. Use the --skip-extension build options to skip building specific extensions, e.g.:

python -m pip install imagecodecs --global-option="build_ext" --global-option="--skip-bitshuffle"

The jpeg12, jpegls, jpegxl, zfp, avif, lz4f, and lerc extensions are disabled by default when building from source.

To modify other build settings such as library names and compiler arguments, provide a imagecodecs_distributor_setup.customize_build function, which will be imported and executed during setup. See setup.py for examples.

Other Python packages and C libraries providing imaging or compression codecs:

Revisions

2021.4.28

Pass 5119 tests. Change WebP default compression level to lossless. Rename jpegxl codec to brunsli (breaking). Add new JPEG XL codec via jpeg-xl library. Add PGLZ codec via PostgreSQL’s pg_lzcompress.c. Update to libtiff 4.3 and libjpeg-turbo 2.1. Enable JPEG 12-bit codec in manylinux wheels. Drop manylinux2010 wheels.

2021.3.31

Add numcodecs compatible codecs for use by Zarr (experimental). Support separate JPEG header in jpeg_decode. Do not decode JPEG LS and XL in jpeg_decode (breaking). Fix ZFP with partial header. Fix JPEG LS tests (#15). Fix LZ4F contentchecksum. Remove blosc Snappy tests. Fix docstrings.

2021.2.26

Support X2 and X4 floating point predictors (found in DNG).

2021.1.28

Add option to return JPEG XR fixed point pixel types as integers. Add LJPEG codec via liblj92 (alternative to JPEGSOF3 codec). Change zopfli header location.

2021.1.11

Fix build issues (#7, #8). Return bytearray instead of bytes on PyPy. Raise TypeError if output provided is bytes (breaking).

2021.1.8

Add float24 codec. Update copyrights.

2020.12.24

Update dependencies and build scripts.

2020.12.22

Add AVIF codec via libavif (WIP). Add DEFLATE/Zlib and GZIP codecs via libdeflate. Add LZ4F codec. Add high compression mode option to lz4_encode. Convert JPEG XR 16 and 32-bit fixed point pixel types to float32. Fix JPEG 2000 lossy encoding. Fix GIF disposal handling. Remove support for Python 3.6 (NEP 29).

2020.5.30

Add LERC codec via ESRI’s lerc library. Enable building JPEG extensions with libjpeg >= 8. Enable distributors to modify build settings.

2020.2.18

Fix segfault when decoding corrupted LZW segments. Work around Cython raises AttributeError when using incompatible numpy. Raise ValueError if in-place decoding is not possible (except floatpred).

2020.1.31

Add GIF codec via giflib. Add TIFF decoder via libtiff (WIP). Add codec_check functions (WIP). Fix formatting libjpeg error messages. Use xfail in tests. Load extensions on demand on Python >= 3.7. Add build options to skip building specific extensions. Split imagecodecs extension into individual extensions. Move shared code into shared extension. Rename imagecodecs_lite extension and imagecodecs C library to ‘imcd’. Remove support for Python 2.7 and 3.5.

2019.12.31

Fix decoding of indexed PNG with transparency. Last version to support Python 2.7 and 3.5.

2019.12.16

Add Zopfli codec. Add Snappy codec. Rename j2k codec to jpeg2k. Rename jxr codec to jpegxr. Use Debian’s jxrlib. Support pathlib and binary streams in imread and imwrite. Move external C declarations to pxd files. Move shared code to pxi file. Update copyright notices.

2019.12.10

Add version functions. Add Brotli codec (WIP). Add optional JPEG XL codec via Brunsli repacker (WIP).

2019.12.3

Sync with imagecodecs-lite.

2019.11.28

Add AEC codec via libaec (WIP). Do not require scikit-image for testing. Require CharLS 2.1.

2019.11.18

Add bitshuffle codec. Fix formatting of unknown error numbers. Fix test failures with official python-lzf.

2019.11.5

Rebuild with updated dependencies.

2019.5.22

Add optional YCbCr chroma subsampling to JPEG encoder. Add default reversible mode to ZFP encoder. Add imread and imwrite helper functions.

2019.4.20

Fix setup requirements.

2019.2.22

Move codecs without 3rd-party C library dependencies to imagecodecs_lite.

2019.2.20

Rebuild with updated dependencies.

2019.1.20

Add more pixel formats to JPEG XR codec. Add JPEG XR encoder.

2019.1.14

Add optional ZFP codec via zfp library (WIP). Add numpy NPY and NPZ codecs. Fix some static codechecker errors.

2019.1.1

Refer to the CHANGES file for older revisions.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

imagecodecs-2021.4.28.tar.gz (9.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

imagecodecs-2021.4.28-cp39-cp39-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.9Windows x86-64

imagecodecs-2021.4.28-cp39-cp39-win32.whl (10.8 MB view details)

Uploaded CPython 3.9Windows x86

imagecodecs-2021.4.28-cp39-cp39-manylinux2014_x86_64.whl (29.4 MB view details)

Uploaded CPython 3.9

imagecodecs-2021.4.28-cp39-cp39-manylinux2014_i686.whl (26.4 MB view details)

Uploaded CPython 3.9

imagecodecs-2021.4.28-cp39-cp39-macosx_10_9_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

imagecodecs-2021.4.28-cp38-cp38-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.8Windows x86-64

imagecodecs-2021.4.28-cp38-cp38-win32.whl (10.8 MB view details)

Uploaded CPython 3.8Windows x86

imagecodecs-2021.4.28-cp38-cp38-manylinux2014_x86_64.whl (30.0 MB view details)

Uploaded CPython 3.8

imagecodecs-2021.4.28-cp38-cp38-manylinux2014_i686.whl (27.0 MB view details)

Uploaded CPython 3.8

imagecodecs-2021.4.28-cp38-cp38-macosx_10_9_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

imagecodecs-2021.4.28-cp37-cp37m-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

imagecodecs-2021.4.28-cp37-cp37m-win32.whl (10.7 MB view details)

Uploaded CPython 3.7mWindows x86

imagecodecs-2021.4.28-cp37-cp37m-manylinux2014_x86_64.whl (28.1 MB view details)

Uploaded CPython 3.7m

imagecodecs-2021.4.28-cp37-cp37m-manylinux2014_i686.whl (25.3 MB view details)

Uploaded CPython 3.7m

imagecodecs-2021.4.28-cp37-cp37m-macosx_10_9_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file imagecodecs-2021.4.28.tar.gz.

File metadata

  • Download URL: imagecodecs-2021.4.28.tar.gz
  • Upload date:
  • Size: 9.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28.tar.gz
Algorithm Hash digest
SHA256 26ffa26b884fb03b93aba9e2222ede6a388bd862683d6c19bb53fc8094ff4a3d
MD5 d7aa0d377537fc785b9d30e62dfd034c
BLAKE2b-256 9b9e908e77953a34da6229322b34b031ab5bfe1a121c1ed241fb1b33b24250f4

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b269511e7de20bd9eb24625f9e32a1cc3510f9592253fe3713ad77f793df3e74
MD5 42629b0abdca1b74630bdeba3aad509e
BLAKE2b-256 792f052ef10b4640493a3a245b9bc4ebc16497ec6d2b64bd8bdd8a65b46398fd

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp39-cp39-win32.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f53b905e61df50a06983fd22f001e6585ae65aa1d2c8aa124e99d8eb0f7e9ab2
MD5 6a13d7f934f5a919f1300b39d72a964e
BLAKE2b-256 8f60ba3da78ec12ed912aeadb9fd4b7c5445427f3292b6b6adca3c6e77c5cfe9

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 29.4 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b259849e9ef074b69783f246e6b08793d7282ec2350b093ce20021ab8f17aa46
MD5 720b9dba425cd5b8f1b349f1bbc68893
BLAKE2b-256 b8e17d5e259dae223f56925920aa80d6401a44d2d8989a96236400aa48d2f584

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2899bdc17c1c2ba859f3c3dc706f40337cd9813e253e6c52ae090ae04d62fffa
MD5 2be52cb22c0757330c79c2a4f6f0c350
BLAKE2b-256 94d02a1ccad69c5f0ed99fbbaa8f4749379e3e47b5aa8c133ead50c94aeaf8cb

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a027e639e2fb088465819d2818103d1099261b655ac87ee69bbabf1205247ecf
MD5 7135b1cae5f3a978b0de952f84dfe871
BLAKE2b-256 36efdceb4e84fb5d29afadbb18d003b9aeb20ed4c5de4006399beeb5c130d828

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f94e2f19d723295ffd00134239d4fad2a8bec3019e6423e27fa2233bc9af1ba5
MD5 aeaebc3e8caa74c22fda88320d40fa2c
BLAKE2b-256 843ec8eb13a0e183aee0f055c98eb8d6c6bf9b3c142895380b73597c0bb57381

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp38-cp38-win32.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 161bfa6ce7b32891cb6d8539e8b403ede89dfa968d90b672d30a797649dbb308
MD5 7a16cedc620f52d71d3b6636a495a160
BLAKE2b-256 9acbb93c3a5df1b0a5e83ea2caedd9c4bec36c022299eb70b6164d52c28f6beb

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 30.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b075e3e2d22adcee600242ed1ecf7f130618d5e5467fbd4812a43156e2e7df43
MD5 16b86313b3a2439dd18bb866d6c7e369
BLAKE2b-256 d6a54c7c71e3a5f6616b6c8cd8b7a519be9c10dc53d2eabaf9da3ac76523f531

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 27.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13cca54d4ef66f4ca0ac5dadb7ce7817cca5650023133fa031dc25a5bf4499fb
MD5 6d9b2a6f89f227f51ab4431f0810a4ce
BLAKE2b-256 78e9b2065b2e60f156df43c099bd48776531e84c5f1fae8112351a1085ac5b28

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24036f8da3262dd32b43f7cb2126ce0ab13402c43a0b2972b2e74724a082dace
MD5 2c4e436601fc028c99cca10284423fdf
BLAKE2b-256 72401562847365fc4e0e06e84f2c2064dea56555476ddc142977cea200ca5243

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 206c57954149f3580bceb5ac10320085224dbdb6ef68330cc18ec19e9eebdacf
MD5 3b5180838d178fdb33648286d75ef8f9
BLAKE2b-256 d58a1d329f6c04fbe33c2aebf45e75b7762a4f729600948d6336ff87c7f50571

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp37-cp37m-win32.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 933fbbe106a7df743ed44f778822750ac693844687fb4f565d1edcba88ea56d6
MD5 3d505d77b5d76b7902022db46f13b0f9
BLAKE2b-256 53733a105f72a10f30746f5d92d511bf26a8a313b60d06fdb435b91a8b723465

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 28.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38dd687f53c83c1781df585da9b859175b834a937f6554a3d91eea9c93134ed9
MD5 ea3ef499c9503e1136b9922186d95c2d
BLAKE2b-256 4026c2fc9d3dc6bebb5030a6990251fd514ed72d5492e44a6eb6e74ebc6b8374

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ea36727d8c3b226bdc5b0835d51f7fb4a610ee1cde0c238c26598b28b2546a3
MD5 25df3b2bc8d64939b361d1d150ecdefb
BLAKE2b-256 01eb27d3fc87dd38b23070b7e951c8f723bf6d35474dfef50fc97b3f3b09f458

See more details on using hashes here.

File details

Details for the file imagecodecs-2021.4.28-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: imagecodecs-2021.4.28-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.9

File hashes

Hashes for imagecodecs-2021.4.28-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e053aebb2f614b8cf0b0e8fe0cade13e212a418391cf284d55bdb79812b61426
MD5 399c3fec40c9fb619061efda3c92af0a
BLAKE2b-256 a0db0d46b7c8073d7df3c3448920a802cbed1c3c742e702829f8e82cae42ccb5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page