Skip to main content

Thin Python bindings to de/compression algorithms in Rust

Project description

cramjam

Code Style CI PyPI Anaconda-Server Badge Downloads

API Documentation

Install

pip install --upgrade cramjam  # Requires no Python or system dependencies!

CLI

A CLI interface is available as cramjam-cli

libcramjam

A Rust crate and C friendly library available at libcramjam


Extremely thin and easy-to-install Python bindings to de/compression algorithms in Rust. Allows for using algorithms such as Snappy, without any system or other python dependencies.


Benchmarks

Some basic benchmarks are available in the benchmarks directory


Available algorithms:

  • Snappy      cramjam.snappy
  • Brotli          cramjam.brotli
  • Bzip2          cramjam.bzip2
  • Lz4              cramjam.lz4
  • Gzip            cramjam.gzip
  • Zlib              cramjam.zlib
  • Deflate       cramjam.deflate
  • ZSTD           cramjam.zstd
  • XZ / LZMA  cramjam.xz
  • Blosc2         cramjam.experimental.blosc2
  • ISA-L backend (only on 64-bit targets)
    • igzip          cramjam.experimental.igzip
    • ideflate     cramjam.experimental.ideflate
    • izlib           cramjam.experimental.izlib

All available for use as:

>>> import cramjam
>>> import numpy as np
>>> compressed = cramjam.snappy.compress(b"bytes here")
>>> decompressed = cramjam.snappy.decompress(compressed)
>>> decompressed
cramjam.Buffer(len=10)  # an object which implements the buffer protocol
>>> bytes(decompressed)
b"bytes here"
>>> np.frombuffer(decompressed, dtype=np.uint8)
array([ 98, 121, 116, 101, 115,  32, 104, 101, 114, 101], dtype=uint8)

Where the API is cramjam.<compression-variant>.compress/decompress and accepts bytes/bytearray/numpy.array/cramjam.File/cramjam.Buffer / memoryview objects.

de/compress_into Additionally, all variants support decompress_into and compress_into. Ex.

>>> import numpy as np
>>> from cramjam import snappy, Buffer
>>>
>>> data = np.frombuffer(b'some bytes here', dtype=np.uint8)
>>> data
array([115, 111, 109, 101,  32,  98, 121, 116, 101, 115,  32, 104, 101,
       114, 101], dtype=uint8)
>>>
>>> compressed = Buffer()
>>> snappy.compress_into(data, compressed)
33  # 33 bytes written to compressed buffer
>>>
>>> compressed.tell()  # Where is the buffer position?
33  # goodie!
>>>
>>> compressed.seek(0)  # Go back to the start of the buffer so we can prepare to decompress
>>> decompressed = b'0' * len(data)  # let's write to `bytes` as output
>>> decompressed
b'000000000000000'
>>>
>>> snappy.decompress_into(compressed, decompressed)
15  # 15 bytes written to decompressed
>>> decompressed
b'some bytes here'

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

cramjam-2.9.1.tar.gz (47.9 kB view details)

Uploaded Source

Built Distributions

cramjam-2.9.1-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPy Windows x86-64

cramjam-2.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cramjam-2.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cramjam-2.9.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

cramjam-2.9.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

cramjam-2.9.1-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13 Windows x86-64

cramjam-2.9.1-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13 Windows x86

cramjam-2.9.1-cp313-cp313-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

cramjam-2.9.1-cp313-cp313-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ i686

cramjam-2.9.1-cp313-cp313-musllinux_1_1_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARMv7l

cramjam-2.9.1-cp313-cp313-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

cramjam-2.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

cramjam-2.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

cramjam-2.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

cramjam-2.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

cramjam-2.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

cramjam-2.9.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.12+ i686

cramjam-2.9.1-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

cramjam-2.9.1-cp313-cp313-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

cramjam-2.9.1-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

cramjam-2.9.1-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows x86

cramjam-2.9.1-cp312-cp312-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

cramjam-2.9.1-cp312-cp312-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

cramjam-2.9.1-cp312-cp312-musllinux_1_1_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARMv7l

cramjam-2.9.1-cp312-cp312-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

cramjam-2.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cramjam-2.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cramjam-2.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cramjam-2.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cramjam-2.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cramjam-2.9.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

cramjam-2.9.1-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cramjam-2.9.1-cp312-cp312-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cramjam-2.9.1-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

