Skip to main content

A Python wrapper for libjpeg, with a focus on use as a plugin for for pylibjpeg

Project description

Build status Test coverage PyPI versions Python versions Code style: black

pylibjpeg-libjpeg

A Python 3.8+ wrapper for Thomas Richter's libjpeg, with a focus on use as a plugin for pylibjpeg.

Linux, MacOS and Windows are all supported.

Installation

Dependencies

NumPy

Installing the current release

pip install pylibjpeg-libjpeg

Installing the development version

Make sure Python and Git are installed. For Windows, you also need to install Microsoft's C++ Build Tools.

git clone --recurse-submodules https://github.com/pydicom/pylibjpeg-libjpeg
python -m pip install pylibjpeg-libjpeg

Supported JPEG Formats

Decoding

ISO/IEC Standard ITU Equivalent JPEG Format
10918 T.81 JPEG
14495 T.87 JPEG-LS
18477 JPEG XT

Encoding

Encoding of JPEG images is not currently supported

Supported Transfer Syntaxes

Decoding

UID Description
1.2.840.10008.1.2.4.50 JPEG Baseline (Process 1)
1.2.840.10008.1.2.4.51 JPEG Extended (Process 2 and 4)
1.2.840.10008.1.2.4.57 JPEG Lossless, Non-Hierarchical (Process 14)
1.2.840.10008.1.2.4.70 JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14 [Selection Value 1])
1.2.840.10008.1.2.4.80 JPEG-LS Lossless
1.2.840.10008.1.2.4.81 JPEG-LS Lossy (Near-Lossless) Image Compression

Usage

With pylibjpeg and pydicom

from pydicom import dcmread
from pydicom.data import get_testdata_file

ds = dcmread(get_testdata_file('JPEG-LL.dcm'))
arr = ds.pixel_array

Standalone JPEG decoding

You can also decode JPEG images to a numpy ndarray:

from libjpeg import decode

with open('filename.jpg', 'rb') as f:
    # Returns a numpy array
    arr = decode(f.read())

# Or simply...
arr = decode('filename.jpg')

Project details


Download files

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

Source Distribution

pylibjpeg_libjpeg-2.3.0.tar.gz (671.5 kB view details)

Uploaded Source

Built Distributions

