Skip to main content

Thin Python bindings to de/compression algorithms in Rust

Project description

cramjam-python

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


Extremely thin Python bindings to de/compression algorithms in Rust. Allows for using algorithms such as Snappy, without any system dependencies.

This is handy when being used in environments like AWS Lambda, where installing packages like python-snappy becomes difficult because of system level dependencies.


Benchmarks

Some basic benchmarks are available in the benchmarks directory


Available algorithms:

  • Snappy
  • Brotli
  • Bzip2
  • Lz4
  • Gzip
  • Deflate
  • ZSTD
  • LZMA / XZ (cramjam.experimental.lzma) # experimental support!

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 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'

Special note!
If you know the length of the de/compress output, you can provide output_len=<<some int>> to any de/compress to get ~1.5-3x performance increase as this allows single buffer allocation; doesn't really apply if you're using cramjam.Buffer or cramjam.File objects.

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.8.1.dev1.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

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

cramjam-2.8.1.dev1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cramjam-2.8.1.dev1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

cramjam-2.8.1.dev1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cramjam-2.8.1.dev1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

cramjam-2.8.1.dev1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cramjam-2.8.1.dev1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

cramjam-2.8.1.dev1-cp312-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

cramjam-2.8.1.dev1-cp312-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

cramjam-2.8.1.dev1-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.8.1.dev1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

cramjam-2.8.1.dev1-cp312-cp312-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cramjam-2.8.1.dev1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.8 MB view details)

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

cramjam-2.8.1.dev1-cp311-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

cramjam-2.8.1.dev1-cp311-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

cramjam-2.8.1.dev1-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.8.1.dev1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

cramjam-2.8.1.dev1-cp311-cp311-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cramjam-2.8.1.dev1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.8 MB view details)

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

cramjam-2.8.1.dev1-cp310-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

cramjam-2.8.1.dev1-cp310-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

cramjam-2.8.1.dev1-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.8.1.dev1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

cramjam-2.8.1.dev1-cp310-cp310-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

cramjam-2.8.1.dev1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.8 MB view details)

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

cramjam-2.8.1.dev1-cp39-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

cramjam-2.8.1.dev1-cp39-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86

cramjam-2.8.1.dev1-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.8.1.dev1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

cramjam-2.8.1.dev1-cp39-cp39-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

cramjam-2.8.1.dev1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.8 MB view details)

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

cramjam-2.8.1.dev1-cp38-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

cramjam-2.8.1.dev1-cp38-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86

cramjam-2.8.1.dev1-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.8.1.dev1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

cramjam-2.8.1.dev1-cp38-cp38-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

cramjam-2.8.1.dev1-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.8 MB view details)

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

cramjam-2.8.1.dev1-cp37-none-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7Windows x86-64

cramjam-2.8.1.dev1-cp37-none-win32.whl (1.5 MB view details)

Uploaded CPython 3.7Windows x86

cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

cramjam-2.8.1.dev1-cp37-cp37m-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

Details for the file cramjam-2.8.1.dev1.tar.gz.

File metadata

  • Download URL: cramjam-2.8.1.dev1.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1.tar.gz
