Skip to main content

Unified image hashing & Color extraction — ThumbHash, BlurHash, and ColorThief -- 3-in-1

Project description

thumbleweed

Build & Publish Wheels Package version Supported Python versions MIT License

Unified image hashing, thumbnailing, and compression for Python.
Rust-powered via PyO3 + maturin. Zero mandatory dependencies.

  • ThumbHash — compact image placeholder hashes (drop-in for thumbhash & fast-thumbhash)
  • BlurHash — smooth gradient placeholders (drop-in for blurhash-python)
  • ColorThief — dominant colour + palette extraction (drop-in for colorthief & fast-colorthief)
  • Thumbnails — real rasterised thumbnails for images, videos (MP4), and PDFs, with a pure-Rust crude fallback that needs no ffmpeg, no pdfium
  • Compression — optional pixo-powered JPEG/PNG re-encoder, auto-applied to thumbnail output (mozjpeg/oxipng-class quality, pure Rust)
  • ✅ Python 3.10 – 3.14 (including free-threaded 3.13t / 3.14t)
  • ✅ Pillow > 11 integration (optional)
  • ✅ Typed (py.typed + .pyi stubs)
  • ✅ Pure-Rust core — no C extensions, no NumPy required

Installation

pip install thumbleweed
# with Pillow helpers:
pip install "thumbleweed[pillow]"

Optional Rust-side features

A few capabilities are gated behind cargo features so the default wheel stays small and portable. The Python install extras are documentation hooks — to actually enable a feature you must build the wheel from source with the matching cargo feature:

Cargo feature What it enables Pulls in
pixo mozjpeg/oxipng-class JPEG & PNG compression; auto-applied to thumbnail output via compress=True pure Rust
auto-thumbnail High-fidelity thumbnail backend including PDF (via pdfium-render) and video (via ffmpeg/video-rs) pdfium + ffmpeg

Build from source with extras enabled:

# Compression only (lightweight, pure Rust)
MATURIN_PEP517_ARGS="--features pixo" pip install thumbleweed --no-binary thumbleweed

# Compression + full pdf/video backend (requires system pdfium + ffmpeg)
MATURIN_PEP517_ARGS="--features pixo,auto-thumbnail" \
    pip install thumbleweed --no-binary thumbleweed

Without these features the crude thumbnail engine is still available (MP4 cover-art atom scrape + PDF JPEG-stream scrape + deterministic gradient placeholder) and the compress module degrades to a safe pass-through.

Note that auto-thumbnail is currently an all-or-nothing upstream feature: enabling it pulls in both PDF and video support together rather than as separate cargo toggles.

Development with uv

curl -LsSf https://astral.sh/uv/install.sh | sh
make sync
make test

All import paths work:

import thumbleweed   # the unified package
import thumbhash     # ThumbHash only
import blurhash      # BlurHash only
import colorthief    # ColorThief
from thumbleweed import thumbnail   # rasterised thumbnails
from thumbleweed import compress    # optional pixo compression

Quick-start

ThumbHash

import thumbhash as th

# Encode — rgba_bytes must be bytes/bytearray of length w*h*4 (R G B A, non-premultiplied)
hash_bytes: bytes = th.encode(w, h, rgba_bytes)

# Decode
w_out, h_out, rgba_out = th.decode(hash_bytes)

# Helpers
r, g, b, a = th.average_rgba(hash_bytes)           # dominant colour [0, 1]
ratio = th.approximate_aspect_ratio(hash_bytes)     # width / height

BlurHash

import blurhash as bh

# Encode
hash_str: str = bh.encode(rgba_bytes, cx=4, cy=3, width=w, height=h)

# Decode
rgba: bytes = bh.decode(hash_str, width=64, height=64)

Pillow images / BytesIO

from PIL import Image
import io

# From a Pillow Image
import thumbhash as th
img = Image.open("photo.jpg")
hash_str = th.encode_image(img)             # base64 string; input is resized internally
placeholder = th.decode_image(hash_str)     # → RGBA Image, ≈32 px

# From a BytesIO object
buf = io.BytesIO(open("photo.jpg", "rb").read())
hash_str = th.encode_image(buf)

