Skip to main content

A simple package for fast JPEG encoding and decoding.

Project description

This project is in no way affiliated with the libjpeg-turbo project.

simplejpeg

simplejpeg is a simple package based on recent versions of libturbojpeg for fast JPEG encoding and decoding.

Why another library?

Pillow and OpenCV are excellent options for handling JPEG images and a variety of other formats.

If all you want is to read or write a couple of images and don’t worry about the details, this package is not for you.

Keep reading if you care about speed and want more control over how your JPEGs are handled.

These are the reasons why I started making this:

  1. Pillow is very slow compared to OpenCV.

  2. Pillow only accepts streams as input. Images in memory have to be wrapped in BytesIO or similar. This adds to the slowness.

  3. OpenCV is gigantic, only accepts Numpy arrays as input, and returns images as BGR instead of RGB.

  4. Recent versions of libturbojpeg offer impressive speed gains on modern processors. Linux distributions and libraries tend to ship very old versions.

This library is especially for you if you need:

  1. Speed.

  2. Read and write directly from/to memory.

  3. Advanced features of the underlying library.

Installation

  • On Linux (x86/x64), Windows (x86/x64), or MacOS (10.9+, x64) you can simply pip install simplejpeg. Update pip if it wants to build from source anyway.

  • On other platforms you can try to install from source. Make sure your system is setup to build CPython extensions and install cmake >= 2.8.12. Then run pip install simplejpeg to install from source.

  • You can also run python setup.py bdist_wheel etc. as usual.

Usage

This library provides four functions:

decode_jpeg_header, decode_jpeg, encode_jpeg, is_jpeg.

Uncompressed image data is stored as numpy arrays. Decoding functions can accept any Python object that supports the buffer protocol, like array, bytes, bytearray, memoryview, etc.

decode_jpeg_header

decode_jpeg_header(
    data: Any,
    min_height: SupportsInt=0,
    min_width: SupportsInt=0,
    min_factor: SupportsFloat=1,
) -> (SupportsInt, SupportsInt, Text, Text)

Decode only the header of a JPEG image given as JPEG (JFIF) data from memory. Accepts any input that supports the buffer protocol. This is very fast on the order of 100000+ images per second. Returns height and width in pixels of the image when decoded, and colorspace and subsampling as string.

  • data: JPEG data in memory; must support buffer interface (e.g., bytes, memoryview)

  • min_height: minimum height in pixels of the decoded image; values <= 0 are ignored

  • min_width: minimum width in pixels of the decoded image; values <= 0 are ignored

  • min_factor: minimum downsampling factor when decoding to smaller size; factors smaller than 2 may take longer to decode

  • returns: (height: int, width: int, colorspace: str, color subsampling: str)

decode_jpeg

def decode_jpeg(
    data: SupportsBuffer,
    colorspace: Text='RGB',
    fastdct: Any=False,
    fastupsample: Any=False,
    min_height: SupportsInt=0,
    min_width: SupportsInt=0,
    min_factor: SupportsFloat=1,
    buffer: SupportsBuffer=None,
) -> np.ndarray

Decode a JPEG image given as JPEG (JFIF) data from memory. Accepts any input that supports the buffer protocol. Returns the image as numpy array in the requested colorspace.

  • data: JPEG data in memory; must support buffer interface (e.g., bytes, memoryview)

  • colorspace: target colorspace, any of the following: ‘RGB’, ‘BGR’, ‘RGBX’, ‘BGRX’, ‘XBGR’, ‘XRGB’, ‘GRAY’, ‘RGBA’, ‘BGRA’, ‘ABGR’, ‘ARGB’; ‘CMYK’ may only be used for images already in CMYK space

  • fastdct: if True, use fastest DCT method; speeds up decoding by 4-5% for a minor loss in quality

  • fastupsample: if True, use fastest color upsampling method; speeds up decoding by 4-5% for a minor loss in quality

  • min_height: minimum height in pixels of the decoded image; values <= 0 are ignored

  • param min_width: minimum width in pixels of the decoded image; values <= 0 are ignored

  • param min_factor: minimum downsampling factor when decoding to smaller size; factors smaller than 2 may take longer to decode

  • buffer: use given object as output buffer; must support the buffer protocol and be writable, e.g., numpy ndarray or bytearray; use decode_jpeg_header to find out required minimum size

  • returns: image as numpy.ndarray

