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.6.tar.gz (5.1 MB view details)

Uploaded Source

Built Distributions

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

simplejpeg-1.6.6-cp311-cp311-win_amd64.whl (213.1 kB view details)

Uploaded CPython 3.11Windows x86-64

simplejpeg-1.6.6-cp311-cp311-win32.whl (194.5 kB view details)

Uploaded CPython 3.11Windows x86

simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (275.5 kB view details)

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

simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (242.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

simplejpeg-1.6.6-cp311-cp311-macosx_10_9_x86_64.whl (319.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

simplejpeg-1.6.6-cp310-cp310-win_amd64.whl (213.9 kB view details)

Uploaded CPython 3.10Windows x86-64

simplejpeg-1.6.6-cp310-cp310-win32.whl (195.3 kB view details)

Uploaded CPython 3.10Windows x86

simplejpeg-1.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (275.4 kB view details)

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

simplejpeg-1.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (242.4 kB view details)

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

simplejpeg-1.6.6-cp310-cp310-macosx_10_9_x86_64.whl (321.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

simplejpeg-1.6.6-cp39-cp39-win_amd64.whl (215.0 kB view details)

Uploaded CPython 3.9Windows x86-64

simplejpeg-1.6.6-cp39-cp39-win32.whl (196.1 kB view details)

Uploaded CPython 3.9Windows x86

simplejpeg-1.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (276.7 kB view details)

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

simplejpeg-1.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (244.0 kB view details)

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

simplejpeg-1.6.6-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (273.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

simplejpeg-1.6.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (263.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

simplejpeg-1.6.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl (267.0 kB view details)

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

simplejpeg-1.6.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (307.3 kB view details)

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

simplejpeg-1.6.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (265.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

simplejpeg-1.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (246.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

simplejpeg-1.6.6-cp39-cp39-macosx_10_9_x86_64.whl (322.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

simplejpeg-1.6.6-cp38-cp38-win_amd64.whl (215.1 kB view details)

Uploaded CPython 3.8Windows x86-64

simplejpeg-1.6.6-cp38-cp38-win32.whl (196.3 kB view details)

Uploaded CPython 3.8Windows x86

simplejpeg-1.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

simplejpeg-1.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (276.5 kB view details)

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

simplejpeg-1.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (243.6 kB view details)

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

simplejpeg-1.6.6-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (272.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

simplejpeg-1.6.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (263.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

simplejpeg-1.6.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl (267.2 kB view details)

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

simplejpeg-1.6.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (307.3 kB view details)

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

simplejpeg-1.6.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (266.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

simplejpeg-1.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (246.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

simplejpeg-1.6.6-cp38-cp38-macosx_10_9_x86_64.whl (319.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

simplejpeg-1.6.6-cp37-cp37m-win_amd64.whl (213.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

simplejpeg-1.6.6-cp37-cp37m-win32.whl (195.3 kB view details)

Uploaded CPython 3.7mWindows x86

simplejpeg-1.6.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

simplejpeg-1.6.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (275.3 kB view details)

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

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.24+ ARM64

simplejpeg-1.6.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (271.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

simplejpeg-1.6.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (262.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

simplejpeg-1.6.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl (266.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686manylinux: glibc 2.24+ i686

simplejpeg-1.6.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (306.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

simplejpeg-1.6.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (268.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ x86-64

simplejpeg-1.6.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (247.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

simplejpeg-1.6.6-cp37-cp37m-macosx_10_9_x86_64.whl (319.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for simplejpeg-1.6.6.tar.gz
Algorithm Hash digest
SHA256 942294f9fd602375289759f1b70dd734e1c939063d8479c04dffb23074a8d662
MD5 8f25a777a21832be0771ee22f282ce88
BLAKE2b-256 25506a4ea4f14d72d21c0fe0e3ef4c916b162fc6208f7a32c145f690c7c678b0

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: simplejpeg-1.6.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 213.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5795a4b59d46ab912d37d0ec292357222a12ecc7b48ba63b74bc9a44289f934b
MD5 2e78fdcf08318dd8711dbbe8246aed12
BLAKE2b-256 7421c94ab21bb73f82f879b9862010645288671c4ab5d3b9a5a9f8ef7cd3fcbe

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: simplejpeg-1.6.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 194.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 05ab033813ca959566504703f0bb80adac5c254899e2685f101e6781148ac612
MD5 1f5e696abe5e0f860ad1a0c13e74c441
BLAKE2b-256 72425d5d09b5ba132c10f4cb73ecdad4e7204034bb1f319a755470a1fa7a6e32

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0bce76b64e9a74b3da3d1626c46d124c79a0f2484bf621084947f7c22dfbdba
MD5 4758be0d2e10f1b296e67ece4636b478
BLAKE2b-256 04eef8376b2b4583c872a781eb748f4adb14e14283ef62006da1a4cf75efc8e3

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 19e1bedda45128c561e01e4d286242bad452516d2157a51c122aff638b700b61
MD5 2c522a3cbc7aea5ce147976a455a8f66
BLAKE2b-256 5efd06c0ebc94d9630288e5405321a9bda83d80c72b953743de53ad5c75bcc11

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 50b282cc9e03a315d452e8fb541cfe0d9b8e0dff1869a90828faab4c99d70331
MD5 0a29f9057f0f6c2a3b06d4df53e5f5b0
BLAKE2b-256 ac35b20cad2bee9d91e901f16beaa9d26ff4685dd17ad727918774b32ec04485

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89fa47120fa9011b5a906106e53c828e0176b329d44859138a3cfcf157cd70ae
MD5 05ebd8d0790c28cccb0711dc23d5ba83
BLAKE2b-256 c6003aec9b79796de5ed505066033485b271e00d9d2b7bb4ac90c7130a16fa36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplejpeg-1.6.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 213.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da6cf41c745643f99b971b2aab7f067bb5784bd9b5a5df4fd93d3bbd8fd6fd86
MD5 2c4c3289fae2697084b1549528387708
BLAKE2b-256 59aaa345af868a08b1e0cbb6294e1d68a01711f6eaebd72b2053a79e3a378263

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: simplejpeg-1.6.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 195.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c0b9af242036677ebbe8368cd47ee1ecad2a583c07025d0fbbda436a2833faa9
MD5 a02a4bb346e784b42bbc0fa26b122445
BLAKE2b-256 d8585e1890746ff1ddeb47a6fb41abcab9cad893af4f9ccd255617fde014b121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1d5a7fdf3e85778b1310042e81802090dc5d511be184c320caa263d31bafc42
MD5 803b87db49cab4170f0c50b57ea9c2f0
BLAKE2b-256 f2d106c7c939b0792134e1f63020763d87b1001075cd5b2b95383dae5e2b91d4

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-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.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6d9fe04d42c40ff3b4349722c47f20681f25937739053734c2a0ab2a55195cf5
MD5 e673e01ec239062fe191af3204372a90
BLAKE2b-256 14f580b4d5c83eec027c426afb5e9f57212a20197c6136290a69c085e018e762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 b7a9958c1da3950535b030d1a1c47e8c3efbacdbb0e677d50c807daeb64d5e85
MD5 3c4886029752a450c3dea9635bb8ea5c
BLAKE2b-256 b4f5376f9c99b96d3aa3a26ada8e2930e919cd3247cf5da4d122e8a4fc9d45b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7657b39738fc13251cbf2e63ad99f035639531379c9586e446ca46190a29e65f
MD5 9a61f33b85999347cb270ff61cb90b0b
BLAKE2b-256 663a8f4a46efe356acf07189a3cd75d43e5199903601de1ecf3efd061781c27c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplejpeg-1.6.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 215.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9d9b49d0f14bb0754a81fa3f2c05b85dcf21a62b6d4922c142cd743ded4aadcd
MD5 682bd223ffdb63b7e0d3835eef7107a7
BLAKE2b-256 8371825486bbbb2107b9786348367b532d46ba45c9b47b99b5e32bbc5f2edcff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplejpeg-1.6.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 196.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 410f2de3ab49f7860c0fe837deaf3869729f440f7a1ca14e9b0cfe91cc42e5a5
MD5 351d241549e4d381e6fe69982bb77f15
BLAKE2b-256 6c9d55884684343a64d387076db1c99e48e60b3dc56d8c1c80d434332a4ee357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11e80192f3e796c73deccf4c1d8b1663e5eb0e3abbe41c64fcea28bdec6213ab
MD5 bc047e242c52f91eba13139e83cea55d
BLAKE2b-256 1f776c8f9efe0398906936b643e590ab127bb8b9f877290c1dbc3e937643eb68

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-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.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 019c05b1c8fd43b2417ece443afdad8ebafd78d081344f8a9bf20bc6b91bdf42
MD5 173251019ef74281856d5dd744f06854
BLAKE2b-256 d9adfcbb039f14a7c963f35316164b2f4c002a5edca511af4bc4c136892a8b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 dd7fe07f792fe9078bf13ff7fad897e505bacb8698e29b1a97cfd7938f874401
MD5 a997e34a14fc194cd083f9490f9adbd4
BLAKE2b-256 80651e2ddb7ad74ce8c75f056dabe86261ffc59cd7dbb321b206953ffabc94be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 42af31461afdc7c63e58bdf68bc95f98e04562c6ed4a874977e065acc94623bd
MD5 de01334365dd83c6b0796647cab04570
BLAKE2b-256 bdde7ed432f4a13d27512d976f0a18943fa1da4d74f187c39bb435f8a3605d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d624dddcd70863bb9f8c68fbff0541a8d853832a9f7c7a083304e8a818b9b2d2
MD5 adf681d13ff36a6660adc335f79febb7
BLAKE2b-256 7d55da73e3ac0e499ba3a277907477fd3abe697ed0b7f1189dac0ded283d668f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 4b22f519a490d00e7e1cb4fe814ab8f32cdb19dd3a03facd5d8424f16e56ee87
MD5 b699c52b791882015e3d6ef2a2513c9e
BLAKE2b-256 08d1cec0dfd95fdb0e847835e3960618563e61aab8be5cb91fee197551e19cb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a157955ab2b89414598f427468c8a8b7d8d153deec1f38ec2af9a838b29afa3
MD5 a36fe31c2143bbf56ac95ba1a30e56e2
BLAKE2b-256 22c81ad54abc25b011e5f75e3d7d6a9ee45d3bfb66e841606a4dac21d7a9f00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8f28d6a367d4dd298aa6d6c7f17d9f20258a6b38420938a0f9d2b9f95a205564
MD5 30e75ec23f459d4b8ae481ea6c4f169e
BLAKE2b-256 95015740af235cf99893511b250d9ca1e361119adf1974d7fbb4c2097ae4d0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e08165994c04af6408bb9f6824def8e39a845fce9c0da7e4034a87c82e30dc72
MD5 f66cb275b37c777ac1882958966f0dca
BLAKE2b-256 096400730a2d2776853b8ded6f0c712ebe67098b4d7ecec44963f91eb7cd7c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27e0d640701b2b3fa1c5a749543071b87fd77a6c5f100c85bfe12eec63687dfe
MD5 42730795a2c015cbf7c1ded69b8f7d06
BLAKE2b-256 d5ef78277a3f129c33486fe3db6c296782dd74157562dd08751caedff777d845

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplejpeg-1.6.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 215.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2219ef4600321472b94dea9629951c1e7788b131778aba939f9893c4283ad59b
MD5 5ba17baf2c29f87ca6849e17b251a7ec
BLAKE2b-256 5461b393682727968f1b08571d62e5b276e7f5cc9fcdb4b4dc8ccef177ce345c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplejpeg-1.6.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 196.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 28c03910b433605abc43d27ead8448508f9f6ae28ea07f93b7bcb6a27647ce63
MD5 deda53e5a447172cf6831835ebff5e83
BLAKE2b-256 6f34f143e51184dd1f7702893e1da2356a72ab5e24acbf6f1f36f7c0f157265c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d23cec48f83717c540e65fa2c0a87fc49f8576a3c509ec40f06c04d9b9e590a
MD5 76ba3940ab901c8529456bc591eac7f1
BLAKE2b-256 91dbb843dbed1f53f5cb25963f60198b8ba2781af28cd930502170b2e6905fac

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-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.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 297d9eb226cb89ea5777f0f1e96c2234a6fb3d41410318554377f6f7f5d7718e
MD5 70c09460fc34aae972e691f20a44f5c8
BLAKE2b-256 76aa691185e8fb808354b8d34224d51dfbf1a9e12c0c8d69a5dc40f985e1257e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 3c7b861d5b8d9942548006aae84bead2c0e9412616517e16db9a097481f472ee
MD5 26df4f29fd04c680d4f6f6b2283da857
BLAKE2b-256 774ea8fc716098ae7cfc7d7a5daef9435546bfa83076495194ddd96019903ab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6aa7d19fc87a906055b89d2b25dfefea6b05986fd1188d8738850989ca6e3b5a
MD5 be2ecf851eb1142aaa27ee2908ca2f52
BLAKE2b-256 8e491eca48896950750aefad46fb8d62c52ce1b77f909ae291329f357b4ba31c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5bee20131148594b4e74bc1db38772c623c10ea998fc507d0fd1dec7539afa0
MD5 aa4ab9b49abc18662ed4eea154f19000
BLAKE2b-256 799d052aebbe6f56016b55bf32603aa0bb33d4cea5db1ef44f191e8af9990982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 0ffc12a2b961d909083c35abcf14c2eb31bf46dee5129c71798d2c49f57b5157
MD5 3328ce86ed50c5cc80bc14b18a6de112
BLAKE2b-256 800ee012ab5979180c0b8ea36ef635b38dd977c64f34527c2b931671e5588e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e4b898dbe35f5ebe381198a00ee8289686e3a9d8a93a2108c960fc17da30e36
MD5 48216c7401c3bd86f900d7c90658e3fa
BLAKE2b-256 75ef32f3a435c658b10ad7d1601e40e7e71dc9b7671e2b757b611aeecb0a7a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0c99838641f05f41164559f566e337275ab723fddc145c3f85890a8429389841
MD5 a53ca95829d6f9ebe8c00f87891ec83b
BLAKE2b-256 b0457f63df9c443b1f3154920f51bcec971cf42fd502cb256aa530d01b857429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 325b826a74717931e428d83c975bf3aefc28a5e89eab8feca7cde4661193077a
MD5 757a4bdc264b62c6a0a4fe8bc4f18687
BLAKE2b-256 29c88a6a7907d3f0f7954df307f89c2adc0c7c619397cc758bb8fb041518096c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5446f2fe9cc0f65f6fba8792aa53fba05e6b4cbc718dd18e7b6f4545ff4e13ac
MD5 07688de0d5991a0dfd745b769b5e29ff
BLAKE2b-256 d214e7740f614e16f2bfc4c5df932d92b3e77a7296fa00f6227c4333e102eb81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplejpeg-1.6.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 213.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0ed11dee7a4f9dab3068412bd9fb975a945adb7b065c60222c16fd884d20d0ec
MD5 50e0a24498b99c8ec3b4b1add106927b
BLAKE2b-256 8ea03741b0d665227cd526eaaddfa785fa07a95d883b63a14e867ca5815df8c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simplejpeg-1.6.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 195.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8bb772069dd8361ec13a79abe40dd5ac99d4c87264b4ba087002f5c5db06790d
MD5 13fa56a09605a40db47570ec00e61582
BLAKE2b-256 17b4be775218b54206a4902aaeca275d12ffdc5febf093c14cd2a61eec9e2937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8327b06904543a24feb3acab48964d0a30d7c6710559bf24174ba116c5c4a211
MD5 f55114d3bff994285cf6c21d446ac47f
BLAKE2b-256 7ee2232927e63bd1f9681bc2492c5d21c82de81db74b5d08609726edd84938b7

See more details on using hashes here.

File details

Details for the file simplejpeg-1.6.6-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.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 86b92777739c7204e7419af59b99b43ef6bb1431de0614013eb87de189dbcd30
MD5 0d0c7d729e7fb14b4a68d2a8670d711e
BLAKE2b-256 6ac4e6312a1f142c8a93e85f3f3b4a4d9cb2d1004c59ff25f20e75bea9e2164d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 b2c09cdd093d2781741d837f371e61bac862cd66e84e7e2628bc5ba6f608bd36
MD5 d084c4777eea0fc17345b62c1a2f5fbc
BLAKE2b-256 26125cb4a3015c03908a0adfc4b1975e1dfeaed06c267d3658ecc991aa1c7219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5b8d8295a463fe3d5470e5c7af75ad29ab9ed7fd65517d52b9064814b2e4d52a
MD5 21f1e7bdb7d5af5cd81c851510858144
BLAKE2b-256 669164889f5afbc7dc5c28ab1b25e5d7646d406b78ef15e7d4905e7283ef125b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fb50a144b9621961e17e7f8c447b9165df8fc06c117188a7b26198e5c1c76a40
MD5 045ddc8f71fdebd3642a1639a984de5e
BLAKE2b-256 08c8173f8e25e723094a71842f939116d5a8eb7c483918d052355d0273b69e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 c6b8bcb986669daa74f304bac30a7fa2ceed37169e63ed689e81a706f34b373b
MD5 52187883eabdaed3d7893f28bf07cd4a
BLAKE2b-256 2812cec7a2502e013824063d62e779a4240a3a189d461ce33d7aadc5fa712c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c9379a4cf106fb33d905d6f01b01e44538ca424df96eae2ba770a18b3d0f6fa
MD5 fdef5e24306f2bed660ffcdec87f15ca
BLAKE2b-256 f815a121b1b1cfbe57780a5a3afdb24d016ff7631fd1393b455f8e8f429cea52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 500151c3dd31a1fce4a3d7b9dfa8a1f5accb771a48c0756e40cebecd238b4513
MD5 4d88b9e95c66ae20413f8024f5be25f4
BLAKE2b-256 3cc61924b4da8dce9d3cb8a99460675e8518e23994bd2d1ef541a8f889c4c114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2232224da0d56f636ebe82f4caa5483d0ffbbe66bdb4525908c3b0cb87fd4b56
MD5 093616782753c3513c422547ec93c09f
BLAKE2b-256 bbd04fde22e45c25fd51823796e2b44025f6aa1305a85e1151a95ccbf502a3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for simplejpeg-1.6.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53c184ed126402838d3ef3ca44eea1686418b2c8bf661c908da1f30bd89bcb76
MD5 c78b8664b7829ca4990cec39cfd98242
BLAKE2b-256 dc5ceab36117a55f4d2c3a2cb8f782030e0d300228ec288652c0b74012157bc1

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