pylibjpeg_libjpeg-2.3.0-cp313-cp313-win_amd64.whl (743.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

pylibjpeg_libjpeg-2.3.0-cp313-cp313-win32.whl (729.9 kB view details)

Uploaded CPython 3.13 Windows x86

pylibjpeg_libjpeg-2.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pylibjpeg_libjpeg-2.3.0-cp313-cp313-macosx_11_0_arm64.whl (601.0 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl (676.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pylibjpeg_libjpeg-2.3.0-cp312-cp312-win_amd64.whl (744.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

pylibjpeg_libjpeg-2.3.0-cp312-cp312-win32.whl (730.1 kB view details)

Uploaded CPython 3.12 Windows x86

pylibjpeg_libjpeg-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pylibjpeg_libjpeg-2.3.0-cp312-cp312-macosx_11_0_arm64.whl (602.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl (676.3 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pylibjpeg_libjpeg-2.3.0-cp311-cp311-win_amd64.whl (744.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

pylibjpeg_libjpeg-2.3.0-cp311-cp311-win32.whl (730.2 kB view details)

Uploaded CPython 3.11 Windows x86

pylibjpeg_libjpeg-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pylibjpeg_libjpeg-2.3.0-cp311-cp311-macosx_11_0_arm64.whl (602.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl (677.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pylibjpeg_libjpeg-2.3.0-cp310-cp310-win_amd64.whl (743.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

pylibjpeg_libjpeg-2.3.0-cp310-cp310-win32.whl (730.4 kB view details)

Uploaded CPython 3.10 Windows x86

pylibjpeg_libjpeg-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pylibjpeg_libjpeg-2.3.0-cp310-cp310-macosx_11_0_arm64.whl (602.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl (677.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pylibjpeg_libjpeg-2.3.0-cp39-cp39-win_amd64.whl (743.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pylibjpeg_libjpeg-2.3.0-cp39-cp39-win32.whl (730.3 kB view details)

Uploaded CPython 3.9 Windows x86

pylibjpeg_libjpeg-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pylibjpeg_libjpeg-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pylibjpeg_libjpeg-2.3.0-cp39-cp39-macosx_11_0_arm64.whl (602.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pylibjpeg_libjpeg-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl (677.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

Details for the file pylibjpeg_libjpeg-2.3.0.tar.gz.

File metadata

  • Download URL: pylibjpeg_libjpeg-2.3.0.tar.gz
  • Upload date:
  • Size: 671.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0.tar.gz
Algorithm Hash digest
SHA256 ffb736acee1dfd446f387d45dfec83a144c7971e5cde290d9aafefa5dee99dd0
MD5 a35c3e4fc5e0ff5bc5b6c85ec52503c8
BLAKE2b-256 6a39d44c4124d8e97a3d5b5e87da5d5f096e010eb83670351bc0e9c77c0febd5

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0b8469237b9b0600cff7af4cf570689667b0e542e10ed9d5a2defe6355a84e60
MD5 05a240b8265ef572f3d881bfde073159
BLAKE2b-256 f4b48606414416b01233f30f99d69ed1840d8ffa3e04ffc2b73a026fbada87a2

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ec974e854f220714d70e51ee02c832bbdb04bba41007fb962b209622560157fe
MD5 cc269cc2d19c8a949964746ade01db84
BLAKE2b-256 a5016eed5b15ccdb21e6898815d482cda70987e34ff987f30f5bc5e5af16f5eb

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7744848b239e969162ad65dd2bc7470e14d9eb324ee26d519bd8012fb8e237b8
MD5 cb865efdf341df567dbb9755d69d54ae
BLAKE2b-256 45558873e0d29ce163acecb035b642c7b5bc04972489248f0ad60ebe47dd90e5

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5acf60b2d531bafccc5d8edabd59fc4c542d835ef8772392d6690a994ca9aef0
MD5 2b99e89b5a4945adf31e5295e84e88ed
BLAKE2b-256 ba39cbe60564dc0033ff45cd1a3756d58817bc3bf4100b5ce0c8f4f9bb3b33f8

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87f334baddb5f7606cb999e3c96e900d25a320b35bf3c0f5061fb2679e876841
MD5 1a089016e6547a9376b360f3cb9d2ae6
BLAKE2b-256 f7dceb4e1882cc745c5b3f8c8cca6c3a0317b2b0ec22e7e483219f4e1e3a6704

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 df5db32f1ddfb47c30de9613ace38a0e685f75bf30bd42594c8d54057e5fb8a9
MD5 604975cf3ba0a459e98b69b9bf9aa163
BLAKE2b-256 404278fe92094c6e850fd465375cd86efa708153ce60748a89f499b4c26b282c

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 05d04602b81fa9eb8c33147cf54224725141358f8bf66fd2677bbef5c0e19a48
MD5 cf31156c0a510459df760d0704736b44
BLAKE2b-256 6886415cc7676219f581f54ca7340d77fa0dd4f0157057f59ead33a9d916c2b3

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 865cb985fc0671908881d54455fc6a72cfe02f6f047f9330f4ba8852b81ed7c0
MD5 471ca2a146deb223019a646286b0eeba
BLAKE2b-256 e55ebfc26cfdd692ae0a051f4e3fda0930ef024782e84402a88584211656f01e

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a630e38fd85aad11d0cec247d42d4a4bac86f2614b6eade2619ef821627ad8bb
MD5 07387fdaf0c2b7770429913cd0ceb5fe
BLAKE2b-256 7914449696a3a4527a1e6a6bac2b4eb0f6a9b512a94a56bbaf1946db06a48122

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61e433d3e94e3a66c303fc82b354489abb79487659ca681c62365d6e6d847470
MD5 b82a2f52e62cbe4330e7b26f0eb740f5
BLAKE2b-256 158a585b966385c2a0817b8699cfd4aea85e71fc02f4da3337e473b2eca83d60

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86ef2285ffafcce6c492738c5f707c0a7141fb8f6e0a3392a2495f653965379f
MD5 4196d012fd074b78738aae888d90e490
BLAKE2b-256 18312b55e7f821bfe37cbf5805441ea339c9b50b8159062e06efca84d23d64c5

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7461d83d23412fd5596f42858fa414e4ac48632160e17d77875f5fd6b4925af9
MD5 41f2195442b7325634ff21290155f391
BLAKE2b-256 818457e1742d727b3e7bf0c8ad99cd8c0daf79be44fff89c70f051b28f6edec8

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ebd5cd0bf332aee524d23780b5d593aabdc420571f6d4653b130b15e0c89562f
MD5 0d247a5b8d90c054a901252a775c0b31
BLAKE2b-256 183bf2cf1a60872482804c17f357699247c3fe1f59825f7898b1c92c23dc2bde

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5ac15f5b9d146a3e8dd4d27c51079388efbcff7f222495c86ef708adad2ca2de
MD5 291243b08429f528525a20deac7fcd32
BLAKE2b-256 9b9b47ba41fef1133b089b2e311acbc356746d8f958a7ad1b7d1250c6af919d7

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c142de3ba0ecc18b54517c4b63de5f9cae45cbf6a4b457ab18059af05e7f2f7
MD5 b307f2e4a7a506bf617d12dfd93907a6
BLAKE2b-256 a4bd20b0651884b620887ef26917cb98cd33de51e1bf7ae7e886c0020764d5c7

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1701ab9f0b8a2c1670dc1e407fad77a3d5f1d4233331aa24f001891c73e950bd
MD5 9d0c7232e44019a4d2e822578f1bea64
BLAKE2b-256 0a5e8b7ac82a99e12f5de3611d9b392e649a5fd623933cdccdd42dae2f0a20dc

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a345fc2e954fa4068e4b6a962ca603af12932712ae07c80eab4c215dc90cc98d
MD5 a38fe2e194dc5b21ba9fecafcb3b93ee
BLAKE2b-256 237409f0f9d73ddc73fca272eb462cdecb28179a2d599116ebdb9e9a738a0c91

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5333e5a2ea6654212a28270eb8dbf554b481eafda13bbab6881ee9b73830db0
MD5 133e04c8561bd64c7adb5c25e5b495f8
BLAKE2b-256 fccd15ca02e0d3fde019c50bca58a7a7fbdc022f800e0b574b7ea701a0168bc2

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 86974c11925866217e4d1b525054124e5e6f4035fcedf0638b8c9e7c307e1767
MD5 8ff2d8cca05257fe415a1fee08f1c59c
BLAKE2b-256 c93184c1830a290ec30248a71090bc660fff89b7fc3fe9053783046dee4c4f5f

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 15ec699428061920dfa066ec3091d0600bda650fe353521c2c8199fd37ae0ed5
MD5 b3d2001e2cc96131955a1cf5c1c7c092
BLAKE2b-256 c8f628e42af9bc4dfbc0ed0d3041c6abec4e7e937f16b2e38839a4b6a74ee58f

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa36f121fac22646e6e9f2d8da9597cd8622f664e4144b74f2425d2c71b5e5ac
MD5 54a281017f663e5a71f43c8c6a7d1091
BLAKE2b-256 8f696a64511076aed93ebf15b857c23d8eed272ae725405a9ca233915121a00e

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1128b81b53c296d1f9ef7eda39a7f7f2d2cb3a29a4d9ba029f91a6877962069f
MD5 62960f1cfba1fb142e0247cd52adf607
BLAKE2b-256 f369aaacfb5028513fc7b6b818c2dd9dc41e32ffe4d08b0d3a7bd45c9df2577a

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1415e5af1a1b03bc26da1992e1ff184a0fd71ea375d004e438146b60b2dd6605
MD5 ac082dc6978ab775322847d7bb4b30d5
BLAKE2b-256 b4fc4ef52e7e0346216008e62f3a5626170f6d2971732fe79312e7aee2678765

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c403dddfd74b1e27abbd330b12aa4943657bfe0c3cd822d683f21d62ffafd95
MD5 2659ebc42743134014e577801e474057
BLAKE2b-256 b34a2a86148fd709dd25bdec742861183aa01d7f824bd6d436855eedc09ce6a7

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5160f84bb88c0e59a2bcd51fd5a5e98a32c156c9380a583fbbfa8157e4526e98
MD5 c261e61be35f08af128342c06ff01cf8
BLAKE2b-256 77121757a5502ace9e64abe985d7bac971136d1b40fde26d5e02b1284142c9f5

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a90f5e6eb8f19bab73d932bcb20316b0bd026bc6308c94dcf9fb1826d830e115
MD5 c73068e24656e8f629476e9967a000db
BLAKE2b-256 e2e09b5c27302735ad792d43c00afe041ee102f1861d3dffaa81ea7faf5a7f60

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c20ba487553ddb51ae4f5627b10699f9b0260625a19e5ce16c2c3e8dc760c391
MD5 5e83a163a35cd127c24851d51435f820
BLAKE2b-256 eebf1d70a76b999c33944467e390000aa5f8bc869ab3f508406ae978745f87e4

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51d036aa961cf3561986598408ddd48af6c5789918eea64282774d04469668f5
MD5 1574dedd79c0544846dfeee8bbf53e01
BLAKE2b-256 0e825ccac23ce311bcd9238cb6b535e234c4c60c2492f7ece0b42e4684ceef01

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70f5466458acfc45fd786e43bd43930ad0eaecaf1017dc56850e9f86524bb2ca
MD5 daeddbe11c51d88350c2deeab067979d
BLAKE2b-256 c9e38ab0c0d523c2d863c59f2de6d15cb516079eb67050ed14b0a6d09ca41068

See more details on using hashes here.

File details

Details for the file pylibjpeg_libjpeg-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pylibjpeg_libjpeg-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05d9e3511d303a47581ba45e6c7aab911eea7a3e823d353a5af5adf9685f60e7
MD5 8ec18e67f03ab607bbddab8e13120d52
BLAKE2b-256 721c288e915febbfd5df2df075e13fcf818a3bd1f6bfadeacf04cd94ccee12b8

See more details on using hashes here.

Supported by

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