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

Experimental (Requires build from source enabling each feature):

  • 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.10.0.tar.gz (47.8 kB view details)

Uploaded Source

Built Distributions

cramjam-2.10.0-pp311-pypy311_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPyWindows x86-64

cramjam-2.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cramjam-2.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cramjam-2.10.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

cramjam-2.10.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

cramjam-2.10.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

Uploaded PyPymacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

cramjam-2.10.0-pp310-pypy310_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPyWindows x86-64

cramjam-2.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cramjam-2.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cramjam-2.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

cramjam-2.10.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

cramjam-2.10.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

Uploaded PyPymacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

cramjam-2.10.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

cramjam-2.10.0-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

cramjam-2.10.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

cramjam-2.10.0-cp313-cp313-musllinux_1_1_i686.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ i686

cramjam-2.10.0-cp313-cp313-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

cramjam-2.10.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

cramjam-2.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cramjam-2.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cramjam-2.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cramjam-2.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cramjam-2.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cramjam-2.10.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

cramjam-2.10.0-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cramjam-2.10.0-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cramjam-2.10.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

cramjam-2.10.0-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

cramjam-2.10.0-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

cramjam-2.10.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

cramjam-2.10.0-cp312-cp312-musllinux_1_1_i686.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

cramjam-2.10.0-cp312-cp312-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

cramjam-2.10.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

cramjam-2.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cramjam-2.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cramjam-2.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cramjam-2.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cramjam-2.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cramjam-2.10.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

cramjam-2.10.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cramjam-2.10.0-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cramjam-2.10.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

cramjam-2.10.0-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

cramjam-2.10.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

cramjam-2.10.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

cramjam-2.10.0-cp311-cp311-musllinux_1_1_i686.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

cramjam-2.10.0-cp311-cp311-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

cramjam-2.10.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

cramjam-2.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cramjam-2.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cramjam-2.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cramjam-2.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cramjam-2.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cramjam-2.10.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

cramjam-2.10.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cramjam-2.10.0-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cramjam-2.10.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

cramjam-2.10.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

cramjam-2.10.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

cramjam-2.10.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

cramjam-2.10.0-cp310-cp310-musllinux_1_1_i686.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

cramjam-2.10.0-cp310-cp310-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

cramjam-2.10.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

cramjam-2.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cramjam-2.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cramjam-2.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cramjam-2.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cramjam-2.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cramjam-2.10.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

cramjam-2.10.0-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cramjam-2.10.0-cp310-cp310-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

cramjam-2.10.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

cramjam-2.10.0-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86-64

cramjam-2.10.0-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

cramjam-2.10.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

cramjam-2.10.0-cp39-cp39-musllinux_1_1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

cramjam-2.10.0-cp39-cp39-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

cramjam-2.10.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

cramjam-2.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cramjam-2.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

cramjam-2.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

cramjam-2.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

cramjam-2.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cramjam-2.10.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

cramjam-2.10.0-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cramjam-2.10.0-cp39-cp39-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

cramjam-2.10.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

cramjam-2.10.0-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86-64

cramjam-2.10.0-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86

cramjam-2.10.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

