Skip to main content
Files added late

20 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.

turbojpeg-python

Python bindings for libjpeg-turbo using pybind11. It's using Version 3 of the TurboJPEG C API.

It implements the three functions transform, compress and decompress. For more details see the function docstrings or the TurboJPEG C API docs https://rawcdn.githack.com/libjpeg-turbo/libjpeg-turbo/main/doc/html/group___turbo_j_p_e_g.html

Install

  • pip install turbojpeg

Example

Rotate JPEG file losslessly by 90 degrees.

import turbojpeg

with open("image.jpg", "rb") as fr:
    img_data = fr.read()

# lossless rotation. fails if lossless rotation is not possible
# for example when the image dimensions are not multiples of 16
img_data_rot = turbojpeg.transform(img_data, op=turbojpeg.OP.ROT90)

with open("image-rotated.jpg", "xb") as fw:
    fw.write(img_data_rot)

Save random image as JPEG with arithmetic coding.

import numpy as np
import turbojpeg
arr = np.random.randint(0, 256, (256, 256, 3), dtype=np.uint8)  # random color image
quality = 90
result = turbojpeg.compress(arr, quality, turbojpeg.SAMP.Y420, arithmetic=True)
with open("arithmetic.jpg", "xb") as fw:
    fw.write(result)

Build

The Python setup.py expects the libjpeg-turbo binaries in libjpeg-turbo-build. You can either build it yourself or download precompiled binaries. For more details see https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/BUILDING.md.

GitHub actions CI builds wheels for Windows 32 and 64-bit, manylinux 64-bit, musllinux 64-bit and MacOS 64-bit. 32-bit Linux builds fail due some weird NASM error. Not all wheels are tested, since some of the test dependencies are not available for all platforms.

Run tests

python -m unittest discover -s tests

Release files for turbojpeg 0.0.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Files added late

20 files were uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Built distributions (wheels)

Table of built distributions (wheels) for turbojpeg 0.0.2
File
turbojpeg-0.0.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
turbojpeg-0.0.2-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
turbojpeg-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
turbojpeg-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
turbojpeg-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
turbojpeg-0.0.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
turbojpeg-0.0.2-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
turbojpeg-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
turbojpeg-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
turbojpeg-0.0.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
turbojpeg-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
turbojpeg-0.0.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
turbojpeg-0.0.2-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
turbojpeg-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
turbojpeg-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
turbojpeg-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
turbojpeg-0.0.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
turbojpeg-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
turbojpeg-0.0.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
turbojpeg-0.0.2-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
turbojpeg-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
turbojpeg-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
turbojpeg-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
turbojpeg-0.0.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
turbojpeg-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
turbojpeg-0.0.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
turbojpeg-0.0.2-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
turbojpeg-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
turbojpeg-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
turbojpeg-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
turbojpeg-0.0.2-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
turbojpeg-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
turbojpeg-0.0.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
turbojpeg-0.0.2-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
turbojpeg-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
turbojpeg-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
turbojpeg-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
turbojpeg-0.0.2-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
turbojpeg-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
turbojpeg-0.0.2-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
turbojpeg-0.0.2-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
turbojpeg-0.0.2-cp37-cp37m-musllinux_1_2_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64 Details
turbojpeg-0.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
turbojpeg-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
turbojpeg-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 31.8 MB