encode_jpeg

def encode_jpeg(
        image: numpy.ndarray,
        quality: SupportsInt=85,
        colorspace: Text='RGB',
        colorsubsampling: Text='444',
        fastdct: Any=True,
) -> bytes

Encode an image given as numpy array to JPEG (JFIF) string. Returns JPEG (JFIF) data.

  • image: uncompressed image as uint8 array

  • quality: JPEG quantization factor; 0-100, higher equals better quality

  • colorspace: source colorspace; one of ‘RGB’, ‘BGR’, ‘RGBX’, ‘BGRX’, ‘XBGR’, ‘XRGB’, ‘GRAY’, ‘RGBA’, ‘BGRA’, ‘ABGR’, ‘ARGB’, ‘CMYK’

  • colorsubsampling: subsampling factor for color channels; one of ‘444’, ‘422’, ‘420’, ‘440’, ‘411’, ‘Gray’.

  • fastdct: If True, use fastest DCT method; usually no observable difference

  • returns: bytes object of encoded image as JPEG (JFIF) data

is_jpeg

def is_jpeg(data: SupportsBytes)

Check whether a bytes object (or similar) contains JPEG (JFIF) data.

  • data: JPEG (JFIF) data

  • returns: True if JPEG

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

simplejpeg-1.6.5.tar.gz (5.1 MB view details)

Uploaded Source

Built Distributions