Algorithm Hash digest
SHA256 392dad03a9368dec2e4a5a555f050b7efee62a25bc29b24b6b84fe41f7ae25b3
MD5 806e28d28d89a99d7285f356eed3e7cb
BLAKE2b-256 c958c8ae617bc7c1472a1379f1e46d1d2df63177df19ecd25ac14167a7c4efca

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04d23cc4b59e0ab8236e24033414116fc01da320a0eba2b74639e198942d7b89
MD5 9ad96a5594253d437c5a0ba0f63ea0b5
BLAKE2b-256 e0dc82fc0ae487503177b153c41763f21ca79e4e19aa5b38096bb677ee4523ff

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed68bfc786d0ffc1baba2f56a60d7706b5775b03c5cd75442cd0e26fdbff5548
MD5 e87ec26b687641a58aa7a7d36978bbee
BLAKE2b-256 e0ee56c24a13d66d06f1b128d55d27f318a3585b6c35bdc7da294c73880fb191

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9df297d03bff74f5638c757e9e5a2b81984899f92f842aa2262248dbb83e4e1
MD5 928de6ba2e176225469587c1a682efbc
BLAKE2b-256 f285d2bbac7ebda6a916ca9a309c2206fc7f5f3eea6b758da5d56706b77531f0

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81c7224806f0cb4e93be359a1ee8a4490cb2fa81c0a5f3c3cb50562ad6fa3d4e
MD5 8325739a9b0ba7a135a355d2d415f1fa
BLAKE2b-256 b8850c7254213ed24d606f250d46c8638b3d27b71c03a4a9f8acc66dbf3409c3

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f70cb6d9c18daa6997b8fc15f756f6285ee300f439caa520ea2199e7f767deaa
MD5 41b3c16e53eabf72eecb3643814999d4
BLAKE2b-256 ead5032e7a0f14d05c97776568934a4620b65cea8e5132c6f6c52ba475183d7b

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e8dddb6ffb4bc9f52089e003eea9625193e8cd32ce3ca32c0b78796912e3a2a
MD5 075ab25c84b63d89250c5323d37ebb88
BLAKE2b-256 d8aa9ae869d56960d1491ed8af78588043ad8db27a892e398fc640a275a8cac0

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22292ba90070d667c8a712942e597bee3ddbc6d41243de6625c8c5664cef96ad
MD5 ecbc23e3c71dd9ada41dbca46bb23e3d
BLAKE2b-256 76e641e719ba9dc672834db1f20e659a59ec4b76949685a12b2decabafee2860

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c86f7c3d01374e2cd28c6da9745c54a82848925aa79f736c8382bc1f315eb2e
MD5 63d9ccc259257b28409ab7ad36c14e8f
BLAKE2b-256 4eb2125883a59c801c5459b806eebc8240e00bf392f74b4f65dfacbc1a0b2353

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae5dcb90d1aee38bb8d965b95f2a8fd558efb37247fa538b3a481fcecc91a19f
MD5 9014a186bdaf0b3e598b93e5aa1242d0
BLAKE2b-256 984d09bc9fcc2b677ac4e150dd853961ba044ec72e054590cef5e82669cc2081

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 104e5c236b79be8478ef330b5bbd1d388af2be9c30a022bc6f7f5c379c742fda
MD5 94cabe997229caedec8c1b5e30a91654
BLAKE2b-256 ddc31e174855b5040a560778325f4960dc9ccbceaa3306b33c7e2d307b4e7808

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-none-win32.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp312-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d176f67db6ab37b21e5cca4aea74c687347289abca73b7a2b4a8c4ac29e367fe
MD5 737c413d30819d79a632577cf56fffeb
BLAKE2b-256 053a0e7cfc8ac8ea5a69453a7cae5c0ab15e81c256196671b26b0094d24fd90d

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f46504476f97500315b58dc0e1d24338deaa4b7031e65a1d0a07dc049b3204e
MD5 e178c855900394e127472ed1d077e575
BLAKE2b-256 a3e9ebfbe2d9cf824168cbc8f90c5174a58d3f5e3aeaef649007d2586c2c0d1b

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 481a8db0643a1597ed06213b05dc0ad4750b08ea1915f1151fb6e9300eb1935e
MD5 2daea2c1475376e4ab1574ce7ae1ffa9
BLAKE2b-256 9a390acd7c8cf74c4784ed0da85a07f770b53abafa9f56add9f5302029082a98

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f691cd93bec614b2a8291df9b4f63116201ffe76a131533c9c7c9bea134273f
MD5 a4e7607200cf6c30159c663310adc7b6
BLAKE2b-256 dd3ba19a9dc392f0a404325bda25d08ad4081766bba6c51062f87454a01cd899

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 146702fd189f2400d7c45585021e09515d2f4ff7dbc472372f1fb8a2d96b140c
MD5 a946bb732c1d0177302282fd3408a9be
BLAKE2b-256 518819bee5abefa7391fa96c0b2e6d16f7791e429a238d703221a7978b7b8807

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f5cc1551aba22c7b26ba5ba9ec0b5dbdb401004fbd3e5febf26c7737add17ff
MD5 9647f8febf97c6017c94d38f688f4062
BLAKE2b-256 17964c12a0c8a0c5b49e06c91e490952e1491f87e4cfc6942e3b435a5cfc4fd4

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e691ffa1e5cc3c6c1e0691e1ce4c797e2cb64f3a288206fbc51815296b4468e5
MD5 6dec656bdc2b1dd69c6ef813fba7696e
BLAKE2b-256 1993097a7fc41d7f4d6a47bc83744612406dd546dc44d75172ce3736bdd966d8

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9eb2547946607b4bbf8fa5110f1208485613cc17091cd0a64fc4a9e0b294b78
MD5 4c1bf6c6691beeb4bd1200e8e2a306f3
BLAKE2b-256 57cf78cfdfcf636a760fb167a2651376e3a946993191af09faf7e70f18a3820f

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ad91d65a6c8380a7bf83b32029b197c65f9c2334a65c6119e37efb41afa7bcd9
MD5 f295b52754db4593333504672ed7ae71
BLAKE2b-256 d8b1410ae8297893a1feb5b43509c80b74f3622e227bd922d80dfd7952240f66

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d5296b429c6918711d5286d5cf14ec67345de3e13a865550131b03d845c4bc9b
MD5 2c840e8d1d7b5ec8126b1666425e88ff
BLAKE2b-256 a50f458f96af82d18c5a3fe5b133d035500a2907711a3c9ce75b603e64babd48

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-none-win32.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp311-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 df1b9c37eb7fbb5e3d22781f61e115fb27611710c3971568ef6bd3c811bf9434
MD5 b4f81c49df920b89c8647425cea31ae6
BLAKE2b-256 82ea3bca0423198673ae01bf4ecfb11f62341aa0b1bc80aa0f605c383cfa68c1

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ad977b1e6ff5f31932c4c0b4d4c201446d3c0ea1d10fe64c230644038e90e5e
MD5 985750b2898dbdf24c333d32045c1551
BLAKE2b-256 a27e84467cb41c07334197be933565483ac2caedda8a9cf22165ec501284ca05

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d12674a49f0dafb4607f8ea7446027ac4dd475737f9372bbb5d5a0b184b67709
MD5 0728b02b8c6468ba0b981d03e547c577
BLAKE2b-256 a8305ec84a8ce91de2a3789338858a4d2768d2bd7082644c604338a9aee346c0

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09ac760fffb31bc7e05e50954f91871bc5c44571f6de8adddac554ab0e5e2d42
MD5 29df69c7b284565b9fcdd89d52aefc6e
BLAKE2b-256 4d6cf28cd1d2f8b8c9026375ba34fcd1809868f8431d77a973482a377b96b0a6

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57e0e839b722734a0817758b2392c3898c39a30c61bb09c96997eaa9134cf706
MD5 70b3830d8e04d94361636b96e1563591
BLAKE2b-256 b342b475c4d36ca713009ba772efadfbd1c466e447522fbe4986c8193e2b722a

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31998ad9512b6c0e1e96b764f3d35648beb3a6fa72d24b0a248434acba50e917
MD5 48a29b78d9b488f5683cb2d705442cdd
BLAKE2b-256 78f22c363664234e8b7b93bae2982b3c997ad114def91c0abafd9575651f9eb7

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e694dca9b7739a60bc309e5f013c7d0054e568c929e6a88b377800e2aa924fd9
MD5 08c362741d80c4bf8a9d3d8e75790619
BLAKE2b-256 7e98c8c5f345663034e917828624aa4eb2bbf8a2666f9869222d78bc8fa84d1a

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e669df7f669284b8c35f73176024c5b4bdb4791bb8d1b325febc00342ba2ea90
MD5 353ae767241633b1cb1369c3f660c3ac
BLAKE2b-256 4a0d3c2ee66f3644510b3fa21088102a4f2333a37a0a40398d899d523649038d

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 48fbe9cf3ffb8b2b94b621f3aec72d62ab8b72fb32abdbe9a3ec7f7c9881aae2
MD5 2cbd8348e716ec82252e4b65b0aa5820
BLAKE2b-256 3b46d2f00efa19696e5abed326a9a130d441723a9e26547b13d9be133b72beee

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 25c8ec5e479db6d13950bc3541cca56dc48a1f2c918bfa4338e9836886e18881
MD5 fce6030c2a35437130449312e93f0702
BLAKE2b-256 d475e9f95b89ee5ade9a369d2a4d1746ca9d731f74a1880296f03bc996b65a0d

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-none-win32.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp310-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 bd0b30631c2502a24919c433b40a5a1ae66fbc3ae70e284125849c0ade4c2cdf
MD5 7f7c621f45a39a8433f420125f5328af
BLAKE2b-256 4d558b09e2b455b5b8bc3a268390cc054b81edd481d807b5b594f0e0af6f66e3

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbc9f14c204a9324b2ebbc73731226897b5f33c87049ecee2130a395836bb223
MD5 b0e8ad1361051a2fb532cbf72e8d57c2
BLAKE2b-256 1c61b47cf6c93eb8d1b57a86c94ee6e068a04530759daede279dc18829625999

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddc82d91a3c06fb8476c9d193948e35e94d2843c7ada72e042c239133215af54
MD5 be6585693e32c0bb26db5397835d55b8
BLAKE2b-256 424e5b40b4907f6a71572721fa94faf8e3f31ef1c9a60f9d3b17efe1f0860356

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c23e772b239c78c33e12a673902922d8cf150e38e452e8f85256da13ceb3e8b
MD5 9219708f784d9b75aa9d727773f53831
BLAKE2b-256 b36af2e05b2146fd12c0ecb3b98f4cbea074e3d350beeb60e14a5c682a6d23ba

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0aabbe87458e9aad60babb95ebcbfe609d5335fb4d903efb74a3a4e016012f1
MD5 105c7660c17af001612a2c6aaf49c3b2
BLAKE2b-256 bea9b161e8533e86750b747047bf9293e02110f6adbacbcb2f343b2d15e743db

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f6717ad15a9b0c8cc8a8d249434cd43eb48bd81f6bdcc91bacb4919b3f504c7
MD5 10ee1d10d07f7add4b18895e9c7c074a
BLAKE2b-256 50735d9ea7db742e239d22b047d623aedc17e38b5343095ed2f3c5718a7a4682

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 61c12e505171e0fd59daea5890863cf76c9cfa8873708d493e2ac597e64571bb
MD5 a47276682c0169a589afd92dc2ca9a7c
BLAKE2b-256 3aea4bbe075aa9bcbcdbf0b6c045747a9942fddde37577bdb4d9b13713f7f75b

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41e13ab58251d5c52b55eca6d9ccf452f915b866725b24b2bf67e278078e7256
MD5 fe1bfcb9e0713b4e857bab65bb185f44
BLAKE2b-256 864d339dcbcb874cdb2172863ca91f1192adb854aae29765bcbf1300d22a75d3

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c72abc698ca6fe123db025e00bd2286be207db898cf43d02ddbdcb2be790d620
MD5 6b3ab8bc5c6f0fe7c661fd7e3ddeb964
BLAKE2b-256 16a6b539d44d7dde34453cfebd4bf865cdeb01910736ec45f221f158b21f18db

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8633691fb80f848b80659fedda67a10fa46b1c0a3411de9ef3a43a3feca882f7
MD5 2aba642ea0549c946eb20ca28f0ea05f
BLAKE2b-256 8056dc1dad7cd63455d2d7ba2579e716d0acd0f2a67c8d504b751612b5c4d826

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-none-win32.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp39-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 6c77770e9130afc2141428cb5c8c2cc6c369be86b0e2abe23b244c40765e491b
MD5 847bc7157d9a8b32df8902062c566197
BLAKE2b-256 558613d4b337ac3963e52c63b1f24eb7b875412e8ff767c8c234a5550e7dde34

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a73503ddd8b16ef14cc14d32655a1dfce3007abbd6aa47e19978937e3d77b13
MD5 f090147eb89ebfc66d9a4cd9d421b3b6
BLAKE2b-256 b8575d147ced93dc5fd2a6a0b2b1e520baae579aa1ce5d97756daf929f3bb870

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc06c1998f2c0469a41bf4f704dfc4db171b044b430a50f7704a3cde2c4d9796
MD5 0d21c65f3c1278250fc22d37c32873da
BLAKE2b-256 addc6a985c67dc7e27128fd8d9540bcd4cead515688d7cee9064f2eaf779cdad

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76ea83834a7a40825bdb7e88bb621c353c27930e2a76fbc3a89b3192bdd385fb
MD5 fe61d4b960c94fc8cb4d06365a29b621
BLAKE2b-256 cb93ad1682745dd7b2a97e19a78a75d0496df8c01a14a8dabedfde6cce7caff7

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d36ad91ec58a30c06183b726e8c639364c46949c98d41dbb2a31d944510199c1
MD5 4172e0cb273db5d26d5a4dcb9ec0de01
BLAKE2b-256 5dd4cd78275bcc92483c76154d54348d387d0d0e3e001b36afab2bd9eec76067

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 811da02bd96622b771fa76237197520a9f9413c941ca34a0285e046519e33c80
MD5 b4de6e2cd881b722ba2f24169200cc1d
BLAKE2b-256 e3d80c65eadb92a948b86457e43ba4349db1f84dcac55b7720e7be6eaf3ad5f1

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93192de34cd71f419b693d853e81bfbc400a5ac02dbaad21800ae21977ec99dd
MD5 b2108e548d77eb57d96eb5e69932aac4
BLAKE2b-256 2c9c1f54866a4849118f13f181522b2ca91d57f8d7a1bb7b16b7fde601ba79bb

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bc4c4c84f92f75264801233935a37d1412cc39bf7852494e23708540e85594e5
MD5 fd7a806f4cc5c33a96a5482aef79b388
BLAKE2b-256 7e23ccc85c7cff404a04609f4cb456d18d35fa4503d79c068b83ff7a2d616496

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8e942d688e2434539398d612999facb4f9443c7fee25abab048e6810edb5d8f1
MD5 fb8c03c7ac9e798e596623757e2dac6e
BLAKE2b-256 48a59a1878fe9dd9fb0d6d7f4f378dc7ff67ea0fdcaccdc7265fc83f4f8fcd21

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 205bf574daab54fab2a0f6f64bb176c195ac9355ad0e26436ff1d172f6e9a90c
MD5 02105acf2bc96a9790f269b8d972b495
BLAKE2b-256 c1588f88edb125e380274f1394e453e2f233d00f2dffa452da17f7521d39aa29

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-none-win32.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp38-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 ddeb2e90d852b1fcbd8fdc90239e66a6b9f7b8efc6a114055c954afd94c3c667
MD5 f54bed61efe76ce2d64b2d4e7792127b
BLAKE2b-256 f38b4cffc6948c46fb6560b15bb124eb8dc2656888a5e205952556c339723c45

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7bd6eaabe58a052fc8a7df2362904ff32bce0b8c4a03f7f3885bb6655709656
MD5 dea9f098ff093fb48afb40e353cc5e55
BLAKE2b-256 ea4b8f66b32d26751d65b00824a053a144998dbe4adcec29ff4a89b7d20517eb

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd6ce5ee1261b7e417ef951c0421913890374eeaff21d56c7ef75603d19bc5a5
MD5 f2ce58d5906741586854b9871699ca7a
BLAKE2b-256 85e896b6d75eec551a828daf28977cd738dec2e1e9f491a5b161b8745ca0fb26

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79911c47e4c99c10e06d708cc1babab6b3c4e9b346bda81ad3aec169d6619e7d
MD5 3c4ac8d3398e3f9a4ab131dd6cd163e5
BLAKE2b-256 1b5311325c7c1ff2407c50c96c6da0f99f2d7e07fca2e4b1ea70addee8ac7fb4

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5fd317a8991e7094558600bcac18b93e1ec42eab670d63bf2cb887dd7623e2e
MD5 cb46f5d2c1ed2365d94ef18d53a92715
BLAKE2b-256 7f5cd157248690deb5e59e648083c8ea16a7013b7ddc012f70bddcda58253843

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39808ea0f766672bd6dc1cdd5f263c93af1bd46d160b446fb530a149f5857959
MD5 9ab77939b5b45e0fd209501cd741a6ca
BLAKE2b-256 99b01b02ac40783aaa17ffce5a83dd4ca4ad258d2e1b8cd943b4e6d08a9735b2

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a65fee9daf0c5b0beb518d89dfa68bfe8cea1e44686083963f8bed8fb1e72b1
MD5 7e196e0d3f0ff70aa1b984c495bec096
BLAKE2b-256 02d4dbed416f2ef0b981c2af4aa4718746b892eaec9f6c28d5a9219734daf00d

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d5e945d287c0c6acc3a27886d9bb3c3ce8c559bda0554fddc76a38cec530730
MD5 68f54e138582ff2628aad15b53ef695c
BLAKE2b-256 e72a33051151e37bad74d398aeab16d5ad0d26b23e52fd640865fcefa7250368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 848ff5dd9231dec472ba93947e5511082ee597256a660b973084d4c1e4459e22
MD5 58be28016de68592d1d0c313982e4e53
BLAKE2b-256 1dc1e331fc8c11c0db90b51342fa60634dd26107d7b64d364f45c55eb0a1e419

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-none-win_amd64.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 b55506b9cd775f2bc103c7b021e8cec43ba5252f8a5b1ca05bad31ebe7aa57fe
MD5 beb4f040fa5517b7c87c85b61e5a08a8
BLAKE2b-256 498b56711d9fa06d20b998ea4858022ea086adb73cce89731dd8fdda5afad0f3

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-none-win32.whl.