Release files / turbojpeg-0.0.2-cp313-cp313-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp313-cp313-win_amd64.whl
Size 441.1 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7546bbd379c3e2dfd469c0b81837d2e1ca2d15b8a37eb0d397a19a486b2e114d
BLAKE2b-256 checksum
How to use checksums
2be041c96c3305d4a24561e7aefd348f25629235a49bf1e9c50a720c64b613a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / turbojpeg-0.0.2-cp313-cp313-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp313-cp313-win32.whl
Size 379.3 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
cbc613af0bf22dae2b257710179e2a84f77e7b0e3851e7bfbe8325e2d5bdf16f
BLAKE2b-256 checksum
How to use checksums
133e1a7f0907e3d60de125972975d5c89a22c5ea1e54f0979be35155906fd780
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / turbojpeg-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
da2e24da22e6481c3cd8704b8fe4a80c29fc46a528bba10a6ddd11b531d02fc8
BLAKE2b-256 checksum
How to use checksums
1438d4edf7543203c44b9a18a52da7b7b5fc087dbf4d16917086d8b0b087121b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / turbojpeg-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 568.0 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
807b40c5fb62084d6a5e1e94531c587d1934519173fb3fa7956101598327fff6
BLAKE2b-256 checksum
How to use checksums
935cdefa901b3dc516b68bdbc82058b9f92db427ead1c33bdb45b8527eb41eee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / turbojpeg-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Size 529.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
98a9faac77c0f563786c63c38d816df26ad82132bb313451e95ff26de24b8ee7
BLAKE2b-256 checksum
How to use checksums
4922eedac26fbec8a556343d93a3709cf4e66e8a63d2bf8bc73c0ee9dddd8b61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / turbojpeg-0.0.2-cp312-cp312-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp312-cp312-win_amd64.whl
Size 443.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e2cc871b9bb45f064d03ffa263d5390c709e722bd48c92bfef065bf2a7571c35
BLAKE2b-256 checksum
How to use checksums
24e55a08acd1244b35e0f31cefd50f6648b15cfb420ea8d6fe9c1ebecfb8fb0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp312-cp312-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp312-cp312-win32.whl
Size 382.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
9099fa63480247ef85f6f3bd9a812d712f6b1ae15343f2707d9d876872726b60
BLAKE2b-256 checksum
How to use checksums
9255d8b887b11b7a698e48a65b0284991ed8cf5c12a61a554fcacb298343b162
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
06e2dc6ba9a45a38092daf21abf693ef767bff37d53a54a05c3b8eb6bf7a28d3
BLAKE2b-256 checksum
How to use checksums
57f7e2b5019f1e7cb278c89ebe38d3b96aa061056f4744c39f6e4c657d793262
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 563.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e6123fc0c792b8320e0029d8043b9c8102d86820221dc9ea8ebd9faf91ced561
BLAKE2b-256 checksum
How to use checksums
df9c801bb2314c4720d6b42b15849ab150c2642529925358650e0b5e38680620
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp312-cp312-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Size 455.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cf728f3dcfb1c202dd95fb9874ebd55d8fec6783c58d6778cb44ec65c94e866b
BLAKE2b-256 checksum
How to use checksums
55f2a342b7066460de55d90296a4bdaec277d2180aaaa68d14d4959d6716f082
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Size 529.5 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
48679daa925c534df88c16de5b1d7df7e4d386b2d8a8376afc4ea33575bdb0f6
BLAKE2b-256 checksum
How to use checksums
95f7731cfa97c1a47a5677a14b56ddb904b4056d280a4a580b8dc24dc6372ed3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / turbojpeg-0.0.2-cp311-cp311-win_amd64.whl

Download URL turbojpeg-0.0.2-cp311-cp311-win_amd64.whl
Size 440.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
c98258b019a36ba81dad4ef40970847fd64a45553884c0b36bef58bbcd1fed5c
BLAKE2b-256 checksum
How to use checksums
8b049d180681e191d63dfc4d28bea7de6ac7fb3f180f5de7e719e628caceb2b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp311-cp311-win32.whl

Download URL turbojpeg-0.0.2-cp311-cp311-win32.whl
Size 378.2 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
89c4e12a20e948e0df55a45b6550ae968bbb141e81d3240738ac2beef5011d45
BLAKE2b-256 checksum
How to use checksums
6a6f9b1214ccaf85bdeac81c9ce0c638e14e9ff994ee3b9e62f558ce3d69fc26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6a0e11935f20597c76259620e7e3fdf9d217b9fce19261cb3c5a07717e2eebc8
BLAKE2b-256 checksum
How to use checksums
0761a7f962b1a7ae227924559e0376f9843b2f4c77f3c558edfddab284d6b3a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL turbojpeg-0.0.2-cp311-cp311-musllinux_1_1_x86_64.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
252de334f13a62c95d9f0aeed5c6075b2acbfd50999013ccf1e808d6bf39588d
BLAKE2b-256 checksum
How to use checksums
e11500885a90a4d6b245c14ea94118fc37347f70934d6c0b8ae0b7f601fa2b8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL turbojpeg-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 565.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a28b13ad31e20392ce58133194a8ee62d49362bf7107023d47562e981a11d18a
BLAKE2b-256 checksum
How to use checksums
cf6f3d43132e9c6e81d5459fd0f4a921c5f1480fc36ddc68a9c623bc8a9b2f7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp311-cp311-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Size 456.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e64a1124fe69967be3eaee4fb0277d8e09d314a7cdfa40c631ef561b4a0d56a5
BLAKE2b-256 checksum
How to use checksums
6641c188a4f17b56c5793e80920473b10837c3f2ed7d56b1466f270bcee4fac4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL turbojpeg-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 538.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ac0dd39a70fcfc4ac7d4a6266b2c211ed439b1c7b574157374f009966c6226a2
BLAKE2b-256 checksum
How to use checksums
2c8fbcbe635d02b4cff3eeb1bace62218d93bb2582a1596b3ebaf74c662869be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp310-cp310-win_amd64.whl