# BlurHash
import blurhash as bh
hash_str = bh.encode_image(img, cx=4, cy=3)
placeholder = bh.decode_image(hash_str, width=64, height=64)

ColorThief

import colorthief as ct

# From encoded image bytes (PNG, JPEG, WebP, …)
dominant = ct.get_color(image_bytes)                    # → (r, g, b)
palette = ct.get_palette(image_bytes, color_count=5)   # → [(r, g, b), (r, g, b), ...]

# From a file path
dominant = ct.get_color("photo.jpg")

# From a BytesIO object
import io
buf = io.BytesIO(open("photo.jpg", "rb").read())
dominant = ct.get_color(buf)                # accepts bytes, BytesIO, file path, or PIL Image
palette = ct.get_palette(buf, color_count=5)

# Class-based API (drop-in for the colorthief package)
thief = ct.ColorThief("photo.jpg")
dominant = thief.get_color()
palette = thief.get_palette(color_count=8)

thumbleweed (unified)

import thumbleweed

# ThumbHash raw-pixel API
hash_bytes = thumbleweed.thumbhash_encode(w, h, rgba)  # raw ThumbHash bytes
w, h, rgba = thumbleweed.thumbhash_decode(hash_bytes)

# ThumbHash image helper API
hash_str = thumbleweed.thumbhash_encode_image(image_bytes)  # base64 string like BlurHash

# BlurHash
hash_str = thumbleweed.blurhash_encode(rgba, 4, 3, w, h)
rgba = thumbleweed.blurhash_decode(hash_str, 64, 64)

# ColorThief
dominant = thumbleweed.colorthief_get_color(image_bytes)
palette = thumbleweed.colorthief_get_palette(image_bytes, 5, 10)

Thumbnails (images / videos / PDFs)

from thumbleweed import thumbnail

# Works on JPEG, PNG, WebP, GIF, BMP, MP4, MKV/WebM, PDF —
# accepts bytes, BytesIO, file paths, pathlib.Path, and PIL.Image.
jpeg_bytes = thumbnail.create("holiday.mp4", width=256, height=256)
png_bytes  = thumbnail.create("manual.pdf", format="png", width=128, height=128)
webp_bytes = thumbnail.create("photo.jpg", format="webp", width=64, height=64)

# Save directly
thumbnail.save("video.mp4", "video_thumb.jpg", width=256, height=256)

# Inspect the wheel's capabilities
print(thumbnail.detect_kind("file.pdf"))     # → "pdf"
print(thumbnail.available_backends())         # → ['crude'] or ['crude', 'auto-thumbnail']

Two engines ship in the wheel:

  • crude (always available): pure-Rust pipeline. Resizes images via the image crate; scrapes embedded cover art from MP4 (covr atom) and the first JPEG (/DCTDecode) image stream from PDFs; otherwise generates a deterministic colour-gradient placeholder.
  • auto-thumbnail (cargo feature): wraps the auto-thumbnail crate for proper PDF rasterisation (pdfium) and video frame extraction (ffmpeg).

Default engine="auto" picks auto-thumbnail when present, falling back to crude on any failure — you always get something back.

Compression (optional, pixo-backed)

from thumbleweed import compress, thumbnail

if compress.is_available():
    smaller = compress.compress(open("photo.jpg", "rb").read(), quality=85)
    bytes_saved = compress.compress_path("photo.jpg")  # in-place

# Auto-applied to thumbnail output (the default — pass compress=False to skip)
thumb = thumbnail.create("photo.jpg", width=256, height=256)            # compressed
thumb = thumbnail.create("photo.jpg", width=256, height=256, compress=False)

When the wheel is not built with --features pixo, every function in thumbleweed.compress becomes a no-op pass-through, so compress=True remains safe to leave on as the default everywhere.


Project structure