File metadata

  • Download URL: cramjam-2.8.1.dev1-cp37-none-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 6eb29ca25d2e303ddd4bb878dfa670a31f111187d0e3fdcb8ecb5e33ab94a9d8
MD5 fd59e3c41107fa0cde6d2945c7290973
BLAKE2b-256 64031e0b6df312de84b5269da4de1b5ec9ad34447faa1bb28cd3fb4806c6fb9d

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7e9b07ed94c87b2a93fdd8139401b8b26d008b580a15495cd752bbb461c710c
MD5 7379a3f29117939af901fd7cbd1d2e80
BLAKE2b-256 e13cd6644dcd03fef84b29f10fb52f44c794f31c1d8f800ebf3549f0877d625a

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da444eb70cd09c8c7dbeec9f98bd4cc950330c4a7ece759ef35c5a7b5670a03e
MD5 9370cd8af0401c3c09ad7b298931a436
BLAKE2b-256 e53aa3dd03a200c42c4a1b945c77ae1c68291fcbec1a9366d3b598e05c098880

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be5f41c01b64ccaaff2ee49cf58ffc8400d4f8acbc76035763596435fba29402
MD5 a77ebf40fa12f8a39b85826b45db8273
BLAKE2b-256 2be21cf25ccc7d1b15d24644475b332ffa6124931deda2b39820b76182fa7e39

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a91e6f285b4b78aee90019aa619f0afc2bb4619eabbf6a50c5fb665e0751729
MD5 b55767ff5142addf1c1ff951ab273198
BLAKE2b-256 722c5c207f6becada6dc0aa2d6ec06f1e801865f05fbc9a94a6cd7b9f3e436ba

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd5b828fc3f74db6409a955b14e106fbf6a6ac66a2f1150f80a2f8b09b2bba80
MD5 44feabab1bc8ff0cc0744840659fe433
BLAKE2b-256 5e9410cb389456fd355a71c40dd9458534f451bc7516e8fd723e695f429cfb4e

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 272b0f5fc070122c13cc7737c9590235b1631ea3fdf83ea62cf46ebcc6c6eb2f
MD5 7639a1dfe159511c45a8d96b50addae1
BLAKE2b-256 7bbd4fae8533529c41f398f0b2f5dde5b7d4c8a21d4c1f1fc3288b14a0505b62

See more details on using hashes here.

File details

Details for the file cramjam-2.8.1.dev1-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cramjam-2.8.1.dev1-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb9d77003cb5c56c2f2d87d09b221f342dfdebc29a15acc36fbf0e65e610ae2e
MD5 4f50e235bf52fa90904ada2414212c48
BLAKE2b-256 2adc56a14dabf65c19dade8b7209df46b3637825a7622abc8e9cc0863e492d96

See more details on using hashes here.

Supported by

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