Download URL turbojpeg-0.0.2-cp310-cp310-win_amd64.whl
Size 439.4 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c48db45428c88118ab2c2be76cd8086d9f313af0d73ede04d8203391c690131c
BLAKE2b-256 checksum
How to use checksums
a0061a6ca4e7eb9c8342e5991093a36dcde37033a8f8da58dcf680282bb2b733
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp310-cp310-win32.whl

Download URL turbojpeg-0.0.2-cp310-cp310-win32.whl
Size 377.3 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
3d38588410168db0da499f6f446084107dfe5a8b6f3b77e42f64868349306652
BLAKE2b-256 checksum
How to use checksums
3e3136a9ed2e36961ad178eb3808becf8c454f245e2b77700fcbadd21788e117
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cb70c94285f1cae101057802f5193cf9a0c4810f11df7a40b726b14c86efe0a4
BLAKE2b-256 checksum
How to use checksums
ae41355134086fdbeeff3aa0ba0b6f757bf5f32e8d8e1692727b1ba9bddb3dcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL turbojpeg-0.0.2-cp310-cp310-musllinux_1_1_x86_64.whl
Size 1.1 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
040f138c63fdc7f7bf5c50c4b36f40ab496735afc42aa6cc1243a98181900878
BLAKE2b-256 checksum
How to use checksums
16f9017203af594349828e9568f65d298132b3c952379fad6ce94ca7bdbcfe46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL turbojpeg-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 563.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3c8c0b7a671bccf698afe4257841e98e812e56b423e41f39fbcb246530033583
BLAKE2b-256 checksum
How to use checksums
e41c595288fd66659e162c7bd5e29b02b865f2efde6a6cd311c97b61f1f22472
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp310-cp310-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Size 454.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b6e438f0a1c27d87ddbce0f6b89cc1ea7cd836df51b87a645128e21537e04199
BLAKE2b-256 checksum
How to use checksums
0e349bc4e15708fc4e74f250129f072709ce1fad37676ab8901bac310842ff16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL turbojpeg-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 537.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
45066d49d3985f189f6234eab410c702413ad058b99904f7bcc87be3a8ea0146
BLAKE2b-256 checksum
How to use checksums
625129946e4f7bc214c2f99e3c9201be4411fb21bb5d39dedc28d7fa5b406669
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp39-cp39-win_amd64.whl

Download URL turbojpeg-0.0.2-cp39-cp39-win_amd64.whl
Size 439.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
f314a2b84ffa58296ff464952a58b80701022263e1f8037675fd8790ea6cdc6e
BLAKE2b-256 checksum
How to use checksums
cdd18f70887e787b4971ae3b4af583d994694cf4b1b723053456c1846394b794
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp39-cp39-win32.whl

Download URL turbojpeg-0.0.2-cp39-cp39-win32.whl
Size 377.7 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
e80336190af46ff5379ce1706c8e6f15cfeca36037100680e1b5ab83aeb05e39
BLAKE2b-256 checksum
How to use checksums
39b07077cd9e807817df70b308900237e8efcd1a03ab891e69d86df3dc6812e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ec24bed7a38acca0bef71a33b7cd5146df353d4e157c62ab144c57a146a6813a
BLAKE2b-256 checksum
How to use checksums
cf7c86165b465c00153fbc02942ee310f5a02ed178a866eed1285793aad54d14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL turbojpeg-0.0.2-cp39-cp39-musllinux_1_1_x86_64.whl
Size 1.1 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
2b73d037a3ac2e476ffc9f11954130fd6b1beb13d3326890fbc326445e2dd748
BLAKE2b-256 checksum
How to use checksums
c091c47d5ee3bac3e522aa5379027fe0c702ab976af523139c0578618919477d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL turbojpeg-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 564.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
036c95fe21e7dce4bfebfa49bb6246c0950cb2c4c65b57a985e13282a5c19ec0
BLAKE2b-256 checksum
How to use checksums
4ac5baa0f06ba1c6c61ceef6e5fa30583d2b6b83c4d58753dfdcb5de818447ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp39-cp39-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Size 454.8 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5985a19fd52c59de52f8f127dda2e01a56cefba34944c6868e2b17bcbec75ae4
BLAKE2b-256 checksum
How to use checksums
c3e051d2eb69a7314c58ae593b54f63bf676b8197af36eb4b86f3bb1e1e036a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl

Download URL turbojpeg-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Size 537.5 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9cefbb4f48c8e297aad2e81419ffb7f4e4cb38030fdbab4e69a14e556166e4d0
BLAKE2b-256 checksum
How to use checksums
eac329d5bf8264768a2e9194ffda6b100383ef0c6773372d3d54d49938b9a216
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp38-cp38-win_amd64.whl