thumbleweed/
├── src/
│   ├── lib.rs            # PyO3 module — Python bindings
│   ├── thumbhash.rs      # Pure Rust ThumbHash encode/decode
│   ├── blurhash.rs       # Pure Rust BlurHash encode/decode
│   ├── colorthief.rs     # ColorThief — dominant colour & palette extraction
│   ├── thumbnail.rs      # Rasterised thumbnails (crude + auto-thumbnail)
│   └── compress.rs       # Optional pixo-powered JPEG/PNG re-encoder
├── python/
│   ├── thumbleweed/      # Main package — re-exports everything
│   │   ├── thumbnail.py  # High-level thumbnail submodule
│   │   └── compress.py   # High-level compression submodule
│   ├── thumbhash/        # Backward-compatible ThumbHash shim
│   ├── blurhash/         # BlurHash shim
│   └── colorthief/       # ColorThief shim
├── tests/
│   ├── test_thumbhash.py # 70+ ThumbHash tests
│   ├── test_blurhash.py  # 28+ BlurHash tests
│   ├── test_colorthief.py# ColorThief tests
│   ├── test_thumbnail.py # 153 thumbnail tests across all jpg / mp4 / pdf fixtures
│   ├── test_compress.py  # 60+ compression + integration tests
│   └── test_imports.py   # import / version-consistency tests
└── Cargo.toml

API reference

ThumbHash (import thumbhash)

Function Description
encode(w, h, rgba) → bytes Encode raw RGBA bytes → ThumbHash
decode(hash) → (w, h, rgba) Decode ThumbHash → raw RGBA bytes
average_rgba(hash) → (r,g,b,a) Dominant colour in [0, 1]
approximate_aspect_ratio(hash) → float Width / height of the original image
encode_image(img) → str Encode a Pillow Image (Pillow required), or encoded image bytes, BytesIO, or file path (no Pillow required) → base64 ThumbHash string
decode_image(hash) → Image Decode a base64 ThumbHash string or raw ThumbHash bytes to a Pillow Image (requires Pillow)

BlurHash (import blurhash)

Function Description
encode(pixels, cx, cy, w, h) → str Encode raw RGBA bytes → BlurHash string
decode(hash, w, h) → bytes Decode BlurHash → raw RGBA bytes
encode_image(img, cx, cy) → str Encode a Pillow Image (Pillow required), or encoded image bytes, BytesIO, or file path (no Pillow required) → BlurHash
decode_image(hash, w, h) → Image Decode to a Pillow Image (requires Pillow)

ColorThief (import colorthief)

Function Description
get_color(image, quality) → (r,g,b) Dominant colour from bytes, BytesIO, file path, or PIL Image
get_palette(image, color_count, quality) → list[(r,g,b)] Colour palette from bytes, BytesIO, file path, or PIL Image
ColorThief(image) Class-based API — accepts bytes, BytesIO, file path, or PIL Image

Thumbnail (from thumbleweed import thumbnail)

Function Description
create(source, width, height, quality, format, engine, compress) → bytes Build a thumbnail from any image / video / PDF source
create_from_bytes(data, ...) → bytes Build from raw encoded bytes (skip the input-normalisation overhead)
create_from_path(path, ...) → bytes Build from a file path
save(source, output_path, ...) → None Build a thumbnail and write it to disk
detect_kind(source) → str Inspect magic bytes — returns "image" / "video" / "pdf" / "unknown"
available_backends() → list[str] Lists which backends were compiled in — always includes "crude"

Compress (from thumbleweed import compress)

Function Description
compress(source, format, quality) → bytes Re-encode JPEG/PNG via pixo's max preset (no-op for WebP / unknown / when feature is off). Returns the input verbatim if pixo can't shrink it.
compress_path(input, output=None, ...) → int Compress a file in-place (or to output). Returns bytes saved.
is_available() → bool True if the wheel was built with the pixo cargo feature
detect_format(source) → str "jpeg" / "png" / "webp" / "unknown"

Performance Benchmark Results

Benchmark configuration: 5 rounds × 100 iterations (pure-Python libraries use 5 iterations). Input corpus: all real image fixtures in tests/ (one.jpg, two.jpg, four.jpg, OPS.jpg). All times are mean per-call latency. Lower is better.