cramjam-2.9.1-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11 Windows x86

cramjam-2.9.1-cp311-cp311-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

cramjam-2.9.1-cp311-cp311-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

cramjam-2.9.1-cp311-cp311-musllinux_1_1_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARMv7l

cramjam-2.9.1-cp311-cp311-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

cramjam-2.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cramjam-2.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cramjam-2.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cramjam-2.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cramjam-2.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cramjam-2.9.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

cramjam-2.9.1-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cramjam-2.9.1-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cramjam-2.9.1-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

cramjam-2.9.1-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10 Windows x86

cramjam-2.9.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

cramjam-2.9.1-cp310-cp310-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

cramjam-2.9.1-cp310-cp310-musllinux_1_1_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARMv7l

cramjam-2.9.1-cp310-cp310-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

cramjam-2.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cramjam-2.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cramjam-2.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cramjam-2.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cramjam-2.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cramjam-2.9.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

cramjam-2.9.1-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cramjam-2.9.1-cp310-cp310-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

cramjam-2.9.1-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

cramjam-2.9.1-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9 Windows x86

cramjam-2.9.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

cramjam-2.9.1-cp39-cp39-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

cramjam-2.9.1-cp39-cp39-musllinux_1_1_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARMv7l

cramjam-2.9.1-cp39-cp39-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

cramjam-2.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cramjam-2.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cramjam-2.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cramjam-2.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cramjam-2.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cramjam-2.9.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

cramjam-2.9.1-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cramjam-2.9.1-cp39-cp39-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

cramjam-2.9.1-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

cramjam-2.9.1-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86

cramjam-2.9.1-cp38-cp38-musllinux_1_1_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

cramjam-2.9.1-cp38-cp38-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

cramjam-2.9.1-cp38-cp38-musllinux_1_1_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARMv7l

cramjam-2.9.1-cp38-cp38-musllinux_1_1_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

cramjam-2.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cramjam-2.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cramjam-2.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cramjam-2.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cramjam-2.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cramjam-2.9.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

cramjam-2.9.1-cp38-cp38-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

cramjam-2.9.1-cp38-cp38-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file cramjam-2.9.1.tar.gz.

File metadata

  • Download URL: cramjam-2.9.1.tar.gz
  • Upload date:
  • Size: 47.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1.tar.gz