cramjam-2.10.0-cp38-cp38-musllinux_1_1_i686.whl (2.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

cramjam-2.10.0-cp38-cp38-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARMv7l

cramjam-2.10.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

cramjam-2.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cramjam-2.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

cramjam-2.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

cramjam-2.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

cramjam-2.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

cramjam-2.10.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

cramjam-2.10.0-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

cramjam-2.10.0-cp38-cp38-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

cramjam-2.10.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: cramjam-2.10.0.tar.gz
  • Upload date:
  • Size: 47.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0.tar.gz
Algorithm Hash digest
SHA256 e821dd487384ae8004e977c3b13135ad6665ccf8c9874e68441cad1146e66d8a
MD5 985dc3be125d7ed32d92f4148478669b
BLAKE2b-256 e9dcccc87820b189e35323433e80de450bf2fb8826a5b64834c740e7d5e66ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0.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.10.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2c1eb6e6c3d5c1cc3f7c7f8a52e034340a3c454641f019687fa94077c05da5c2
MD5 f5c0683a5c343ad51ae56637dd6c7b27
BLAKE2b-256 5058da5ada423f010318958db6de98c188afa915e31f5ad4ac072c2e73563a53

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-pp311-pypy311_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.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a04376601c8f9714fb3a6a0a1699b85aab665d9d952a2a31fb37cf70e1be1fba
MD5 f7b60dc8f58746489cf7921cf9a9ae27
BLAKE2b-256 5e23ce7688d7fe92e870cf64001db5c396d778056d48b5384d387e0263e5133c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-pp311-pypy311_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.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf1321a40da930edeff418d561dfb03e6d59d5b8ab5cbab1c4b03ff0aa4c6d21
MD5 b9e27e6e9928f342dd1ea57e4af6013b
BLAKE2b-256 644753dbc9070c54001f96972ddf7eba168340114593eb891fe89dfd816ffc73

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-pp311-pypy311_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.10.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e419b65538786fc1f0cf776612262d4bf6c9449983d3fc0d0acfd86594fe551
MD5 071b07aca2330a67528061f1e1150c0a
BLAKE2b-256 81ddedc1207ebe09e2f1bb8a1e46dfba039bbc14f1875deed5f21f1002c3c51d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-pp311-pypy311_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.10.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a200b74220dcd80c2bb99e3bfe1cdb1e4ed0f5c071959f4316abd65f9ef1e39
MD5 cc94602ffbcd48b733561842323417e9
BLAKE2b-256 de34e1066303c9dc9b6c9c8e5f820e277afa1c135ded170eb2190419af1e5df6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-pp311-pypy311_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.10.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 1e826469cfbb6dcd5b967591e52855073267835229674cfa3d327088805855da
MD5 c5aa61e15bc753f9c5e2ae52ccf88a3e
BLAKE2b-256 5dc903eae05fc36540ea92c1b136c727937bd82fd9a1f20986ac7c10191e9d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.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.10.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 35bcecff38648908a4833928a892a1e7a32611171785bef27015107426bc1d9d
MD5 5949f86da82878ff393c5b8d85cea773
BLAKE2b-256 022f125ad8ba5482aca1704ac3510a4d8d7f9224b206060b974c4a1ac50962ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cddd12ee5a2ef4100478db7f5563a9cdb8bc0a067fbd8ccd1ecdc446d2e6a41a
MD5 e0ceb4a087b51b0655f2d5daf09e1f09
BLAKE2b-256 1cba0c7309f22708301ce617f1b24e7d74691909385ab5c34f72683c41f98414

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04f54bea9ce39c440d1ac6901fe4d647f9218dd5cd8fe903c6fe9c42bf5e1f3b
MD5 d3e2ebcaa05728cff5dadb8c46e1b612
BLAKE2b-256 aa4ecb3f28b36aa9391c31b66b5c47d3b47e469e337f7a660cabf72adc57c37d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d84581c869d279fab437182d5db2b590d44975084e8d50b164947f7aaa2c5f25
MD5 4e0c245750393fe0af77289aa8605df7
BLAKE2b-256 e5be21e0a88a28d8fbfdc7d33eb78ff7ef31e5f1a67f86538607b01a25017512

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50b59e981f219d6840ac43cda8e885aff1457944ddbabaa16ac047690bfd6ad1
MD5 b456370c73e9512eada5574bfde00f95
BLAKE2b-256 482e5c102cda83b38f10e6021ede32915270bd2ae5c6b0f704d42b5cdef17802

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 77192bc1a9897ecd91cf977a5d5f990373e35a8d028c9141c8c3d3680a4a4cd7
MD5 50237d11a263adb8a52e77421d5547ce
BLAKE2b-256 db3796e3b41fa2e2ca8924ec8ec53ed152c7cef1b6507ee676035a9d6e4da01c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.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.10.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88754dd516f0e2f4dd242880b8e760dc854e917315a17fe3fc626475bea9b252
MD5 38203b8c048d5ff4f5d53f7858a0bf9f
BLAKE2b-256 dc4fd90e9a8379452e3882e4d937ca566a5286eea98811571a7da0277959253e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5b34f4678d386c64d3be402fdf67f75e8f1869627ea2ec4decd43e828d3b6fba
MD5 d495d49718dc5db75e4cb7ff74f0e95a
BLAKE2b-256 f918f8a96e4e2448196ce39be0684053e48b2920a2f6b8467b43cc8be62476aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 76e4e42f2ecf1aca0a710adaa23000a192efb81a2aee3bcc16761f1777f08a74
MD5 9c097e6023401f3a3d661fa037abbf86
BLAKE2b-256 edd2808533ea5d8cccfa2bd272dc9900fa47d6cb93a6d0b2b18bcc23b0962a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 44c15f6117031a84497433b5f55d30ee72d438fdcba9778fec0c5ca5d416aa96
MD5 ef9822ef188cf59ed41e5af9a0202aab
BLAKE2b-256 c3362f4353217477d017300676545cfa7bef8e55a1fa818b4fb97c2ab6d7bfd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 636a48e2d01fe8d7955e9523efd2f8efce55a0221f3b5d5b4bdf37c7ff056bf1
MD5 33cccd5e430c23657512d3b1097c2e8f
BLAKE2b-256 9099cff347c3279b99e3e9e1bc249319ec391c7cedb1bdc288929d4310bdd6f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44c2660ee7c4c269646955e4e40c2693f803fbad12398bb31b2ad00cfc6027b8
MD5 c2653ed063a47e05d89015b1ed8135aa
BLAKE2b-256 702b4f91b3d36d2b7288c8d180b0debce092357d41ca02bd3649f49354180613

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2d216ed4aca2090eabdd354204ae55ed3e13333d1a5b271981543696e634672
MD5 17e08cdfc44314290f216ba46c3a36dd
BLAKE2b-256 582c866a73d33ea0950a3ea6e12d5d6f15abc8d5b5e2302c5e4aa9bd7c6d5179

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3012564760394dff89e7a10c5a244f8885cd155aec07bdbe2d6dc46be398614
MD5 1a49557e9e43900bd7de7c5e16c678f4
BLAKE2b-256 e55dc0999ebd3c829b50b93f57fbc478c6a31d7b785789d14221b5962631a610

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d46fd5a9e8eb5d56eccc6191a55e3e1e2b3ab24b19ab87563a2299a39c855fd7
MD5 eca51299d3b784154d00f0b8be64ffe6
BLAKE2b-256 60839e35fcd2a373c30251088d4abfb87312a51bc39a0c15f5eda5099888f6fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afa36aa006d7692718fce427ecb276211918447f806f80c19096a627f5122e3d
MD5 fd1733e503a60e9209c98cdbb3c770a4
BLAKE2b-256 fec9d17f6d5fc9e619298b98c86cfca2b728945b05135b0cc16be8e6305e00cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dda9be2caf067ac21c4aa63497833e0984908b66849c07aaa42b1cfa93f5e1c
MD5 276ff0a153679a901158097c18c1aadb
BLAKE2b-256 5c63ab625cd743cd1950e0b8a1922b5599ee9109085dcb55dad30a3d1751a8ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6655d04942f7c02087a6bba4bdc8d88961aa8ddf3fb9a05b3bad06d2d1ca321b
MD5 7dd9fafc32a6171da1c0cf9dd3c96b5d
BLAKE2b-256 30ac198378091434078efb9e25b69a142de1203bf2e54a674f15d6048221a13e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ba90f7b8f986934f33aad8cc029cf7c74842d3ecd5eda71f7531330d38a8dc4
MD5 930df8d31d341cc5d7c369217cf33a6c
BLAKE2b-256 d0bdd5f9bdd562d4387ca7e1dcfc5121297cba0623e696882bf7cfd343fae88d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27b2625c0840b9a5522eba30b165940084391762492e03b9d640fca5074016ae
MD5 9e1984cf48840187fe11b2433d0112eb
BLAKE2b-256 af6383c7dbe9078ff7e9d8c449913a46a40ae8b9c260f2ec885a0249f00dd763

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8bb0b6aaaa5f37091e05d756a3337faf0ddcffe8a68dbe8a710731b0d555ec8f
MD5 14a61fb4fbf44c683a5bd8e3185af401
BLAKE2b-256 cc9e40ecf165dd9fd177c85d1d7b8614036865f15f39d116cf2c96dc84a3eb8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.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.10.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a01e89e99ba066dfa2df40fe99a2371565f4a3adc6811a73c8019d9929a312e8
MD5 050f825c1bc98d04c9dd0ff1abe3f462
BLAKE2b-256 26c7baf6b960403313f9df3217f7b8039bb2e403559c95641e23a0b0056283c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ce11be5722c9d433c5e1eb3980f16eb7d80828b9614f089e28f4f1724fc8973f
MD5 70282ff74f23c39fe247a8ab25d9e250
BLAKE2b-256 5d2d990b77c8257ff30ec5cf75fc110248f00a236dd8180410362ed6a32846ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a94fe7024137ed8bf200308000d106874afe52ff203f852f43b3547eddfa10e
MD5 e24f1b15c228975343bd07e5429a7c28
BLAKE2b-256 2f6d0534780537175dd09aa4322119ab919acddfda404771b9e61b0bad00a955

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2c7008bb54bdc5d130c0e8581925dfcbdc6f0a4d2051de7a153bfced9a31910f
MD5 031e7a0a1e723fcc16b40038cacaa47b
BLAKE2b-256 1dc2429af269a0146f6fe54993e9cb41a35b1c231387307480ec84c641bd3629

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 86b29e349064821ceeb14d60d01a11a0788f94e73ed4b3a5c3f9fac7aa4e2cd7
MD5 e7da96485a35322623e9ec9c0377c812
BLAKE2b-256 afd1c62de1b4630108fa4da62ec579d9925171013cad195b44e4b49e58ee1d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11c5ef0c70d6bdd8e1d8afed8b0430709b22decc3865eb6c0656aa00117a7b3d
MD5 5903357528856bd6f66207adc042cf69
BLAKE2b-256 a7e700debcc4589b6b4a2b6d7a1d523eb09683f7a3cfea9d0a1f67ab20e9f36e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de3e4be5aa71b73c2640c9b86e435ec033592f7f79787937f8342259106a63ae
MD5 2fafd6e4357e7cfb713b14b4aa005fcc
BLAKE2b-256 6f5e2d9fa4d310c9fa7b1db0ba9f27ea64f2975810bb18ba64f2c13e5e5728c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba19308b8e19cdaadfbf47142f52b705d2cbfb8edd84a8271573e50fa7fa022d
MD5 cd1ce98d11e16f61d85e695654b4f08b
BLAKE2b-256 1d16387beef4365f86ce3a45812d93e9ce230a2d7cd4ff0d81f7aad84a55d0d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c7bab3703babb93c9dd4444ac9797d01ec46cf521e247d3319bfb292414d053
MD5 6972cc902be51e719272c6bad0dea369
BLAKE2b-256 ba460ff7c54a9e649ad092bbbcaa21ae2535d8f53687c04836421bd4f930d780

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b40d46d2aa566f8e3def953279cce0191e47364b453cda492db12a84dd97f78
MD5 df9d46ef4fa933c560b2e26294f7f96d
BLAKE2b-256 4e4645e7eb96960fbbf30b280142488b61afd7092a2430414f2539c72adf292e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c071765bdd5eefa3b2157a61e84d72e161b63f95eb702a0133fee293800a619
MD5 3af41e52d09d2371b2f498f13a6a4c17
BLAKE2b-256 abbc6ffdb375a7699751ea6341704b56050c8df428485e8363962cd6a87d3ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 337ceb50bde7708b2a4068f3000625c23ceb1b2497edce2e21fd08ef58549170
MD5 7cb164fd8d2c858bfe769e934033cd3c
BLAKE2b-256 fcb807b88ee64f548ccd6d7f49589b8e5dffb5526e56572acee1a19fbd74cd5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c52805c7ccb533fe42d3d36c91d237c97c3b6551cd6b32f98b79eeb30d0f139
MD5 aec26b58e43e6cfdbf8cea34b7485cf5
BLAKE2b-256 b953514dbdda46c5ce2d32f7d92d2aa570c7b47f78d7cc6fd79ee3db4ac2dd2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 647553c44cf6b5ce2d9b56e743cc1eab886940d776b36438183e807bb5a7a42b
MD5 0626651eb8cbfe3c370120c37712000e
BLAKE2b-256 66536baa9ef73833bd609df07c4334dccb3f7d2d43c4750f5fffadc878dbc2c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0acb17e3681138b48300b27d3409742c81d5734ec39c650a60a764c135197840
MD5 4786c20490def19471d6bb9d3a9dc0df
BLAKE2b-256 005009b2cdeee0e757a902cb25559783b0d81aeea2b055034de55f57db64152f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.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.10.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e20ebea6ec77232cd12e4084c8be6d03534dc5f3d027d365b32766beafce6c3
MD5 f67a6900d22cf6e998b810ce28c85dbe
BLAKE2b-256 00ba6e7ba6bbc6bde49b62ddcbc0a670ae099d99bf5c7c5bfc3b1134aa9e2de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 adf484b06063134ae604d4fc826d942af7e751c9d0b2fcab5bf1058a8ebe242b
MD5 461c353b51fe213968bc56543229d7ef
BLAKE2b-256 ee6977703decb6b354bed28adcf81b423e0085ce816a80102f1e395c81b68cf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c6afff7e9da53afb8d11eae27a20ee5709e2943b39af6c949b38424d0f271569
MD5 a9b583db1d26b54c01bc1fcdf4e4463b
BLAKE2b-256 633c039bbde86826d13c6d328de70fed824cd7c2ab830d0c8b3fbdf4f61fc4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 91ab85752a08dc875a05742cfda0234d7a70fadda07dd0b0582cfe991911f332
MD5 ecd3da3d2dfd39aaf23299dd865735fd
BLAKE2b-256 196285fe4091085a2d0cbe1c6271aad8f678434680fbedc9ab9fb694186c6551

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d61a21e4153589bd53ffe71b553f93f2afbc8fb7baf63c91a83c933347473083
MD5 f0a1a59ded412d5174f01c95dfd982ce
BLAKE2b-256 9213b2f101f98adbb1134d5f3a6ffd5859f88de705325e7eeeea8d57b0c106cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3e0b70fe7796b63b87cb7ebfaad0ebaca7574fdf177311952f74b8bda6522fb8
MD5 c46a5027b9226513f68f8c851472e82b
BLAKE2b-256 9452f7a45ba637a53bdde08fa98440341d04d7395de27a33dfd51b1211e35677

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1c03360c1760f8608dc5ce1ddd7e5491180765360cae8104b428d5f86fbe1b9
MD5 31fb7171833d9adae3eaf02217c75a3d
BLAKE2b-256 84ed1db09adb133c569afd98b3f507ff372a39c3c7947cd0c42e161b5e6e13aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3596b6ceaf85f872c1e56295c6ec80bb15fdd71e7ed9e0e5c3e654563dcc40a2
MD5 1b13725a28e6ce018018d3e7ebec9002
BLAKE2b-256 134e0c92d0c2ac978d1a95d6ff00095e5abbaeba766b5ff531d9700212db480e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b07fe3e48c881a75a11f722e1d5b052173b5e7c78b22518f659b8c9b4ac4c937
MD5 185839bdd80efffbdeb55e13b475300b
BLAKE2b-256 93f69b35acb94bcab5e2089a1ff4268a3b40cd640b4200e82a4d5bf419e6a64e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38fba4594dd0e2b7423ef403039e63774086ebb0696d9060db20093f18a2f43e
MD5 f7446217391477e86ddc5984ec81fe52
BLAKE2b-256 0db43c9f9f32197c0ad7b33cc99bdf786c2bd4ccf97fdb82b07b6b211c896744

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3484f1595eef64cefed05804d7ec8a88695f89086c49b086634e44c16f3d4769
MD5 ec6e0dbf4641e02ae87e56e88ef8fd74
BLAKE2b-256 f1f791b3bd99d903567ca2fd76fc600b4ce08a85e6c4800fc94f505ef9cf486e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7699d61c712bc77907c48fe63a21fffa03c4dd70401e1d14e368af031fde7c21
MD5 f280cbf57ec75a5a620cd4eda8c342d2
BLAKE2b-256 61a1cf686e49740404b8a336e8134c5c22a0c2de64f918db0081b80d01682b5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b21b1672814ecce88f1da76635f0483d2d877d4cb8998db3692792f46279bf1
MD5 108a5668320e58fdb3cbcc810af0b15a
BLAKE2b-256 33e876d0ae48c64007542b5563ae81712cf1c571f0bbbab45b778112e61c92b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 acef0e2c4d9f38428721a0ec878dee3fb73a35e640593d99c9803457dbb65214
MD5 28d7ed23675514f495bc556bc74dea43
BLAKE2b-256 7a2622a5f8d408a0799b960ffcfa97f28c851e5800a904ef69988c3816819f79

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fb73ee9616e3efd2cf3857b019c66f9bf287bb47139ea48425850da2ae508670
MD5 8b789308066bb0fbbb71954435f98d86
BLAKE2b-256 15a3493dd4a4791ae14e4011d5fe7082a7aca8d31255f5cb50f930ede68561ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.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.10.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 73b6ffc8ffe6546462ccc7e34ca3acd9eb3984e1232645f498544a7eab6b8aca
MD5 dba12b2ea64af28829b2e844f3ca4356
BLAKE2b-256 4f738ea115e1bcda57de7793211bd6b425bddffecd79a6b6d6a424ceaeed52bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2464bdf0e2432e0f07a834f48c16022cd7f4648ed18badf52c32c13d6722518c
MD5 9dd44bc988da7d421d28fd052decaea2
BLAKE2b-256 854ccd4bc9f05d76a127372b991e819b9eefd05a296adfc4f99ba0471033b528

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 22a7ab05c62b0a71fcd6db4274af1508c5ea039a43fb143ac50a62f86e6f32f7
MD5 d7e001140bb129dd0fde3ac20f2bf1b3
BLAKE2b-256 ee3967cc689fcba789076890c980472a40653749d91a8dc3165a8913a84f5670

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e193918c81139361f3f45db19696d31847601f2c0e79a38618f34d7bff6ee704
MD5 5b05c75693d99210a7c5fcb8f56782fc
BLAKE2b-256 940ddf2299892a7fa9b5d973111e81ee6772aaf27cc0489da41a34e66efe3cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5264ac242697fbb1cfffa79d0153cbc4c088538bd99d60cfa374e8a8b83e2bb5
MD5 3e6a78fc99be84b422a7360d28768bde
BLAKE2b-256 ace0b78ab4ee7bcbd6116fdfe54cd771019bcc0d9039b81b070fe2780363c6f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4b201aacc7a06079b063cfbcf5efe78b1e65c7279b2828d06ffaa90a8316579d
MD5 0025158171482b6261f841ab6243d7c5
BLAKE2b-256 fd4c9a1282c4650a1aba666947214a1437973757463e9c60994c497fb9cb5cf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5018c7414047f640b126df02e9286a8da7cc620798cea2b39bac79731c2ee336
MD5 dd1dfdb01a442576032a0244b88d4ecd
BLAKE2b-256 aaf55826951d6398d7f11baaef0ff15d510f7e90af2338af0a92d872adc51f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0744e391ea8baf0ddea5a180b0aa71a6a302490c14d7a37add730bf0172c7c6
MD5 cb1eef80058b7d797fd7c289ce6bc84b
BLAKE2b-256 8306e2048df7a8e1b05a089c25ca0ac1b17c7aa4108c8d6328bf1f74314701b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42dcd7c83104edae70004a8dc494e4e57de4940e3019e5d2cbec2830d5908a85
MD5 8566f228b12584cfbe871dfb82e197b8
BLAKE2b-256 b82ef7f04638bd26808b9f4d03e988de12a06ca5db4551897c780a756ce44384

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 def47645b1b970fd97f063da852b0ddc4f5bdee9af8d5b718d9682c7b828d89d
MD5 9b25f6a4895f38fcfe1525863d5b06e1
BLAKE2b-256 f5ca0d06de89c531b4acf9782775a1527d1d498dc13f7abaa427c665a17ce86f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51eb00c72d4a93e4a2ddcc751ba2a7a1318026247e80742866912ec82b39e5ce
MD5 4fb0023d15c0db2cf906c43726c9f105
BLAKE2b-256 dbc40cf4c9591b04a8e187df60defd920e3bb905b0db5a41d43e96213a0204d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f25db473667774725e4f34e738d644ffb205bf0bdc0e8146870a1104c5f42e4a
MD5 9b9a546cf1b4d74a2cd640204912eecc
BLAKE2b-256 3ad75adbd0b7bb55c5e40356949417e61ac4f950d656a49a8697a08a8b01d724

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c24907c972aca7b56c8326307e15d78f56199852dda1e67e4e54c2672afede4
MD5 f0487c09382a0cd732ec3e14713cb1d5
BLAKE2b-256 77ae5e12b524eb98c03a3c24c243c52894b633ee86c03c36c5e4b5d4738a6567

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce208a3e4043b8ce89e5d90047da16882456ea395577b1ee07e8215dce7d7c91
MD5 710d28c5b6593c50540bf0bdd0aacf0f
BLAKE2b-256 5d34de70de0a7e675d72d78b50f326451ea854f7f12608d3e093423bbe8fae1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 26c44f17938cf00a339899ce6ea7ba12af7b1210d707a80a7f14724fba39869b
MD5 3a527fa6d76e780788affe859ffb9767
BLAKE2b-256 f0833e5f558aebb0064b1d7b197869055118ee849ccc5d7a86520ba751a79cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.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.10.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0d27fe3e316f9ae7fe1367b6daf0ffc993c1c66edae588165ac0f41f91a5a6b1
MD5 c759c840d02756ca42db5c20d799f02b
BLAKE2b-256 25075c1a7ca5748e12aff142fa99194d555a7cf5dcc263af64a08689eacaeb93

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 61b7f3c81e5e9015e73e5f423706b2f5e85a07ce79dea35645fad93505ff06cf
MD5 bf056a0dfde9e959474195f24432573f
BLAKE2b-256 4e467e9b5b61947ac9aa0b6bdcb1f2858a76b2da6b6cc3469c32ac4c19fa1831

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a71ab695a16c6d5aeae1f02fcc37fbd1ae876e8fb339337aca187012a3d6c0a2
MD5 c965b48b94f28703d42164f235a6f1d0
BLAKE2b-256 95fe68c1f7d376fdf99ec21fcfc4bb10fb12ccc2e2030ba49f736457221ead65

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a120fc0514c9ed9a4051d040ddd36176241d4f54c4a37d8e4f3d29ac9bdb4c3a
MD5 da381185355f470e4b817df686219d24
BLAKE2b-256 f293020e22a3844005201cdfc3ec5c35546e87fb4e25333a4a9c7d512458bd37

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 92fd6e784ade210c3522bc627b3938821d12fac52acefe4d6630460e243e28de
MD5 b7aac256cb48457370bd3ad00125213b
BLAKE2b-256 aa83ad56673d1471c5d9f816ae7f13d1fba418812afba5fc72db443a7912b1dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17dda15edf256362edb30dcb1d5ecdcd727d946c6be0d1b130e736f3f49487dc
MD5 25afa37c4f1f3c6107bc8c3f6febddea
BLAKE2b-256 7077522e24e83f99267b70c67757cd5574ac0e366f63e59b7bd0978d7b6d9660

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ab6f36c772109c974890eafff2a841ddbf38ea1293b01a778b28f26089a890d
MD5 6de2a17e7788b74a00290a69af326c04
BLAKE2b-256 2008cdb0484d73af8aaf80e7d73049ad6d441806cfbc4052e27b5ae06a653bd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2923b8cd2fcbd22e0842decb66bf925a9e95bda165490d037c355e5df8fef68
MD5 540259d9f9e017b88bc8aab1f73534b7
BLAKE2b-256 e10f2e3b1437eaacea25e3ed35592e1333217d696bea0394a83fdf886792c943

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ddbf6a3d3def7ae46638ebf87d7746ccebf22f885a87884ac24d97943af3f30
MD5 640f240c72a1924d63bcf668ec29f675
BLAKE2b-256 2ada826a32b31937d8082fbfc50f74af95a36fa74dec7c109730eba4dc57abde

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 112638a4cdf806509d2d2661cb519d239d731bd5fd2e95f211c48ac0f0deeab5
MD5 698cda306987e1ff482d93659764c407
BLAKE2b-256 0fb19266bdb46fc2c5884075aabea80280ec0328bdf98bb047a06bf7f71bd262

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b3e0067ae3513e4cbd0efbabbe5a2bcfa2c2d4bddc67188eeb0751b9a02fdb7
MD5 2d6b03c906f5e6e40d234b9e10f12cc5
BLAKE2b-256 9f863182627ac109797849926ed718a4f844d9b2764c8c6e094991bf960cc400

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 28a13c0317e71121b2059ffa8beefa2b185be241c52f740f6eb261f0067186db
MD5 acfbefe3760b9208881630066e95f64b
BLAKE2b-256 fb9b3012d33cbd070fb0cff13abb5b3417adbbad972ba2b3eea38ca087077d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eafdc9d1721afcb4be9d20b980b61d404a592c19067197976a4077f52727bd1a
MD5 7f768ce6ee5da187e099a7e4235f2595
BLAKE2b-256 410b5eaadedadcaf3861043081677f2b04388811089ef0ab99cf603ca6b359d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 260732e3b5c56d6182586f3a7fc5e3f3641b27bfbad5883e8d8e292af85a6870
MD5 14cbdabc76fa48b2664ec85a471c45a9
BLAKE2b-256 a2211d23f1eaa8fb04054f430ad81bd20b78946b879f19d1cc9ab696e65183d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 967f5f0f22bf5dba4e4d7abe9594b28f5da95606225a50555926ff6e975d84dd
MD5 8a17f21aa04fd47f90dec4c155528033
BLAKE2b-256 f4b628095eb5ac373f6740cb846b6cb78665ba62f5cffb75acb834ccbd37d2f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.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.10.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9cadef44f5ad4c5b4d06ba3c28464d70241a40539c0343b1821ba43102b6a9fc
MD5 a0923d796b6ed0911f750a6245f84960
BLAKE2b-256 bd88776f2e74334459924798158963ceb2de728505569b0979ed3bfeafeb7b49

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: cramjam-2.10.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 001fc2572adc655406fb899087f57a740e58a800b05acdccac8bf5759b617d90
MD5 83ffb2185064a1354ecacdb4b81ef2a8
BLAKE2b-256 25774ace0b2c15345646566ecc51d0a998fec19ee04842f1f0b0a02d144ff569

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8dee2e4a402dac2df110e7b02fae49507a63b44b6fd91350cf069f31545a925
MD5 ef85f1fa30863b145585248b69af9e48
BLAKE2b-256 1559adbf53d61b827022d47250180191455b2c19a4d0de7785214e2d52e161d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 05793857773ec62101edf2c0d22d8edc955707727124f637d2f6cc138e5f97aa
MD5 813f1c4b1bf5d0b05057948e7456a92f
BLAKE2b-256 88a61f5cad3c30ff30302c9e253576107a5b09e4eb53faab80c5bd5df3b71691

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a094ca72440364bc1d0a793555875e515b0d7cc0eef171f4cd49c7e4855ba06e
MD5 3f086e0601bd9ab89e2508a893282fe2
BLAKE2b-256 61a875fcae858973140e10f887408a0d3fa12bbbb3ec0f94a59699d693c87aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6d86c1e2006fe82a8679ed851c2462a6019b57255b3902d16ac35df4a37f6cdd
MD5 a0bcd6819f4f75619cc80755b8fbad2c
BLAKE2b-256 b8379291db5a817d233d1699cfa33078cf1d4a3b2e925ada268a7a88c80ba054

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac5a8a3ef660e6869a7761cd0664223eb546b2d17e9121c8ab0ad46353635611
MD5 86511258b814d4cb1a897ab9d5eab975
BLAKE2b-256 6b472622a93659866767555ce1bdf3b3f9d7bf81f24dc455cbd8529a3913505d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8695857e0b0b5289fabb6c200b95e2b18d8575551ddd9d50746b3d78b6fb5aa8
MD5 db7f7abedeb5c8d1803a3c43fd1f6aca
BLAKE2b-256 b45180ebb2ce1e7e24e4a69a2606b26b8e2f831f3af89fc0a485e3b7987cd027

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2742eea6e336961167c5b6a2393fa04d54bdb10980f0d60ea36ed0a824e9a20
MD5 1354144f86a8ded86ac34d44449cef10
BLAKE2b-256 49a84e27017eba64983ed948331ba64e888213fc4ac119a3e3161e25df532091

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff7b95bd299c9360e7cb8d226002d58e2917f594ea5af0373efc713f896622b9
MD5 0409863d57c233a92df8af62eb69a43d
BLAKE2b-256 6a9e388606d5372e4a3f523acfa5f1a273130aabe1e129cc34882938350e1ad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68362d87372a90b9717536238c81d74d7feb4a14392ac239ceb61c1c199a9bac
MD5 6ae10bc480b502dcc9e6fb90285c419b
BLAKE2b-256 c9bdc9fa1676a4b03d2f1c009f0f1f6148b1aec567f700a5d63c3eca68acc276

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bcedda2ef2560e6e62cac03734ab1ad28616206b4d4f2d138440b4f43e18c395
MD5 ab6ed91396c8bc7313487986da3c37aa
BLAKE2b-256 db08d5c394a16b4b7c8b9ae81bb0ab26e2d7e1a265344da8c4e8164ffcf2fca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06ad4a8b368d30ded1d932d9eed647962fbe44923269185a6bbd5e0d11cc39ab
MD5 eb3f7f83e10a8a127db5d5a990a1ca92
BLAKE2b-256 4b9dfa855eb4ef4138a51196af8db3290054345735dfdbdd74b898612077514e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.10.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 570c81f991033e624874475ade96b601f1db2c51b3e69c324072adcfb23ef5aa
MD5 e584f5eed5de0ff64d9b0065a5e9c1d5
BLAKE2b-256 4193971120cf37117270fbc7638df475fe450783992230e7b2391f6a52f5bc36

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-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.

File details

Details for the file cramjam-2.10.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.10.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 645827af834a64145ba4b06f703342b2dbe1d40d1a48fb04e82373bd95cf68e2
MD5 3581bfc59e58fb6cb5b27f74803e580e
BLAKE2b-256 e32cca2ffb43e48b7997252496d4affdff8801495cc616b06683e851129de6c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cramjam-2.10.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.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 Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page