Operation thumbleweed Comparison Result
ThumbHash encode (real test images) 825.4 µs thumbhash-python (pure Python): 27.26 ms 33.0× faster
ThumbHash decode (real test images) 56.4 µs thumbhash-python (pure Python): 5.49 ms 97.3× faster
BlurHash encode (real test images) 4.98 ms blurhash-python (CFFI): 4.42 ms 1.1× slower
BlurHash decode 64×64 (real test images) 902.4 µs blurhash-python (CFFI): 842.2 µs 1.1× slower
ColorThief dominant (real test images) 5.09 ms fast-colorthief (C ext + NumPy): 18.62 ms 3.7× faster
ColorThief palette-10 (real test images) 5.17 ms fast-colorthief (C ext + NumPy): 18.38 ms 3.6× faster

(The above values are updated by a benchmark script ocassionally)

Notes on ColorThief timing: thumbleweed includes image decode in its timing because it accepts raw encoded bytes from the real test fixtures, while fast-colorthief also reads from in-memory file-like objects in these benchmarks. This measures realistic end-to-end usage rather than just the inner palette routine.


Building from source

git clone https://github.com/New-Elysium/thumbleweed.git
cd thumbleweed
make sync   # sync uv environment + install editable
make test   # run Python + Rust tests

Make targets

  • make sync — sync uv environment and install the extension in editable mode
  • make test — run Python tests and Rust tests
  • make dist — build wheels into dist/
  • make upload — upload dist/* with twine

Running Benchmarks

Benchmarks require bench dependencies which might not be compatible with all Python versions (e.g. thumbhash-python fails to resolve on Python 3.14). To avoid conflicts, run them with a supported Python version (e.g. 3.12):

# Sync using a Python version that supports the benchmark dependencies
uv sync --group bench --python 3.12
uv run python tests/bench_comparison.py

# Refresh the benchmark table in this README
uv run python scripts/update_readme.py

Licence

MIT — see LICENCE.

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

thumbleweed-0.2.0.tar.gz (29.0 MB view details)

Uploaded Source

Built Distributions

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

thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (684.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (730.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (650.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (657.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (727.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

thumbleweed-0.2.0-cp314-cp314t-win_arm64.whl (574.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

thumbleweed-0.2.0-cp314-cp314t-win_amd64.whl (601.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (647.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (652.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

thumbleweed-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (630.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

thumbleweed-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (658.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (727.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (654.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

thumbleweed-0.2.0-cp313-cp313t-win_arm64.whl (574.5 kB view details)

Uploaded CPython 3.13tWindows ARM64

thumbleweed-0.2.0-cp313-cp313t-win_amd64.whl (601.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (647.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (652.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

thumbleweed-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl (630.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

thumbleweed-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl (658.4 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (727.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (654.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

thumbleweed-0.2.0-cp312-cp312-win_arm64.whl (575.1 kB view details)

Uploaded CPython 3.12Windows ARM64

thumbleweed-0.2.0-cp312-cp312-win_amd64.whl (601.4 kB view details)

Uploaded CPython 3.12Windows x86-64

thumbleweed-0.2.0-cp312-cp312-win32.whl (593.8 kB view details)

Uploaded CPython 3.12Windows x86

thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (728.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (654.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

thumbleweed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (632.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

thumbleweed-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (660.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

thumbleweed-0.2.0-cp311-cp311-win_arm64.whl (577.3 kB view details)

Uploaded CPython 3.11Windows ARM64

thumbleweed-0.2.0-cp311-cp311-win_amd64.whl (603.3 kB view details)

Uploaded CPython 3.11Windows x86-64

thumbleweed-0.2.0-cp311-cp311-win32.whl (595.7 kB view details)

Uploaded CPython 3.11Windows x86

thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (683.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (728.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (655.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

thumbleweed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (633.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

thumbleweed-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (661.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

thumbleweed-0.2.0-cp310-cp310-win_amd64.whl (603.4 kB view details)

Uploaded CPython 3.10Windows x86-64

thumbleweed-0.2.0-cp310-cp310-win32.whl (595.8 kB view details)

Uploaded CPython 3.10Windows x86

thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (683.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (728.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (655.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

thumbleweed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (633.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

thumbleweed-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (661.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file thumbleweed-0.2.0.tar.gz.

File metadata

  • Download URL: thumbleweed-0.2.0.tar.gz
  • Upload date:
  • Size: 29.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0.tar.gz
Algorithm Hash digest
SHA256 2799e80128e6b0b9045e296f8ab582ccc6e877800a8fd072a402e5291d419f2b
MD5 01386ef3661b60792f835ef5947cf486
BLAKE2b-256 2be1f77120659551352b79dcb3f12cb5ad8d080b0526aad11d685da1c53502f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0.tar.gz:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 520f08c6fcc380cba72d1222a4a67548701cc2632ce94eaa4bb92d2f18816e53
MD5 dedbf113701e5be50cef353248c4ead4
BLAKE2b-256 676bb161c0e9f205b08c5be10b71b34319ba86e3d472aa66bb206f675942ea2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c3ac61af48a9a12452a08fb3c05f538cab865243b61a36b1e463354d76ebb7f
MD5 46636cce68c33c3b4241633efbffe0f1
BLAKE2b-256 4d012c2e4eb308b340d5e3feb0b25022d18eb43040d93149938de5754bcce5dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5429d6f82a25ca308245f46db8e1c645a17103c0e497ba396e12c5aebb8b03c0
MD5 fca5156059123f85d8a89f45b11eead8
BLAKE2b-256 6c6690272c3ffc4b48165d8811c09c6cf0755f1318c6c914d11bd76bfc84a28b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f719ea9556410625c8335b51aa04056112f573a510f874079b00903980853494
MD5 43998207b5cfd77b9a2c481c2bbb7b0e
BLAKE2b-256 55eaa7220ed47de33a8e42a9175ce77f72e0ad073787efa8bf03a42e6a1d22ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5a022c3ff84a6752a08bd9f132467ea2d6df2e62ac55382acc440d5fe8a2655
MD5 6529006d5357720c029cfee1f5dca419
BLAKE2b-256 a3502bd5c29780b6a01e3ec4b7231db435080de953ea4725715b63215ef55f5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d3081c59403d7a33a4dfae6349568195a2d16495f47b70894157d149820e485
MD5 fb2c767f729bef6e57c07c82e73bd600
BLAKE2b-256 4bcfe011f944689493632df94aeaeb9b0c4d99f219e5261fdaeca9532be2ebfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0e57be743d62c13bf05ef1660f9a2ce0921f841f72e6e6fa0443692d7be711c7
MD5 b3a4e7d262eeadecba8ba7e2618dc424
BLAKE2b-256 c563e07f21130a43c33fe273d9fadbd1c8262b4b36db64c53ff8fe9b736c2fbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-win_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 92322356179cbbd9d7ae1a7b579da0176c6ea11e17a2eb4b16fe98284ee640c5
MD5 151ec4b40fde04e5f91139d743fa734b
BLAKE2b-256 800d89c48a092d4d696cad1bbdd6faf4b3bc05e6518a6cd2b9c1e3a62a9f3158

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-win_amd64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1b5379c8068b567ad29513a477e38eba40351f07d4ce2c0a1be3d422205cb07
MD5 acc34db84267259757b8197e25285366
BLAKE2b-256 176a16afc683fe6442caf594d8157d1386764bea75134f2f740b0771ab59c8f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 774af7a6c270ce5cc3c20fa3028e7bc6c3e741b34df1fdab6d75c20e8bb16708
MD5 e4472ba7653032bec7cda15908fbcb69
BLAKE2b-256 52ac59b9f494007f719caf5a1854aaafa5d1ae2a890c368b44e3be7b2f8dacd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e67d22b6dce82f01927aea96198e1337fef2b131bb5afb977a9a257a46f57973
MD5 92bda7f8c0a59c09cfd5558815977de8
BLAKE2b-256 908893b6083865d40839f6d8bde0a2bf50aa72f2f3aadae2b7f0dacad1c5bf49

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8d78cf0d70e8b30ec121f40596d7bcc00a27fc42386b3030025b4fd82c93e54
MD5 ff7e850e32b9b6a6488af1defed6d0e5
BLAKE2b-256 7a06f80c25abc1e01888f2cc255ed1318ea0cc3d664fdab44574760563f856f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73fe4ed8893c99c36ff62a43b3e15100302c9c40b90347c5864ecfbe1121a676
MD5 11bbc7b8f0ffaf3c9ad5d82b5bc57761
BLAKE2b-256 8ac26c630edb3944157cfe670f0de1f493ad96ac1b626143e0fb416df4a8ae5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2fdd95bc7ffa85ae736942c5786612bc999f48e91f0b50f14e6c8b40c6b1569b
MD5 08a85f018174f56025d80a3e26505a92
BLAKE2b-256 6c04acd494039580d04b99f12473f01dac67c72f3f155bc9e163f18b445b30f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0259a7e879d15e7f0b1642edae00b9464f2cee9aba125c7f6970e46ae1412b39
MD5 e304d35add9420f477469dbfe4bf9dc3
BLAKE2b-256 07d031b2f14c36c80bf24e3c1743778c67368fb6cec2f04f3836ab2ddb0a0ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4ea77284adbf76ebf5b891e708867dd94df25b364f2e17fdd9ef1771344a2ea
MD5 a425fa07f10cfbf034240e36c2a6efd4
BLAKE2b-256 6fff7adada9886406b298aa1aa39217a0628af2b668bafce675a54a9325bb788

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 af9fc9be89940bbd97465d101ab3e854b6f0ff8616a52ac8e04186234795ef2d
MD5 221d1547ecd509b39c7d58203176bebc
BLAKE2b-256 4fc2a779bdb8aa3fd54ac2445fa738e69b208d5f02f24ce0114d6274bffa09da

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-win_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ac24708ae837d623d34672f6484bf124aa356f318cf66a3660e7a9779ae79c8e
MD5 47cefbaeaf2a79b8f843daba924dafb0
BLAKE2b-256 d5bf33fdd9a60b4e0d556ef691df82e3265388ef6c8bb963e56a8a7f9c2be564

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-win_amd64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2ce60f5666b40dd8b68420e6e179bfb7b5320bc7de4e2ce3545b3e90f57bb23
MD5 4b510ef90265ef44808fd8481456b88f
BLAKE2b-256 8843164d49c8497dd42aeafafbdfe3c404a1bf16c713ac5732b6bb72d5377c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1aaf6fb9fed3b6ba549d67bc0c7c3eeee068f1065b87e6e6972254ebc50536df
MD5 68050e2df509e5676c6cbdf2eb251f11
BLAKE2b-256 d25d8a2ed75e036d0724488da5c5ef1b7c07db3375715b11366c0bf81494fcb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0ea8276a35746ff4413854780c37f39289167c0bd9b9eea75e89579a9295788
MD5 012fed064983c53e66592f32ca3eb2e0
BLAKE2b-256 6aff3fe6765717976c666770a54426bb60841b679f760e1d2956d2a18ff33d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea69fc23b3ff118f21c94d917e0f5163057d03f5315d1b560236a5b6f78bd375
MD5 cfe3ab9e353104461c11f05c7890a486
BLAKE2b-256 216692a9328fc3d74d6d36d5d99326c345143d4127534561149077cf05ed921b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e9ed760f60b0da1d7e420482e429e8730691d04ef9bbabb4436461b6bc7afae
MD5 203ff3b0522a4352f3b05bb271df3fd8
BLAKE2b-256 c424670da4c01b2bf5547d7b1b1ec57c093eca41dd2541ba4cda90bf7924f622

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84560b1cec50185232dbc2080918a279edb3e1a16bc2362af35fa67e505c32be
MD5 17ad7051fa731d65b63575139da49e6b
BLAKE2b-256 3ec71c75cd25e98c484a70dc02751780ea52b13476682a7de092491ac15dc59a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 476b5dc1212b85cc35780b8eaab6f69f682b5b45b984c5701a23a833576ecb98
MD5 90307c0be93a7988f1e707f6fbd9e09f
BLAKE2b-256 678ec33d8279d339d163056795bdcd4204aa6b99481dfe66e8091b896385a30f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 991c11ae7daae86c555ee42af6e592c9c06b25ea30dbd0176a6d4cf7a7b1876c
MD5 61960b93bd9c5cd47c0de448737ae93d
BLAKE2b-256 b67c89830d3e87c98dc392a6795f67cec9c7fc4c7e13a3630eeea26ed58afa1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: thumbleweed-0.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 575.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6a0861e4ee72c6b37a74a0d7e0cc0273d79f2928798166b5dcecea03ec0b5fc1
MD5 dfbb6650489c9611f9dddc815bac21c4
BLAKE2b-256 7390fac7f0f76a51925637bb5636c3612725af41c8363c38a09ba7c8ea5e5dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-win_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: thumbleweed-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 601.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 171e0da3386974789c79f556652e1ea9519d2755ba2b176ce182dc19f375a974
MD5 511888d17fddcf25ff84258c7f209424
BLAKE2b-256 212e1e75f2c5f45146cd7cb96cb3b4dc3dd53e5253aecfa75af3ea57169f026b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: thumbleweed-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 593.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7d53113d8da9235181e4b535a74c5920195d8d59047b6de5829690610ea5c28b
MD5 4b8142291eccfecfe925b2343126e293
BLAKE2b-256 6d398cd28d1f4eeffd5e24f86c06eb3915e06164be907656e082cfd3b47bd041

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-win32.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ddcc4f5881d482a146e7893266d429b2f81ca6ed0e9fb9721ceffecc2ce413b
MD5 cdacf54f7f32f51542f894d31c0a5697
BLAKE2b-256 56c3bf1127166adf630ab71eff44c6f1d52d372f11d0a3114f3a4304a9121f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f499b599d8d138fe5d9ee24f794e293fdbf1f6828361181753516120afaae075
MD5 e1e5e1181b10fea9637a0ef4350986c5
BLAKE2b-256 57c9c17f94f5dd6aeb318446ddb4484d1168c94b3b6573ce07d2c3c455630010

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcc2dbae468a5395b737cff5d6cf004ccc2f66559a20bb4fed3d392eb45fb065
MD5 91c2abf6f52d52c94441d2d334986e31
BLAKE2b-256 190527ff28581c27dd64e6b5f61ae387208eb010cab941ece41b5c29dcd8d560

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 449d32fcdca0a1ceddefa57130d096b818a5a582165cde909099b4dc7f5c14f2
MD5 a481493573fbf23bdacfe29a3fc91233
BLAKE2b-256 955dd26683d29fe92c766084fce9839e8c1bda3baf399a4f2bde46c5b1ad7c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce01eb8e824f3c58764f437b96bdb1b1caca72d17dd66f15377d58fabf1fda57
MD5 77fbf943db55b4234691644047ef8bc1
BLAKE2b-256 5fc3a3f47bf7dc545207fd2c69382ea3bbd9ca98ac06a300644c0ae4cb0b5035

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e83e4a9062bd1487593246d1582024e801d443d127e821da6be9fa34f714bf84
MD5 9450e8502c13cc37b8d1554d1c752194
BLAKE2b-256 9fb024b2c379984c666a62ba0999c255b2fe3551e52d403ea4f72dc11fa2889d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: thumbleweed-0.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 577.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 336abbb1784242671673c5a48e734c51f16dbf7e2f95eef92039540cdb410d30
MD5 b12ad0d3b148db857c13ed361f3ac1a9
BLAKE2b-256 479e42dde8e62eddd3ecd063be2bd6f107db8a6b17d1312e404696f9d63e71ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-win_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: thumbleweed-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 603.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 04bd9ec0a475f415b2dcf0be9cff07723f492cce89b6965fbf10484bf151ee60
MD5 d9937ba51da0ce2bfe4f3e26b86b887b
BLAKE2b-256 53c75dda7f69858ce55ffcefc5231c67a12a9621756153f1923adf3d5cc4fe63

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: thumbleweed-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 595.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 24fc16cb57c12015a01d273e6ca1907980158b41e68f22b939bb1fc49612667f
MD5 7931128779e6820eb64922fd0da1b446
BLAKE2b-256 111c99c2aab29d087a66f7978f944495c32b033db2f219e743711b9d2237ca9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-win32.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a608890eb3f02cc5aa5b90821e17f86576ca721273090f8a7a36854fd120b015
MD5 00a79a3da68a2053dbb8a5656bee7ef5
BLAKE2b-256 0a359e3fb228d39feb90d4b0080336fdc41935e54f1fb4512cccab8b0438266c

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec371b38435436d6911b07e1d527eab86330f0d813d08fd0e8b4bfc468926440
MD5 4cc7ebbe2e4b155cd4754ef3f871ab4a
BLAKE2b-256 dc7f341882da7b2ff59ce5cbf822819ae37360894524adbee8f6f1a10ca90b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2f88e5812f09c612e35d433743455ed9bfde86a01181792b6d785e0ae892ad7
MD5 d2eed0cc83ca1d0fd32e1a270062600f
BLAKE2b-256 614f491542cedd12c71e555c008d855c0cac037a41a8ac9704018f1ef8c542ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6520ac4910f2e51a4836b611be9641c98ae17f5153f54e9216708d1fd7da259e
MD5 7c291b9d07988dd9d5ff8fb348198c1a
BLAKE2b-256 33575cb8e0cbe3841a249139c439843319ce149750f0e112571f06ef49d8796d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4176d7d92719facc7feec210485a29960d476d5c886a38d8c6ea5dbd8c7f86cc
MD5 319b542234baa9b7edb2dd47f3f13ea6
BLAKE2b-256 44f7d38cbccb3e79f529bdce1291db784f36556407ab1d76d09ba2e993298009

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c61cb1863bb7db95b16e44610e5da4d132ebc2b7ad39bf743442d5fb8f47c25
MD5 ff11a59e9e61335fca5de1b1f8ffafc9
BLAKE2b-256 a7da80ecff7efc790386f5fa32fc8f5114eb79ff086e14bb9952e7797a072fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: thumbleweed-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 603.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7499ee52eabeabef9566be4f8d6aafdeab3697c1f08ec609f324bc4df9177006
MD5 74784707205cd3bf127de269415e991b
BLAKE2b-256 a7ee175c4c84760e7d9d126976e17b196c6450fc711649674c505ada26ef7808

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: thumbleweed-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 595.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thumbleweed-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3b1e85d6a79e6823c78a67abbf9bb3db1d95c57a882fc25a5b47e1fdabf9a541
MD5 82d1f2f96a1977d4a004b8d8920a4487
BLAKE2b-256 6fab9643d22b5b47039f52474ab5b23dcd053c07d9e71795eb60a1bb1237461c

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-win32.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83e42ca2669ff1aa31304e69d699f2e6fae53ce83b38b664ef65ae2402ea1ffe
MD5 3c2edcabb5214be6a9e92333b69f3a11
BLAKE2b-256 bccb8cedd72dd97c183ff86164c0980d7e3e10ec765e952745aa6d4c1362520d

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 798ea22f2984c0a6c79b22c65dd1c45e3bcf291f9fb5b51f60af710e13d63c05
MD5 b943a91d5669d5e126c7c77b1a22783a
BLAKE2b-256 1ae75f9ee502a629ab25cb0a2bec30cb367b155cc7e670f8c42c7411c57462d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7aec5782b3f507fcd4f1935cd9e0105471c973c0518dedbebd86583e421ee64e
MD5 7933637684efcc7f9650f845c493c3c6
BLAKE2b-256 e2ea24f2631d5be12370a811ac87228ea8f7841f9eaa4fc12a3f1b85dd55a80f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa88de46220ff5479b4f3939f8c9460e8cd70b43cdea017bdd3b7bd7046d51a3
MD5 351ed1c00c9ea75ad309448b4b7285e9
BLAKE2b-256 46dca17d3acbc900d2c71a060faf1453effbf49520cbdb7987eae500f96865ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6492c9a96f72d4e0648ad5ba315be01adafa191ff9557db9caeae60e45f6899
MD5 aaffedf0aec60a938df057b1195286fe
BLAKE2b-256 f524a1ec985f7758b374d38b9bdbbd75b477d79815cf481216b90f8c224d9d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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

File details

Details for the file thumbleweed-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for thumbleweed-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 345745ba73593a8fb45bafb90403a1b6396f4ae4339737a6d6e716e70eaf7ad0
MD5 6145fc638dfe0f0b13b127a8ed60c210
BLAKE2b-256 38df6324e9abda1e245a9823e1c9bd345a372fcac10a424816a10999e302117c

See more details on using hashes here.

Provenance

The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: build-and-publish-wheels.yml on New-Elysium/thumbleweed

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page