Algorithm Hash digest
SHA256 336cc591d86cbd225d256813779f46624f857bc9c779db126271eff9ddc524ae
MD5 1a3a729b8b8efd5192c44c6087d71a95
BLAKE2b-256 c96809b6b5603d21a0c7d4362d513217a5079c47b1b7a88967c52dbef13db183

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1.tar.gz:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ac48b978aa0675f62b642750e798c394a64d25ce852e4e541f69bef9a564c2f0
MD5 bac61ef994db8255743c7993a691f8d1
BLAKE2b-256 2d367e53cf5aaed4b446490e298f7571e69ce15d0dfb148feabe8bf02e58827f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b5cef5cf40725fe64592af9ec163e7389855077700678a1d94bec549403a74d
MD5 3a558d529257e82959f42f850596c09d
BLAKE2b-256 b5596fc930217f7ae085eca6d22d3477cd0145a105cdc39e63b834cb0c1b25e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb01f6e38719818778144d3165a89ea1ad9dc58c6342b7f20aa194c70f34cbd1
MD5 0a9700b183bbcfa1a42714f523157917
BLAKE2b-256 26f76422b9e4d148f1a351c0358a95d59023f25cab76609b180804f6a3ed17e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27571bfa5a5d618604696747d0dc1d2a99b5906c967c8dee53c13a7107edfde6
MD5 71056df76cd60b96d95cd3b7c1e50e80
BLAKE2b-256 ef49a0a89e9c45413e89a1e408d4ab416c0f88f19f6db7571fd5c517e429e276

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86824c695688fcd06c5ac9bbd3fea9bdfb4cca194b1e706fbf11a629df48d2b4
MD5 6d4ceec9bcb71b86a15e49114dd6625c
BLAKE2b-256 bc913f7884172573072a4280bc8bc19b7562b2cd66d2a65576b11e72115cd5fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 06068bd191a82ad4fc1ac23d6f8627fb5e37ec4be0431711b9a2dbacaccfeddb
MD5 506f0d33e38fbe9184508473a0564dc9
BLAKE2b-256 55d524e4562771711711c466768c92097640ed97b0283abe9043ffb6c6d4cf04

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fbfe35929a61b914de9e5dbacde0cfbba86cbf5122f9285a24c14ed0b645490b
MD5 da2c033d29aebf005727143116512be5
BLAKE2b-256 18a6fabe1959a980f5d2783a6c138311509dd168bd76e62018624a91cd1cbb41

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-win32.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8dc5207567459d049696f62a1fdfb220f3fe6aa0d722285d44753e12504dac6c
MD5 3473cb577131bb35affc382786b9525e
BLAKE2b-256 b4e7cbf80c9647fa582432aa833c4bdd20cf437917c8066ce653e3b78deff658

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6b19fc60ead1cae9795a5b359599da3a1c95d38f869bdfb51c441fd76b04e926
MD5 84946911c45a82a9f65e9f0d8e60bb6b
BLAKE2b-256 48256cdd57c0b1a83c98aec9029310d09a6c1a31e9e9fb8efd9001bd0cbea992

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-musllinux_1_1_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 95f3646ddc98af25af25d5692ae65966488a283813336ea9cf41b22e542e7c0d
MD5 12651cc28be0c751093b55f8beafb5cb
BLAKE2b-256 29118b6c82eda6d0affbc15d7ab4dc758856eb4308e8ddae73300c1648f5aa0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 217fe22b41f8c3dce03852f828b059abfad11d1344a1df2f43d3eb8634b18d75
MD5 3c5b67e300ec5a9e8bad2b80b9a9605d
BLAKE2b-256 33657bf97d89ba7607aaea5464af6f249e3d94c291acf73d72768367a3e361c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 440b489902bfb7a26d3fec1ca888007615336ff763d2a32a2fc40586548a0dbf
MD5 e34114d95382a3271c378b874581b6b9
BLAKE2b-256 1ff56b425e82395c078bc95a7437b685e6bdba39d28c2b2986d79374fc1681aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab1e69dc4831bbb79b6d547077aae89074c83e8ad94eba1a3d80e94d2424fd02
MD5 00cac230f96436709632631ce4d0af6b
BLAKE2b-256 b02cd07e802f1786c4082e8286db1087563e4fab31cd6534ed31523f1f9584d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b695259e71fde6d5be66b77a4474523ced9ffe9fe8a34cb9b520ec1241a14d3
MD5 c4480ae1f57782dc1e559c4e8b9c87b8
BLAKE2b-256 881f69b523395aeaa201dbd53d203453288205a0c651e7c910161892d694eb4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56495975401b1821dbe1f29cf222e23556232209a2fdb809fe8156d120ca9c7f
MD5 42710c66a2604782e2da9228d71e1e04
BLAKE2b-256 cafbb9fcf492a21a8d978c6f999025fce2c6656399448c017ed2fc859425f37f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d90a72608c7550cd7eba914668f6277bfb0b24f074d1f1bd9d061fcb6f2adbd6
MD5 760bde811fe333a0a8a995fb8cb0e823
BLAKE2b-256 cb1b6d55dff244fb22c0b686dd5a96a754c0638f8a94056beb27c457c6035cc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 07ac76b7f992556e7aa910244be11ece578cdf84f4d5d5297461f9a895e18312
MD5 0a8733b6fc2877fe65bd28c2415357f6
BLAKE2b-256 67c499b6507ec697d5f56d32c9c04614775004b05b7fa870725a492dc6b639eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d51b9b140b1df39a44bff7896d98a10da345b7d5f5ce92368d328c1c2c829167
MD5 1d0698845ab42c2f51afdc6ced672dca
BLAKE2b-256 3a9636bbd431fbf0fa2ff51fd2db4c3bead66e9e373693a8455d411d45125a68

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a7797a2fff994fc5e323f7a967a35a3e37e3006ed21d64dcded086502f482af
MD5 e2184a089a346d7c08e07450294dff51
BLAKE2b-256 8545f1d1e6ffdceb3b0c18511df2f8e779e03972459fb71d7c1ab0f6a5c063a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15955dd75e80f66c1ea271167a5347661d9bdc365f894a57698c383c9b7d465c
MD5 5ecc593b9b3a750ec597f56f19fed2e8
BLAKE2b-256 0ea2d1c46618b81b83578d58a62f3709046c4f3b4ddba10df4b9797cfe096b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9e9193cd4bb57e7acd3af24891526299244bfed88168945efdaa09af4e50720f
MD5 7ce72c3bf3762f15b32eb49c96dc2493
BLAKE2b-256 353be632dd7e2c5c8a2af2d83144b00d6840f1afcf9c6959ed59ec5b0f925288

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-win32.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1c33bc095db5733c841a102b8693062be5db8cdac17b9782ebc00577c6a94480
MD5 6626f7166329861c1cbe8b983785c80c
BLAKE2b-256 209aa4ab3e90d72eb4f2c1b983fa32b4050ba676f533ba15bd78158f0632295a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9da6d970281083bae91b914362de325414aa03c01fc806f6bb2cc006322ec834
MD5 f781a4185cd509436fa5105661482e95
BLAKE2b-256 051aaf02f6192060413314735c0db61259d7279b0d8d99eee29eff2af09c5892

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-musllinux_1_1_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8d1248dfa7f151e893ce819670f00879e4b7650b8d4c01279ce4f12140d68dd2
MD5 5dc1dd429c483a045fbe5d38337b25d9
BLAKE2b-256 704bb69e8e3951b7cec5e7da2539b7573bb396bed66af07d760b1878b00fd120

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9847dd6f288f1c56359f52acb48ff2df848ff3e3bff34d23855bbcf7016427cc
MD5 0dfeba95c92829d38f3f85c6db9987c9
BLAKE2b-256 5fc4870a9b4524107bf85a207b82a42613318881238b20f2d237e62815af646a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57ca8f3775324a9de3ee6f05ca172687ba258c0dea79f7e3a6b4112834982f2a
MD5 1e30d1f5419633d06be213e36a26e034
BLAKE2b-256 9b5ae9b4868ee27099a2a21646cf5ea5cf08c660eae90b55a395ada974dcf3fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b7de6b61b11545570e4d6033713f3599525efc615ee353a822be8f6b0c65b77
MD5 a04d51e99f1d5d21c4282f0283b23f8d
BLAKE2b-256 2a2aad473f1ca65d3285e8c1d99fc0289f5856224c0d452dabcf856fd4dcdd77

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11118675e9c7952ececabc62f023290ee4f8ecf0bee0d2c7eb8d1c402ee9769d
MD5 ca37c9953598d98cf076636c53e93425
BLAKE2b-256 ce16929a5ae899ad6298f58e66622dc223476fe8e1d4e8dae608f4e1a34bfd09

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06e3f97a379386d97debf08638a78b3d3850fdf6124755eb270b54905a169930
MD5 e47d35a7be755bf29a6696a002fa09d7
BLAKE2b-256 220fc3724b2dcdfbe7e07917803cf7a6db4a874818a6f8d2b95ca1ceaf177170

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bedb84e068b53c944bd08dcb501fd00d67daa8a917922356dd559b484ce7eab
MD5 dca0074b750221bf334d7878ac9e5bfe
BLAKE2b-256 88ace6e0794ac01deb52e7a6a3e59720699abdee08d9b9c63a8d8874201d8155

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 67040e0fd84404885ec716a806bee6110f9960c3647e0ef1670aab3b7375a70a
MD5 3e2345aaaaaa32c786525ae432962f61
BLAKE2b-256 8edae9565f4abbbaa14645ccd7ce83f9631e90955454b87dc3ef9208aebc72e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce2b94117f373defc876f88e74e44049a9969223dbca3240415b71752d0422fb
MD5 aeb85de4a7268586d5f30819fb2d5249
BLAKE2b-256 3d1723d0b1d3301480e924545cdd27f2b949c50438949f64c74e800a09c12c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79417957972553502b217a0093532e48893c8b4ca30ccc941cefe9c72379df7c
MD5 27f1c657afe436f267d30854a0a8183a
BLAKE2b-256 566669a1c17331e38b02c78c923262fc315272de7c2618ef7eac8b3358969d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 872b00ff83e84bcbdc7e951af291ebe65eed20b09c47e7c4af21c312f90b796f
MD5 216d5e70939f532ad2e4702ad917d40d
BLAKE2b-256 9475f3506ee802460e3b86a91e53bba1f67cf457fa04e4316fe7d5823ba5d28b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dda7698b6d7caeae1047adafebc4b43b2a82478234f6c2b45bc3edad854e0600
MD5 e0f16e793a019fe14a0bb4d7f60f6bcd
BLAKE2b-256 2e6813fa8561335de609f3cd40b132c1a3abbaf26d3c277e8b8a7446de34ef2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-win32.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab687bef5c493732b9a4ab870542ee43f5eae0025f9c684c7cb399c3a85cb380
MD5 058f01cf4ccdbd66ff876728c86e5543
BLAKE2b-256 3f89ff988bd6427f01041ccb1a9104c05b6373ae476682d317b6844f4b40af92

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4206ebdd1d1ef0f3f86c8c2f7c426aa4af6094f4f41e274601fd4c4569f37454
MD5 792e6f7a86cdb1ee8ffd0069164a0fdb
BLAKE2b-256 7c22869a1eeea53db4d9fbde6693a2465909762bffeab1a671e193c95b26f99f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-musllinux_1_1_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4125d8cd86fa08495d310e80926c2f0563f157b76862e7479f9b2cf94823ea0c
MD5 cd75dce8e7e0bc43f1bdb60e4333f86a
BLAKE2b-256 10c2287cc94b7f8e87e3b0c21819d3a5deead99ebfdcb2b2d85cd04011b37292

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 038df668ffb94d64d67b6ecc59cbd206745a425ffc0402897dde12d89fa6a870
MD5 85517973840c438c7b1f27b94fd85a71
BLAKE2b-256 dd9c845592ddf9eb7130ae8bc5958a01d469304a43f8071effe164e2d239e3fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84d154fbadece82935396eb6bcb502085d944d2fd13b07a94348364344370c2c
MD5 514d0261c19275ddc7858bf3d552a449
BLAKE2b-256 4be70fd22e12c6a2879abc501979779d4b8cfe8fe692c708c2c0d1664e88fd79

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d47fd41ce260cf4f0ff0e788de961fab9e9c6844a05ce55d06ce31e06107bdc
MD5 aeb4f2b54ad215129159b94090b16aec
BLAKE2b-256 69c4228e74c30576556d11e54d86f356955cd86ff5e11bbfec74b66ed0dd237d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba560244bc1335b420b74e91e35f9d4e7f307a3be3a4603ce0f0d7e15a0acdf0
MD5 39c6858976472ea16665724cf282965e
BLAKE2b-256 7b9776ff3e1209add6acb7e2aa7997be48dc1f92ad66ee3e8fa1179eb2bb9b44

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e13c9a697881e5e38148958612dc6856967f5ff8cd7bba5ff751f2d6ac020aa4
MD5 8d23d40b1a082128a217ea668baf1237
BLAKE2b-256 99255f7476d127a8d18cd19a2f3fd25c0fe09ef7848069d23aac70bc96385eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a47de0a68f5f4d9951250ef5af31f2a7228132caa9ed60994234f7eb98090d33
MD5 d4486d33459eb8c7887c6ec6266e2e48
BLAKE2b-256 381652175e94390f57196382783a3386c122ace7656b57339abaacdc9433b609

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5b1cd7d39242b2b903cf09cd4696b3a6e04dc537ffa9f3ac8668edae76eecb6
MD5 f9f6ed64140cc96813e6484be5ef45cd
BLAKE2b-256 e8f377032e4f5db4dfcc2b0365f92655b7d6f3fc1527ea5b637f9fb9f8156a65

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6f18f0242212d3409d26ce3874937b5b979cebd61f08b633a6ea893c32fc7b6
MD5 2f8ac820779cb524a66b3087877ede09
BLAKE2b-256 03c9fcebeb6f06879af4226337715fbc42ffe543158bcba8c244bba144767897

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9db1debe48060e41a5b91af9193c524e473c57f6105462c5524a41f5aabdb88
MD5 63c8cd07da5c6c4c566b3d4d58635798
BLAKE2b-256 6c28dd2b62be30ffe1fa8df10c99ba7b46abfbfb2fc6ace6acbbf9264a1a6b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c60e5996aa02547d12bc2740d44e90e006b0f93100f53206f7abe6732ad56e69
MD5 eae6c11c0993e3dd2f192e695abd4a4b
BLAKE2b-256 8ef432639916897d59e94d286b5b22263ce8c2903ecc93a868ebe9443ece8f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 258120cb1e3afc3443f756f9de161ed63eed56a2c31f6093e81c571c0f2dc9f6
MD5 05636b2ce08cd68c29a66d23bfbb83c4
BLAKE2b-256 ae6b4f71f72bc3405f221ec8bd2ba869e324d5f87ddd58c14bf59f7937ea37ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-win32.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 335103317475bf992953c58838152a4761fc3c87354000edbfc4d7e57cf05909
MD5 7751f569ce9b0806ad87f6b9c8355ace
BLAKE2b-256 909798a8fa24249dc72a936a9a51a81407a399070ba4ceb528d0af291c760eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4826d6d81ea490fa7a3ae7a4b9729866a945ffac1f77fe57b71e49d6e1b21efd
MD5 906e06b50d3a366196b933ba1ffc63d6
BLAKE2b-256 d9e6cf18deeaa0a96e7fc87f0eacde3c97e2893b573ac148ec746655570c18fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-musllinux_1_1_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cf4ea758d98b6fad1b4b2d808d0de690d3162ac56c26968aea0af6524e3eb736
MD5 1847fa35f0f6ffa6a187eea5f5975490
BLAKE2b-256 9da61ae1f1a8ef559c2fab9d6d7f09b19995684e6727e617bf1b73967ee1c6be

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a36adf7d13b7accfa206e1c917f08924eb905b45aa8e62176509afa7b14db71e
MD5 1729bd772c2bbfead9c977e91b263275
BLAKE2b-256 b01a6ee093bf8a41cf31980175310abbbcdd1a39dadadbe96843112f42cef0fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf29b4def86ec503e329fe138842a9b79a997e3beb6c7809b05665a0d291edff
MD5 b8abfe9a211dab36067e4e4002453071
BLAKE2b-256 dd64a4e54d74110c22477e467586935167d61fc7bae5284d393e76779b214a3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7eb032549dec897b942ddcf80c1cdccbcb40629f15fc902731dbe6362da49326
MD5 320f73b750582aa6ca1dc3cc774d7bff
BLAKE2b-256 c52dbc98992c29eb8647196b3bda814fd7ecfba6aff85177d44180be2aa320e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d86b44933aea0151e4a2e1e6935448499849045c38167d288ca4c59d5b8cd4e
MD5 11dd9d06235578df3b8fef52948e3faa
BLAKE2b-256 c378317b7ab6a9b0f24c45d56305a8288cdb6408f855034dc80530ed16a5cc6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e076fd87089197cb61117c63dbe7712ad5eccb93968860eb3bae09b767bac813
MD5 34cbfb8419172fe23f38a0e4710cf281
BLAKE2b-256 b9bb3bf3a8877b9a4105b625d710410bd2bc83ef38d4a7fe4eaeb3895d997b2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e0c5d98a4e791f0bbd0ffcb7dae879baeb2dcc357348a8dc2be0a8c10403a2a
MD5 d61e6d35b61772f0dd7c30b066772a2c
BLAKE2b-256 ab374c81e5d039bdfc75a695abd426e6cdd9ab18a87f65d57837d78936cfa226

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 21ea784e6c3f1843d3523ae0f03651dd06058b39eeb64beb82ee3b100fa83662
MD5 376fff23bef3f944598560d722ac9a73
BLAKE2b-256 9e1ee6c4f9695e4ba7b9c63160dcbfa76428bd3221930eedeb8f16364ab6f642

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d2df8a6511cc08ef1fccd2e0c65e2ebc9f57574ec8376052a76851af5398810
MD5 8b72d39894f819ef28b417fd4d468a9f
BLAKE2b-256 6faca17644e182ede7e8e24fb3af038bc2c1cf3dd0447c935cb10409f21d099b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e82464d1e00fbbb12958999b8471ba5e9f3d9711954505a0a7b378762332e6f
MD5 548a7af8e857acd3cf926f84e59c2079
BLAKE2b-256 275d0b03115fa6a95a6dd9be344cd186879b763f1a6fab57ae55ffe2777aa0a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8097ee39b61c86848a443c0b25b2df1de6b331fd512b20836a4f5cfde51ab255
MD5 2a878bed5097e2d45b9734db7f5531be
BLAKE2b-256 93b31645986d8b915fd0426a7224cd00c2c17c32b4d69bc5faad3fb3f5fd5081

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-win_amd64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8a9f52c27292c21457f43c4ce124939302a9acfb62295e7cda8667310563a5a3
MD5 521c332b65cefabb1796762d5d08dbcc
BLAKE2b-256 0a8352401c5c654ddff2850d890b0f1cfc355ff6887c6def420d0c8d8178ff97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-win32.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 53145fc9f2319c1245d4329e1da8cfacd6e35e27090c07c0b9d453ae2bbdac3e
MD5 e32338645feedae245bd87ac3413ede6
BLAKE2b-256 32a9e4509e5dfc8f41d9e7f9fdddbf567967937303621d410197c86b11d6a3e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a237064a6e2c2256c9a1cf2beb7c971382190c0f1eb2e810e02e971881756132
MD5 cc781b52c914b055aea16515bd43fe02
BLAKE2b-256 a06ece3ffad2b3b8cb73156a19345e27a2e27fb5be79b64f2c81b0c6d6e16c57

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-musllinux_1_1_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 342fb946f8d3e9e35b837288b03ab23cfbe0bb5a30e582ed805ef79706823a96
MD5 2700bae8896b07d7180089e83597106c
BLAKE2b-256 ff0af5bccdc8d12821aed4473a427e9eb8282a38c9337a30e02ed102b18941bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1376f6fdbf0b30712413a0b4e51663a4938ae2f6b449f8e4635dbb3694db83cf
MD5 11ee7abe0ba867ae81847f4a3b99e9b1
BLAKE2b-256 ddbaec0f3b5a3a90721bdb42f4f4989b60adf823d137f40365e83df0cd299378

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ceef6e09ee22457997370882aa3c69de01e6dd0aaa2f953e1e87ad11641d042
MD5 2c96f847449f2487c180a37dbdfd5a06
BLAKE2b-256 33317c8cdf6b16fcd46bad4a307c8203a58b7a2fddf6cb3aad9dc441c050f62f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd0fa9a0e7f18224b6d2d1d69dbdc3aecec80ef1393c59244159b131604a4395
MD5 e175066e3d8522ac661dacd2f4d6e949
BLAKE2b-256 dea2763fd98340936057e44ea0b870c9cdb87ad5f90d49e492e8a11cf74e7b29

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bc9c2c748aaf91863d89c4583f529c1c709485c94f8dfeb3ee48662d88e3258
MD5 a11baa7a3d7026dc8ba7a6ac7d0542fc
BLAKE2b-256 13a73ae887753f6d41f6e4af8e25654d103c56e13dda2f4b4d13acac570c65c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23b9786d1d17686fb8d600ade2a19374c7188d4b8867efa9af0d8274a220aec7
MD5 0ec71855579e198cd4738b88692b1e6a
BLAKE2b-256 f2e9f380e0c1bd03046c522da4fd6d43ea897ba0b832c78fc4ea5708d8c35c21

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff362f68bd68ac0eccb445209238d589bba728fb6d7f2e9dc199e0ec3a61d6e0
MD5 2f65d5f630a24e96b4111e20a1362696
BLAKE2b-256 15f399fedc4210db1967256e602fdcb60947585421fd659f8baeeeb4ea16e4c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1539fd758f0e57fad7913cebff8baaee871bb561ddf6fa710a427b74da6b6778
MD5 f13353e06ea654fb6acee3cdb5708698
BLAKE2b-256 6de95d38ffa5376c5bffcbd16545707d9dac6beffccd00410f0cc19d83d85ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3291be0d3f73d5774d69013be4ab33978c777363b5312d14f62f77817c2f75a
MD5 e163474aa86d45df375f96a37f94f54f
BLAKE2b-256 df8354eca302e431d51149074d8aad6ec588870c5797060e2142dfe6ca3599a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af39006faddfc6253beb93ca821d544931cfee7f0177b99ff106dfd8fd6a2cd8
MD5 f1515526429cf01aa3eb4a90c3f2a2cb
BLAKE2b-256 c75a50523fd478390acb6ca8e57239f7cf79f7260dc0d16be89137d47823e50a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b7ac273498a2c6772d67707e101b74014c0d9413bb4711c51d8ec311de59b4b1
MD5 3e2ec51c64f1bec7bafe16b15ab07d1f
BLAKE2b-256 a123d0f2ddf6f95ad5e9cd2ab7839836e9caf2786b72e773271a24fc10767403

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-win_amd64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: cramjam-2.9.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5925a738b8478f223ab9756fc794e3cabd5917fd7846f66adcf1d5fc2bf9864c
MD5 cf79ef484963ddcd55a7b7bd851e55af
BLAKE2b-256 caadc27c851553879f7dfdde853643dbf7c754b9a7bf2cebc112794884e5fbeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-win32.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f89924858712b8b936f04f3d690e72825a3e5127a140b434c79030c1c5a887ce
MD5 5e6e7209169d39f5956ab98121f65218
BLAKE2b-256 dcd52d6eab6b093b251bb3dcede59cb567f585ea9f443850053c731dfb4ce98e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 da0cc0efdbfb8ee2361f89f38ded03d11678f37e392afff7a97b09c55dadfc83
MD5 3692680b888b70b0c9ea0ecb676efe19
BLAKE2b-256 b924065a5e90599f6a23c42334373cfb4a1d36e1b2da153653d216826554dc71

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-musllinux_1_1_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d35923fb5411bde30b53c0696dff8e24c8a38b010b89544834c53f4462fd71df
MD5 d53f24fb0142aeb0d5d1a351ff4d0c31
BLAKE2b-256 7301029916dfb158f5e2cfbbd80ef2eebd715ab7091ec94cb01b656eb4ddc926

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ba79c7d2cc5adb897b690c05dd9b67c4d401736d207314b99315f7be3cd94fd
MD5 d78cc9eee0518bd462a115bc4b9c94bb
BLAKE2b-256 d3f24c160147a5f464da7954b5705cb1aecd2e7286fd94d6026566c8df55b364

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec769e5b16251704502277a1163dcf2611551452d7590ff4cc422b7b0367fc96
MD5 a496373339f566e90b0e29cda6641b1a
BLAKE2b-256 e5a222d419a0069eab8856da4583cd06754b860679a7e68a4b3b0df1338430f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0944a7c3a78f940c06d1b29bdce91a17798d80593dd01ebfeb842761e48a8b5
MD5 b5132725a2467ca30ca312d1350f0234
BLAKE2b-256 5c41fd1bdc7505cab6916286815af514a0db30641dca5fa9c0944afc308a86ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04828cbfad7384f06a4a7d0d927c3e85ef11dc5a40b9cf5f3e29ac4e23ecd678
MD5 f68100a842a525f55e23c7ed49615527
BLAKE2b-256 5347509861082a489c7e590daaf72c97dc42f1aa9aa6ab6851f700106f50910b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f815fb0eba625af45139af4f90f5fc2ddda61b171c2cc3ab63d44b40c5c7768
MD5 e52b554b45e2d5a88e001f26c41ab23b
BLAKE2b-256 3267e1466368cab045f19f3dc981c8f64732becc8cc2304a0498a15041dd736f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d14a0efb21e0fec0631bcd66040b06e6a0fe10825f3aacffded38c1c978bdff9
MD5 914ab7408c01d8ff02cafdc6ba674436
BLAKE2b-256 33cc6b42fbddd63f4d9da7c58b18909798ef175820a5d789777a739f7c8c9a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 45c18cc13156e8697a8d3f9e57e49a69b00e14a103196efab0893fae1a5257f8
MD5 fde9279982373fb1483da1f53c4add94
BLAKE2b-256 cfd060670fb0016da2794731a44492feac4c50ae9ba4afc5f6b8468f3df36d91

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 008b49b455b396acc5459dfb06fb9d56049c4097ee8e590892a4d3da9a711da3
MD5 5357b905de0dc673be2e123fc36277d5
BLAKE2b-256 a9ab4c70ba38e8a7141fc2348326226791ecfd94063f14dcb304cc4807ad6686

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cramjam-2.9.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.9.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a2ca4d3c683d28d3217821029eb08d3487d5043d7eb455df11ff3cacfd4c916
MD5 5db9c44d050753d21181e980462ebdc3
BLAKE2b-256 309d7ce921c6163c03ba9bb19b529bac96fcf1609e8e23b4cfa66a1c92a3c2ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.9.1-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: CI.yml on milesgranger/cramjam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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