simplejpeg-1.6.5-cp310-cp310-win_amd64.whl (213.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (274.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (242.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

simplejpeg-1.6.5-cp310-cp310-macosx_10_9_x86_64.whl (320.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

simplejpeg-1.6.5-cp39-cp39-win_amd64.whl (214.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

simplejpeg-1.6.5-cp39-cp39-win32.whl (195.9 kB view details)

Uploaded CPython 3.9 Windows x86

simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (243.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (272.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (263.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl (265.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.24+ i686

simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (306.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

simplejpeg-1.6.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (264.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

simplejpeg-1.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (245.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

simplejpeg-1.6.5-cp39-cp39-macosx_10_9_x86_64.whl (321.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

simplejpeg-1.6.5-cp38-cp38-win_amd64.whl (214.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

simplejpeg-1.6.5-cp38-cp38-win32.whl (196.0 kB view details)

Uploaded CPython 3.8 Windows x86

simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (275.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (243.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (272.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (263.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl (265.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.24+ i686

simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (306.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

simplejpeg-1.6.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (265.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

simplejpeg-1.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (245.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

simplejpeg-1.6.5-cp38-cp38-macosx_10_9_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

simplejpeg-1.6.5-cp37-cp37m-win_amd64.whl (213.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

simplejpeg-1.6.5-cp37-cp37m-win32.whl (195.0 kB view details)

Uploaded CPython 3.7m Windows x86

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (274.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (243.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (271.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (262.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl (265.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.24+ i686

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (305.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (267.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

simplejpeg-1.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (245.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

simplejpeg-1.6.5-cp37-cp37m-macosx_10_9_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

simplejpeg-1.6.5-cp36-cp36m-win_amd64.whl (222.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

simplejpeg-1.6.5-cp36-cp36m-win32.whl (200.8 kB view details)

Uploaded CPython 3.6m Windows x86

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (274.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (243.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (271.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (262.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl (265.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.24+ i686

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (306.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.17+ i686

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (267.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ x86-64

simplejpeg-1.6.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (246.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

simplejpeg-1.6.5-cp36-cp36m-macosx_10_9_x86_64.whl (320.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file simplejpeg-1.6.5.tar.gz.

File metadata

  • Download URL: simplejpeg-1.6.5.tar.gz
  • Upload date:
  • Size: 5.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for simplejpeg-1.6.5.tar.gz
Algorithm Hash digest
SHA256 788dd8819bd11b7f52d958f3ab9259098cf895bd4f7e411dd9dd2172d5c41139
MD5 b5c3eccaee37a5c7d0b826ff118184aa
BLAKE2b-256 36638e6a6cc4dd44498be689dd18ce2384ca711f23eef08baee9b9f9fa11c2c5

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 756fe6d6e2054614d1f08a1f1dc4b9f131183e21b1a88440001a60dfc7f99984
MD5 fb6490f8939730c9108d18e16d072617
BLAKE2b-256 a9f05e88311eeef41ba57b32e4013953b0703b0b4eae46be1692fda6086e9834

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6272c0e9503c7047e41b6470c3b7f9de168d4c97e9cc062a54e8273272010607
MD5 7dadd2b1ccdd32939b79751f397bc0e3
BLAKE2b-256 3aedebbabe4c48f1d2054023a89f919d410b6945d304255f85ff9646a84efe14

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 77dbfc974ecd070809e337383ddfd5f1e5881c5ec6db44709ce56c43dd37f8d7
MD5 b910f874f36c83b7cf280fb587db46cb
BLAKE2b-256 a1cd82c9d814f91b789ff834a42d218ce397df38d73a33031a0cb30aa7e042a2

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 34e94824596d0fe331b8f614c3db9b5dff8ec72056de86a7774cc4dee9c7f778
MD5 ba2898ffb0d0fe7b323ca08e9c12fbd7
BLAKE2b-256 c6b834a7864f926ff5cbdbde56aeb25269709fbe892d3c70d1757ed814ae527f

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49c80cebb911742841791077afa4e2a3467fb2f0d0704a48b76fae2a45b97c5a
MD5 260e7cbd19af7b8a61114216e2793b6c
BLAKE2b-256 c4e2db478e21602d9d866159ba8d4cb7255db4e13accc857c0dc0c068807be55

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: simplejpeg-1.6.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 214.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8577026594c5f0e12d4613f89879f138c7c4e29df68e9bc8e6a2229490a8471f
MD5 4a1d5ebd14ad84948c54beda8b063fe8
BLAKE2b-256 f7f06a6d357d34b3793a8d95810ec37bb7e6758810166470e5bbc759fc087f36

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: simplejpeg-1.6.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 195.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 90df8ce018f4e28eae0d2479ad5ecf39640d85a2a6e91bcef4a1766f0759734c
MD5 7fcf0a7beb5382e96c21817662697410
BLAKE2b-256 b1587a79a1982794abb31d228b2f4af73df98c901d7844296fcdab4df4c90fbf

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2006bd4a8a2c63655baaa4365fdf640eaf1ba96f267ae4ee03ce177d2c05578f
MD5 2fb21b91b62b9b950170fd94d52ad8cd
BLAKE2b-256 f25ed18054173cb177d69488bb4ad702a8aea679aaa17642969917c95d364e99

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 1325099edd6342e58c457af76dfc8da9f2e63b8ec133c1bc8e10fae2fe3a803c
MD5 7c8de03d886b16830240802b0f393678
BLAKE2b-256 8942d5e576d612f2e96ef3681566d0a548964faf1e5cabdca0e049beec26cc9e

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 66d8588b23e49c08e28a6d1500067c333dca6cc8f8831755b658172a5354fd75
MD5 2ecb9e89d05647e88dd70a5149fd8b7b
BLAKE2b-256 daa8dc735b77f99ba2371f79ade8986d3d1731e2142fcaca8ce458ecd226d8a5

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e5ba224b8064747e8149b48e0ec071e37ccbbe6a70aadd279ff81ef129e9781d
MD5 a1751a329123ad7e2d6e6429d439d74e
BLAKE2b-256 4e29a76f2bd50ecf26c858b5f48db98eca42c174f3c14fe98e9b6887c23fe45c

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d5646723cbed93357461c244c3128124f0dd524a8655f87f724b6ca3f50b59cb
MD5 236f76ff53cd4b9a6bd1b963b2525b14
BLAKE2b-256 02cc1a6ec4bd0e806703174fffca679cfca1082eff2e0b8a884a95089ddc63ac

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 1235ff17c56a3edd7e417ebe4a97ec4c2e6d2c110d39c40e401a5f1bcb4826b6
MD5 e50747c8aa9e40f720c2b173e4d0435c
BLAKE2b-256 399852c890f8e631dc33edd9e820b9222336b3aed43e6eea0a21c2301ad97f15

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d1b56978ee069b892c830dd37c0ca8ed5d8a7cf1ce51ef250160e74f6768d99
MD5 e577aab7346655005ded06b6843b9121
BLAKE2b-256 9c7641ccea2eb96a650b521b75b073a9506f30e4e57443a5515f8670915e89f9

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c95f6a6690b20f440f417596bb2acdee2fead13b2cfd62b95cc3d1b861e54ded
MD5 c45df8d8a3df6baebf60474930ca270a
BLAKE2b-256 fccbf736b0a605d8f0dbc1a427d343fc2fde7323d6e3ad4441f116e102782f8a

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bbe7fd64117f347846594cf98ddcf75e3875e95bd3d67842306639c4439111db
MD5 374d58f6be76b2089a71fdcd620bc70b
BLAKE2b-256 510f8f6834b35cbd2446513d72d7e45b43ce178ee8543494a9fe2c09f31aeb2d

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12f8d4703bf1ed4585e5e0e06444664d93b3fedd9c61ade42754eeb1774fe470
MD5 a3ee830fffcbef645cd76b5c2365b9f1
BLAKE2b-256 b1cc3aefde09e179df76ba5c119238bc6f1dcfeb7663fe00b9b225649a0592dd

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: simplejpeg-1.6.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 214.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0c822db4b3df4f5182587e8e246ebe2d5a1689912dc1b86e908f565e1f436aba
MD5 0a3a799f90bc3e5835fea8d40260a02c
BLAKE2b-256 3f054b49523c7cb60482ead8d4fbca05771c7699da47805e3b3fc47b0f0fa614

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: simplejpeg-1.6.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 196.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0f1a1f8f81379a7e1e6831585edc260781c37c253add56ae91ea9a308b3b2974
MD5 b72152684aa914e3f7a24498d60f3b93
BLAKE2b-256 53cb6db31208a9387e1fd03f7087c35c41b7bba61719991d6b08ca495a562434

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 049754073d9a57f4941af86af335c04814c542e9c0befb444325bccd4a7fcf07
MD5 f95e7ec91b704ffe2fe08611988d7021
BLAKE2b-256 2947528a9083419d276ddc62633b3657324b6a33723eb53ab6d46882c7b1ade0

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6babfd566985880a5a8add06d2c3777bad0b333be3e64af4d66d1b51b6c83600
MD5 0155ebd26a837a0e38ad505868dc13dd
BLAKE2b-256 540acdfe0032b7a43d79c8d6b9a58bd8f20cd25fa68d0947cf67780f785f757d

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 783541c5ba21d65db55162857dd6b33f380ac91bcb21b9f4e372754bca579965
MD5 416cdcc48b63928bece56556a2e2df35
BLAKE2b-256 3c024ad196c38fc454fcf5e6698540bc5584333049d54c8e07377c6e52b798a1

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e83d0871edf8079a616120f237ebbcceddc855549adbdbf993bc2102f5128cad
MD5 0a59d33ec2f692f739c46f5dfe458e1b
BLAKE2b-256 354d465e114e257b646aae36f821794181573b9dd3b4e07483d47e531820a0be

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a3a1c31ba3e9fecc7a48e3670c496f86bfe55afd6ffe4bfe0cdcc21b5a101ac7
MD5 61bf523cde60076aae12d9ff032d59a7
BLAKE2b-256 987750c81ee4b460c049597fdb1d93410ece2a11aef14e03099cc78a4265af3a

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 8393756752aa04ed2faaf032837531ea1552dace73d7f0307a2ad7e9fb271a5d
MD5 8271e5004368e2d65c3a31876fe85d08
BLAKE2b-256 e7d726948ebaacde9a9eb7eb9ba10eca77615926d2ef86af77937713ce2ea05c

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79a7b8f6cbffdcf41bea935d54da0eaa595bb0cac9cea6f2f68f262873674cd5
MD5 406f9178d181fd549fa0bdcc02ead12d
BLAKE2b-256 15b3e7da30fa5d340a821e998db035fb6ef8345fd228b4393772748deead5d36

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 28472a0ae6f3106ba182c62a4be08bfe011034502cf755b96cdd72f256fceafe
MD5 695b5aa31953020c7c63ae5927f01418
BLAKE2b-256 5a017a4e447d656809087e823d1ab5c5587608ea11b15664aae1ca95943ad60a

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cacbd3f158a3955ff02d945909d036fb447177b5d55797b7bee5462bd724f445
MD5 f2a3e6cf0264cc54e0c6a46fa5e6ea50
BLAKE2b-256 d176e527692e0d053db0430c141964611bd2254c1639013ec9e2d67af05e7544

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9974bf24ab2b52295560d561ea0ceaef7496cf9a40388cb96244c7b9199bbb75
MD5 1786a1c6bd7f9221b00abe3d1ae92ffd
BLAKE2b-256 b0b25fecb3d54aa63db60457b4c770fde08bb15b8688dbe07b85579c9972b658

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 31c01f553d3dcaa94ae41c936fd46e59acf45139ca2f0812eeed5383ec0caeb1
MD5 4938c44871801dc29dcdca18b6848acc
BLAKE2b-256 a1b19258db117c599f4a6416b7d81abd77fdab75dfaddca8a1a65d2e8885f658

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: simplejpeg-1.6.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 195.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ab9658c4cd4fe23dae132820e1e2c745f239b07b3bd2a8406e5e4587e91bd83e
MD5 97073c2aa77324094780017d18f523a6
BLAKE2b-256 b7a5cb99e728d93401c31cfa816dba998cc89cb87c1eed9d4c054a0dec908b61

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40949b9c17331dd4a44fac52f23bd11413b6ecfe1f15900164779032de00b633
MD5 6fb3d6f101e6f882f72dbf47572f53e2
BLAKE2b-256 7a12a8cb90d58a3ffccd6d021de6785160fd4e2554ba5e3d41f3797313376394

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 02912fe75497a342e311e808a050af4da28052f1c7fd0936a15fb21035cfd7f7
MD5 d4ed8214034a2760c2ada9c5da1ef19a
BLAKE2b-256 31962de029f4617c666edb23fd75e3d74aee3f75bb436cc6aa14719333d4fd63

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 9e4d8ec4479cdf72c3007d127f91fdc5a364bf5075281f81b90fb3ad1a15978f
MD5 9c1e376829845fb998361785356ed756
BLAKE2b-256 b71c01393d45521c9daa4e3bc72798bff43335212e0e0a2c64201ca6bd33d890

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c6b335a243877d16bd609b578b09f045172d8d8e0f9df155279ae47054aaaba4
MD5 2c7696d80a68c4c9eb906921f655d69b
BLAKE2b-256 2f1671ecd36e020b82d0ccfd3065d792e3b989653266719624e92304b8b17282

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4163f0d8896d927d73bfd0effd8f1594581117bedf6fd9b6856da7309d08bb22
MD5 decc7bb860235ddf6f81c1a5ba032de8
BLAKE2b-256 569343511da101347eb5d5c8df265e066cca67d74ed1ecf6bfe942ba47c14be4

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7aa71e8bd54112646d5433045c4bc1119683543b6971e651a269e996830fa9af
MD5 44ca956d2450be2e354620e354ab0234
BLAKE2b-256 438dedd29eec93b584a984abbaf67e65104e5bdb5799656dca670916777447d7

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31739d7016e4f633395ec78d0638ae2ef0efa4dfdc848efd5ad9fc0c1baac89f
MD5 a056cf4a990586ed125a8a1ea6fcdf91
BLAKE2b-256 69dde3ff252e818dbe25cf372e1c6934402240a367155d44ec3f65961c4c8bfb

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 db887fb426ca015a2f181e8b0dc29a9738e4c2b4ea2984dd850d80044faed937
MD5 9b83650f68e3756be03b2adb4d43d37f
BLAKE2b-256 1d477b89cbf8b576a8d524ec096f483f20d18b76e9540256020b86b0256c6c89

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ca69db366fac0a182c6d54626e6664c0f7e5597e6aa70e79e56bcec5955bbe8
MD5 154a1854888cd473bf9cb98b5eb4b6d8
BLAKE2b-256 6e6e7793c9c7ace337f9eb1e435ab9a03fcb5df2bb8fe4c3ba7a281795b2e1a0

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7af0b0770d7337616f211e97cc78bd36983bd58bea648dc589039e99c681909
MD5 88dba94c160b6c2e1fa224251bb5d9a9
BLAKE2b-256 d0e5477e878c12b7e2cc42c7f06a28a6f89d9c417648d7be0f2579530d67eab4

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6664b74423f07e4a214724ed70aaf39e2dee12de431f2d7e88155c694f62a394
MD5 a404d9972bb390ffe168ef48df12fcc2
BLAKE2b-256 c9331e6718026ddfae02c3fd484399c42cf6c2c8f112fc7135ee3517325c0ffc

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: simplejpeg-1.6.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ec939555d934ec728ebc638342638378e2adc88da0424908d9d7841b910446c7
MD5 5ddda35b0f099a0e9457283fe48343cc
BLAKE2b-256 6b929327ffdd28282b4893f9711b87ed350ccc86d43f03ece206912fc2e2bc3f

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ba11dde7a50047eb958e4c6b8a37059511b6da0007633285d5e80d12659f512
MD5 4707f81972c4ce4e23a635943c9a42f2
BLAKE2b-256 bf4c5b84e3209adb1fe3284e5d233f4263bec30fc3ef840290a15b7873c9d0b2

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 f825b9d9ac8889039bf2e2997ded80e19292b6b81819e5eca7c5bad2e6b1c805
MD5 f57000f1aeddc3df0b0ab5bb402db7a3
BLAKE2b-256 ee0288b8c8cffb8eadb0da1eaef62af5fbbb43dc0bb33620de107081e7314a40

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 18aee91cc01b4d6ad7b45781eaa6fde06dbc6b19fa6643176c0dfd6ee68c73ff
MD5 f5cfe0854f86989dd3ae4ae7669be789
BLAKE2b-256 dd2243b5b2be69423d8c33c9e8a7c321a56f2020bee8fbaf4422f9bfe569b1a8

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a0e142479518752ad33be1dba37623f1a82bc5b512054f87bd69870314c34bcf
MD5 f0601a8ceb5a07fe95ba49ca6c8689d9
BLAKE2b-256 53a143995516a20b0312c43054487d5874b4d7d97ed6f56aae456c7ee3744915

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6c33224c23fbaa0039846ed3a144db7537129f9aa1e53e8cdc1bd3230cbdf9b6
MD5 e69b0b7d1178242706d34d76b0cd00c9
BLAKE2b-256 8faebb463806048806563f23f9380aec58ddfab2cf37ef1829902bf5b1ceec46

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 087aea0e5da731fc0b4f3600c3f71e33697a9717596c71ee072b8963cd0aadd0
MD5 f814419375f4fe3b9830161aecfb819f
BLAKE2b-256 26bcf8a331c775dc5aa1d6537c83e8572cd75d9933cbb63110430f5db1da0098

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ea614d5ee1fb5b7a9d076cd6185d0d47cb3239919c304dc7ede08f0c05dce98
MD5 43c4243221956d44c0c5b07cee8467f6
BLAKE2b-256 eeed6dd45760a99be8be12a221af7396e8b49e5f74f7189773a21df8694c5241

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0dd1cd7f9aad8f7f603cb11b9294cf8228e1b5f37f3e38185639b47d1d433c2e
MD5 f5c4abc9cf69ad390df82dd30a804ae2
BLAKE2b-256 96e873b84bf2c18f299eb09a9b320484e42aa0849fc0319dc9377a74d6fe8238

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c57c06114397330eee87fcc6a1a7c24a1a901391dccce925164d9a0b08f6cc7
MD5 e97801edc429f226c02847e0c02fdadc
BLAKE2b-256 c6683d23ee952062104186aa384aa320896e4225db478c05195e9e69be4358b3

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e6f0eeb46b582cec9b60972fc572ea0d4b6e6dacbe43b2341ff757f6e8896b5
MD5 019490b267327ec59b993890c815ff9a
BLAKE2b-256 814534e8c07c184b8979908a1128773bfdaa882e4baa1e164c75799c62714051

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