Download URL turbojpeg-0.0.2-cp38-cp38-win_amd64.whl
Size 439.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
ba62e51b170af7c87cf1cbb6bc7949e16e803170ac0f281ea9e8c6f1277ca898
BLAKE2b-256 checksum
How to use checksums
a181b06e930ae3c65366bdc373452d57d31a38da0f11580a77e26356d62704d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp38-cp38-win32.whl

Download URL turbojpeg-0.0.2-cp38-cp38-win32.whl
Size 377.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
fb5673a9858898c61760dea90f3ce57df2fbb9f138418d9f41ba79e6e32b1b31
BLAKE2b-256 checksum
How to use checksums
4144796a4c75db0e700995d9e106caa630a484884abce95241e3a81beb43ad37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d214846b9b14f289132250983294b033663fc5e4d968fff74c9080696afce9c0
BLAKE2b-256 checksum
How to use checksums
f061c1b9962f44b5dc769b2d3e167c34770095a856112224dc73a348df6a27e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL turbojpeg-0.0.2-cp38-cp38-musllinux_1_1_x86_64.whl
Size 1.1 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
d95ad81710c8567bd1a2cd0b02226dc1a9221adcf0e428e9f6e4d493fed9c856
BLAKE2b-256 checksum
How to use checksums
103decddfde7406a4eb731990c9da9a4708cb4b242354d8f33b9cdcac462cd0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL turbojpeg-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 563.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5b126205cc88b9ac5a9eba16ecb684e42b035941929d5f8707070d8fa73f6464
BLAKE2b-256 checksum
How to use checksums
6647368f1eb5e08a841d13fa94a1da729b5474af770e5ad9dc98c38f77b112e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp38-cp38-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp38-cp38-macosx_11_0_arm64.whl
Size 454.2 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
606c1f76ee92cde8550966d2358fa476cf466759e9850c110d544ea97df6bab8
BLAKE2b-256 checksum
How to use checksums
291ff09147ab83619a79a145f8b34547d35ad96f2d7e42199e7b98d7ead9ee89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl

Download URL turbojpeg-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Size 536.9 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6b8a08b8495f64b69188fc9d698331b0229a655df155706cc9f34999caa06612
BLAKE2b-256 checksum
How to use checksums
8f41b07c4386ac82af9077fb66f9f3632090406e38c982929b49298635519b84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp37-cp37m-win_amd64.whl

Download URL turbojpeg-0.0.2-cp37-cp37m-win_amd64.whl
Size 440.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
4a8dcb111565763edfc3f5895d32ecffb1f97b72d300de7a159da9deb88cdf6c
BLAKE2b-256 checksum
How to use checksums
eb4889dcc7040a89acc32ac206e63ea61e26bbfdcda144a3fd92230ddb5bb657
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp37-cp37m-win32.whl

Download URL turbojpeg-0.0.2-cp37-cp37m-win32.whl
Size 379.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
da6a1140b200ae7092d01c0b0530bed9559904f129d833733c39734c27a5de20
BLAKE2b-256 checksum
How to use checksums
46c39cbaddc1b0bc8a41fb3290f9c61eee77e0b616162ab3d88c023ec96f71d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp37-cp37m-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL turbojpeg-0.0.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6169442f4911bbd14020c7e7834fdc0ad0507c45b45b6fd2977235a2ad6ece73
BLAKE2b-256 checksum
How to use checksums
6bfc43feab535cbc5e914ac22ebb5f78a9674dca54cd954e2dabaa36369519b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / turbojpeg-0.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL turbojpeg-0.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
a45c2cc9ebadee46d47dae73677aff94aff8384822ebb05408f71cece6bd0c6c
BLAKE2b-256 checksum
How to use checksums
846ec39419cf635187baaa9a368b5a6795edc63547684c232cc80072556f4ccd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL turbojpeg-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 560.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
de28aa549a1d346fd642d8f50c63902a978318a54b584ca4ae5fef475ac03e6d
BLAKE2b-256 checksum
How to use checksums
767c1e0280cdeba422a11f23e20df19d86ab144b65978e793e98682c47cc891e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release files / turbojpeg-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL turbojpeg-0.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Size 533.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
14fa6a5e14c63d889423937a870573ec129fa249fe507b30af687381f482c201
BLAKE2b-256 checksum
How to use checksums
085ae79975c7ddbf68d5f2bea60af87132e8d4948cc54e9cce75469c482383b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.4

Release history Release notifications | RSS feed

This release

0.0.2 This release

45 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page