Skip to main content

High-performance Python wheel metadata editor

Project description

editwheel

High-performance Python wheel metadata editor written in Rust.

Overview

editwheel provides fast editing of Python wheel metadata and ELF binaries by copying unchanged files as raw compressed bytes, only modifying the files that need to change.

This makes it ideal for scenarios where you need to quickly modify wheel metadata (e.g., version bumping), change platform tags, or patch RPATH in native extensions without the overhead of fully extracting and repacking large wheels.

Features

  • Metadata editing: Modify package name, version, dependencies, and other metadata fields
  • ELF patching: Set RPATH/RUNPATH on .so files (similar to patchelf)
  • Platform tag modification: Change wheel platform tags (e.g., linux_x86_64manylinux_2_28_x86_64)
  • Python bindings: Use from Python via PyO3
  • Rust library: Use directly from Rust
  • CLI tool: Command-line interface for quick edits
  • Full wheel validation: Verify file hashes against RECORD
  • pip compatible: Output wheels are fully compatible with pip and other Python tooling

Installation

Python

# Build and install using maturin
uv sync

Rust

Add to your Cargo.toml:

[dependencies]
editwheel = { path = "path/to/editwheel" }

Usage

Python

from editwheel import WheelEditor

# Open a wheel
editor = WheelEditor("package-1.0.0-py3-none-any.whl")

# Read metadata
print(f"Name: {editor.name}")
print(f"Version: {editor.version}")

# Modify metadata
editor.version = "1.0.1"
editor.summary = "Updated package summary"
editor.requires_dist = ["requests>=2.0", "numpy"]

# Save to new file
editor.save("package-1.0.1-py3-none-any.whl")

# Or overwrite in place
editor.save()

Available properties

Property Type Description
name str Package name
version str Package version
summary str Short description
description str Long description
author str Author name
author_email str Author email
license str License identifier
requires_python str Python version requirement
classifiers list[str] Trove classifiers
requires_dist list[str] Dependencies
project_urls list[str] Project URLs
platform_tag str Platform tag from WHEEL file

ELF patching (native wheels)

from editwheel import WheelEditor

editor = WheelEditor("torch-2.0.0-cp311-cp311-linux_x86_64.whl")

# Set RPATH on all .so files matching a glob pattern
count = editor.set_rpath("torch/lib/*.so", "$ORIGIN:$ORIGIN/../lib")
print(f"Modified {count} files")

# Get RPATH of a specific file
rpath = editor.get_rpath("torch/lib/libtorch.so")

# Change platform tag (e.g., for manylinux compliance)
editor.platform_tag = "manylinux_2_28_x86_64"

# Add a dependency
editor.add_requires_dist("nccl-lib>=1.0")

# Check if any ELF files were modified
if editor.has_modified_files():
    print("ELF files were patched")

# Save the modified wheel
editor.save("torch-2.0.0-cp311-cp311-manylinux_2_28_x86_64.whl")

Generic metadata access

# Get any metadata field
value = editor.get_metadata("Author")

# Set any metadata field
editor.set_metadata("License", "MIT")
editor.set_metadata("Classifier", ["Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License"])

CLI

# Show wheel metadata
editwheel show mypackage-1.0.0-py3-none-any.whl

# Show as JSON
editwheel show mypackage.whl --json

# Show specific fields
editwheel show mypackage.whl -f name -f version

# Edit version
editwheel edit mypackage.whl --version 1.0.1

# Edit and save to new file
editwheel edit mypackage.whl --author "New Author" -o modified.whl

# Add dependencies
editwheel edit mypackage.whl --add-requires-dist "click>=8.0"

# Set RPATH on native extensions
editwheel edit torch.whl --set-rpath 'torch/lib/*.so' '$ORIGIN:$ORIGIN/../lib'

# Change platform tag
editwheel edit torch.whl --platform-tag manylinux_2_28_x86_64

# Combined operations
editwheel edit torch.whl \
  --set-rpath 'torch/lib/*.so' '$ORIGIN' \
  --platform-tag manylinux_2_28_x86_64 \
  --add-requires-dist 'nccl-lib>=1.0' \
  -o modified_torch.whl

Available edit options

Option Description
--output, -o Output path (default: overwrite in-place)
--name Set package name
--version Set version
--summary Set summary/description
--author Set author name
--author-email Set author email
--license Set license
--requires-python Set Python version requirement
--add-classifier Add a classifier (repeatable)
--set-classifiers Replace all classifiers (comma-separated)
--add-requires-dist Add a dependency (repeatable)
--set-requires-dist Replace all dependencies (comma-separated)
--set-rpath PATTERN RPATH Set RPATH for ELF files matching pattern (repeatable)
--platform-tag Set platform tag in WHEEL file

Rust

use editwheel::WheelEditor;

fn main() -> Result<(), editwheel::WheelError> {
    // Open a wheel
    let mut editor = WheelEditor::open("package-1.0.0-py3-none-any.whl")?;

    // Read metadata
    println!("Name: {}", editor.name());
    println!("Version: {}", editor.version());

    // Modify metadata
    editor.set_version("1.0.1");
    editor.set_summary("Updated summary");

    // Validate wheel integrity
    let result = editor.validate()?;
    assert!(result.is_valid());

    // Save to new file
    editor.save("package-1.0.1-py3-none-any.whl")?;

    Ok(())
}

Development

Prerequisites

  • Rust 1.70+
  • Python 3.8+
  • uv (recommended) or pip

Building

# Build Rust library
cargo build --release

# Build Python wheel
uv sync

Testing

# Run Rust tests
cargo test

# Run integration tests (downloads wheels from PyPI)
cargo test --release --test integration_test -- --nocapture

# Run Python tests
.venv/bin/pytest

Benchmarking

cargo run --release --example bench_edit

How it works

Traditional wheel editing requires:

  1. Extracting all files from the wheel (ZIP archive)
  2. Modifying metadata files
  3. Re-compressing all files back into a new wheel

For large wheels (e.g., PyTorch at ~1GB), this is slow and memory-intensive.

editwheel instead:

  1. Opens the wheel as a ZIP archive
  2. Copies unchanged files using raw compressed bytes (no decompression/recompression)
  3. Only regenerates files that need to change (METADATA, WHEEL, RECORD, and any patched ELF files)
  4. Updates file hashes in RECORD for modified files

This results in near-constant-time performance regardless of wheel size. For ELF patching operations, only the affected .so files are decompressed, modified, and recompressed.

License

MIT

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

editwheel-0.2.2.tar.gz (62.0 kB view details)

Uploaded Source

Built Distributions

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

editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

editwheel-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

editwheel-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp314-cp314-win_amd64.whl (891.8 kB view details)

Uploaded CPython 3.14Windows x86-64

editwheel-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

editwheel-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

editwheel-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (955.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

editwheel-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

editwheel-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp313-cp313-win_arm64.whl (843.1 kB view details)

Uploaded CPython 3.13Windows ARM64

editwheel-0.2.2-cp313-cp313-win_amd64.whl (889.9 kB view details)

Uploaded CPython 3.13Windows x86-64

editwheel-0.2.2-cp313-cp313-win32.whl (845.4 kB view details)

Uploaded CPython 3.13Windows x86

editwheel-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

editwheel-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

editwheel-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (957.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

editwheel-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

editwheel-0.2.2-cp312-cp312-win_arm64.whl (842.8 kB view details)

Uploaded CPython 3.12Windows ARM64

editwheel-0.2.2-cp312-cp312-win_amd64.whl (889.9 kB view details)

Uploaded CPython 3.12Windows x86-64

editwheel-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

editwheel-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

editwheel-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (956.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

editwheel-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

editwheel-0.2.2-cp311-cp311-win_amd64.whl (891.9 kB view details)

Uploaded CPython 3.11Windows x86-64

editwheel-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

editwheel-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

editwheel-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (956.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

editwheel-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

editwheel-0.2.2-cp310-cp310-win_amd64.whl (892.1 kB view details)

Uploaded CPython 3.10Windows x86-64

editwheel-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

editwheel-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

editwheel-0.2.2-cp39-cp39-win_amd64.whl (893.7 kB view details)

Uploaded CPython 3.9Windows x86-64

editwheel-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

editwheel-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

editwheel-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

editwheel-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

editwheel-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file editwheel-0.2.2.tar.gz.

File metadata

  • Download URL: editwheel-0.2.2.tar.gz
  • Upload date:
  • Size: 62.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2.tar.gz
Algorithm Hash digest
SHA256 80927059acb2e9e6a29464dd0904dea53637a357edcb5edafe1b8f68d5887f0f
MD5 5ec8c5419eb44806b89d0b283dcc8f93
BLAKE2b-256 1b96aad0cc1b1724ee2093649688a99c20ed3131167579d1ffee71f71aabde10

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3cf4f46556c57357ddfd3f6a604308462228cfca3f19c32b1839d7ecb84712d
MD5 5b3c2648ef7ddc8507e7737924aeb292
BLAKE2b-256 623e51cf482d188e017cd5e1705df69837121c1752919d2cbc61043390c009b5

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13a40b88d4be16bcbc1cf098b1d7d3aeb952468d3d7aedc26de9000373ade96b
MD5 4bf0991c61d677c7103b674d82f67686
BLAKE2b-256 a640274789a856a7e6affa5797d4c1bf8d988c75b4a316e9bc1524d60cc18c00

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a8492a4b575f4af6bbfe6a58b070173f38fceccc50973905d0cbd7c6763c7573
MD5 3d464d6f5c1533358898c9608015f9ae
BLAKE2b-256 28c2b673cc0d411eac4b2ae9683a02cbd102dcbd465c6cec0675b61b629901fc

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 485f42ac5181d1156d4b8907dbab5a9f6e3a3a3ad185471d2812c8732f83e507
MD5 a3617419744843450c0d6585614ff67a
BLAKE2b-256 f1dcfcb64aff7ef614085ec45580e88f60374bfcb1a78da8379b2273939be7cb

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5599cf6956e86b31e96f9ea2f63d4bc3e7b0b78a725b5912fd4e2288945c071b
MD5 ca3d7dff04a96ce1efce5edce9b683db
BLAKE2b-256 37cc9505b3e00a5704c34c4b90ed27fbd0603ae39cebe1d8981ce460d07d3dc5

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 261a0494fcca12c48ff85382c3e6dd7c9d69976291a2f5bf572fc655f86cf890
MD5 63101363a7b5dd3ee0bfbfc6ec78a6cb
BLAKE2b-256 5a7978d95725a4629f93bf32d6fd3d359b6dddeb194404c6f141bdaa793ff078

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 891.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b199c6feda85ee846c9633dc983e7e6c3a6a85f2d56647039a92cf6b61196dc2
MD5 0b11b3f27f3a829cc4e1098d0a59b089
BLAKE2b-256 ce7f88401cd2a1a6db8a63c3d09679cd774f6335a8cc8fa3a87dc608ce21b507

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b85b5e0607af9e7770ae81a1f011e80401a25ea6382fd80164bba9f2a2d3afca
MD5 5955c32ee5191f4a936b0e1724fc0c19
BLAKE2b-256 32cbc2283e6f708b81ec819672fb02bb8b0000f4e4b9cfa8740c30ece74eeb79

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ef3e62cd14e1b29d711ad29fe2011f2fd34ceb1414666de0403d1991cb0ca9f
MD5 b76d436da9f80d5c2e7755678a747bec
BLAKE2b-256 cf2ce523adb39360f19b94f931a6dc8d049475184d6c9607fe3ebba439b55f2d

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b91e15ad9cf10b773bfb77e462adf3f7412cc53f956c9c5ad98cd2e80bbb637
MD5 a7e30757460fe7f416a05ae70cda28c4
BLAKE2b-256 fe1b2de2431cc4f0f633cedc2a9275130dfd523fdd3ef74cee34cae850aca88c

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 955.9 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 605b7b67aab7e3c64bc79917991ab467645946f3b60c1ff4f4a3460e9efa042a
MD5 4dcc7b544a0f65e48a15cadcd9620886
BLAKE2b-256 25cb2737ab98f5bb784d4c709dc949aaa1745eec782954d53b1cd3d5b027b101

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f19e8de1764c10325d849a235f645732101e270f8bd29089cee49873e34e4d2
MD5 5ab45e48c129c6452278284edb998a06
BLAKE2b-256 640ec7081051a0d517c35167bb8ea1f91d6605adbb422344c16c09fc3134bddc

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ad6c16cd9d97e5ae72118f325f94d333d4b80fbc575f5aac0fcdc50dffcfac0
MD5 5126dc7bcc9f1075c9b87570f8e3b337
BLAKE2b-256 46886c4631d90af082a7028ce5ae5a2e9844a1b0e19f05f926b4753b333fd336

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 843.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a883668630469bc600884a23fd8b790b477b7ac4353746f907062b1238d12261
MD5 941eeaed3a7d67d18bd3a627195306a7
BLAKE2b-256 a974611f4a3320338dc66e5dcd8f6e67c40b9e6d37656a58adca4e0823b74618

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 889.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 97714ade9662929a65362159d0ab23805fe1021978dcf59b0ca31d3b5e9f2f7c
MD5 bbcb1bf3e7824410caf0ba55e0c2f4d4
BLAKE2b-256 a587e2d75d74aba2159c298dbb11c48f463bb08faefb70fd3c276b2f17dd1c29

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 845.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9139b1d81c272f878646d9eaa1d21e73b0107a685b1de40e2b7c5fdacb12ff78
MD5 97fe4cadcb4e96170e96f2b7f5a95c9a
BLAKE2b-256 52aa8bc1363c0557e0b578739bcbaa5e369dddcac4f9387c3a22a0e33c20f914

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47dbc15841d0050fcf6e65319b6e8108f0d1b9a3408be259653dc3402584ea39
MD5 4e355d403358f45428d94dc38d2ac4aa
BLAKE2b-256 f44c92c7f97a8a5985a89d05a601e886dfa23b5cedf4ba6342a54a3ee933a825

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17f3de500e84db881169004c4ea2f0a4a4eea4f792abea8964807b3cd710df49
MD5 03724adfd68a717a6aee8943aae8518c
BLAKE2b-256 80c7619fa7cec0776674af10da6eaba5480b6bff8222efc70de68cce830928db

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 317e2818984c422d27f765c7b4451ef41571fcdcf52c8f26eb4a780fde82926a
MD5 123f1df8d79f3448b44b4529a6471d04
BLAKE2b-256 d7e6c1a8521d4ecd6f5ebfbb5d5cdb633414fcc6aa66898f906956d045b004e8

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 957.1 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6b1301136c65e7e1a4795ae01807fba1d5b67aa1115826fd5277f3af2ebb17f
MD5 982b257f439eab7e02042d5c5771803f
BLAKE2b-256 1fee9f744ca3178c627555b511e597bfa117e9fe4203ad968991105c39ef985c

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4bf4b3552c219c9a455bbe239f7d408c116354d0067e7f4941c4d9098ee70838
MD5 4de741ad88d480ca4ea36c6467978115
BLAKE2b-256 bd021206a924d8944dfcaefdf00e68c1f1c76428f9a24e939ce2df7591bffed3

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 842.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a7fc50f7d83437445836f4aa1f992f6559394f682647e3e527ff6e5ab2625865
MD5 c74a525c19397b4b7422aa99fe0eb163
BLAKE2b-256 d50dde73ed69ea5a7e577d8c38a3dec0910aa4d74e01497cdaa8428e8f4e9e0a

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 889.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 49384c68ff44dba26654de876e3535f3b24385d555a129b1e6f2438d79cdf41e
MD5 5286b35d38fd02532214a43163864370
BLAKE2b-256 7f548c4aef2cbe9f19d9434592f552efc6119fbc649254f0b197dd5c21a02c04

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 928b679596da46b56d780495c8a407af1ff9fc2b9e68d8a36a91d65610457b45
MD5 47d8e2a06c8011f8c01c8ce2777974f8
BLAKE2b-256 3bb62a42550255719797fa09d8bf4833ec85039d8a91a6fa6985c3c3164f4623

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7bfd4ef705390c2a1d4174e9c3ded51c5a5b77631f0148069d7e098e1a073e0
MD5 79a9187f182339072e57e26a17b044b4
BLAKE2b-256 18aa0b5ea5206c4aa8748c96df195d4a40d1c7b3275386d993310b2ccb86690d

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 df051fc8f22add2751f864976c3966c883e98ef938d29a3288403a9310722b66
MD5 dddde535f879165dd455a8c37123a4d6
BLAKE2b-256 b2a93566358c2b48ad0a0aee6c3b72e60ff54f96bfc4db2d4c7aa2b9f835ab64

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 956.4 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3259ef847c8b3f4bd80ac84709275dfec8427c35d79619725469f8c5ff750a20
MD5 425b7fb51b4a37a0f3b501e3ad157478
BLAKE2b-256 53506205729d5c975c09e615cba51fa403a1fec08ce1321e01b84ec604f43ad2

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af79d3e8f719a2b4bb3165405ef50ff521e7bf2ec39c13feec210d60f92c5a11
MD5 8b0d2c197b512b3f880e96e00b3dac91
BLAKE2b-256 518483c6dae1e431094818833d9a1d079df0461ed0dc3d15c6224b8945a41e5b

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 891.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ff183e94b817fd8ac0e881eac1306df74debd15a088a2f066d77e585976c3e18
MD5 5060d1dec38a469c3b32a75ddfdccb85
BLAKE2b-256 3cb6312a5392f2f3560976fb4cec428acd72a21dc0afd4f7794bef65f379906b

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfb1705ddd2fe3d687c13d32fda233d88e3211b2daede1699f573238bfab9cbc
MD5 c2b2400d4c25e2547e046f8867e7a05b
BLAKE2b-256 8788af3c7068039866358b1412faf46262c85e98c393722478b58eade3d359c9

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a97e0f73c3989584a636b4a843a08e1a2d2d1720bf934b659f1f14c10aa434aa
MD5 d92b492e120737ecf02d5c2c0601eb7f
BLAKE2b-256 30ba996b0d1e1f7e1be1b3ece58d43eb7c478b8eb15a3fb4feaf974ec72f8857

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d75f606b91ac3da79a936e8bc339e3c8966e88c431622e69191a03af3963c820
MD5 3564648a4d80e556dee1c4bcc7e6102b
BLAKE2b-256 d332f4330c5410362c0a536af73a4029140c62d4fd84f95698a7cf77ac431b06

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 956.1 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 558a463e23951e39b49b3e35b8da2238f6315896a753f164aed01566e34e87f7
MD5 f84878ead5e1dd0b9552a9f430d2f2ee
BLAKE2b-256 956f93c47bb553b93096d197e5f8200a9ebd49361f233225f4af9661d6c62b5c

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b020f226d9d22c72558aa20a220ee500d0b17d9e867b2932f399905743ea6af
MD5 7b6ac13ab243c72183dd5b17da18d199
BLAKE2b-256 deb5dbec6003500b70ef9ca0ac417710bee4ac6ccd6a6ab9b39a6801a6909958

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 892.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2495117cacec331540a0f93acf925259d6c742b60cc8fcaf5deeb0879b998291
MD5 fa9fbc56eb2cc27fe78146344903c2f2
BLAKE2b-256 da16a8f4a553005c2500f218f4fc58371756f72a4433af7a863eaf78c9c8b22f

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23477db0860be0637a88ac7855bbe8d418788c2472c22bdada796f62013f3b0c
MD5 f6dfcdbeda6491065997e1eefbed857f
BLAKE2b-256 e125bffe9eb5cb7d3e4341b530bc87a9df8f944b9210222a61daefe939bce9d6

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8171a41992e4ee73d21c613cb888e531685d1b4983af767a499e07055e808c9
MD5 e636c9c43e58a68a3dfd28777e092b23
BLAKE2b-256 129834df779bccd578da7d0b37cf8b5f314684f50db1a1012c64559049b40e98

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0642d5402f67300dc3592266f45d33991cf7c185b9be1b4bb0b18dd0b0778781
MD5 073744718d4cbd29a9d86406b7f11390
BLAKE2b-256 559e239675201af87f59880d9a7337f6c13eec6de4746425b537b019a52a97f6

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 893.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a6b2a5a4e2f7ab6440055903bb0350cd6ec12aba527c7e602a32bff21c98f61e
MD5 de86792ed708634aa4858c3fc8d2c711
BLAKE2b-256 d3713b6d30a3b953763650c63e0fe368aa5c5cde4c4a58ee8bb0373aa404c19c

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5aea21e2c3c2f03d7fe1cff27097bb3f05514fdd3c31c1eec353118ffaf7dd80
MD5 987b7ce80ef2ba939da78621c1a50303
BLAKE2b-256 068c0e7e1dd13f4e0d4af6e4522242706e9b85d6952d99da90cc6e47a8f1eda1

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 097b3e76cee40161d340db829f932522e315827d12e0ac4c13d711c5dd267c80
MD5 399bae1cf1bbfe1f32b55460cbddc270
BLAKE2b-256 61b62d5de90425d177b9b43e4a58d6f29066f54fff50805e1fd09cc91ea6220b

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 725d91774943f26cc7d0224fb695ce82ec90319c6ddeb590eebfe8a9c667608a
MD5 acf0b07d48ef55a0887d47e4079fe90a
BLAKE2b-256 04ed03a1d86d60775165d3c602d7b8d8efae6f4d082c83075f9a2e3bf4a69632

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67bbba07d0385c30354f2211794043abfd54aacf829e1748b147f71bd4670a0e
MD5 0c9b8728d95fdd385dff0b00f67d458a
BLAKE2b-256 ede434a1f6296caafaf7d4405b58b8d635bfa98216e8c95ae5c103e0d29a86ad

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f2bea0b88f6147455679246b989450a1e0c4663667d833a1420be8b09d55b4b
MD5 e2735b4470bf04b5ecee12cc1fbc61d6
BLAKE2b-256 267d5037181e303dbb1f69dc7ae50ae83b0b05e2e2b4bfed009a4543d76e25e2

See more details on using hashes here.

File details

Details for the file editwheel-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: editwheel-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for editwheel-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbbbb2e78bc80c9ddbc36aa47af393d0ec4a01cd4ac3b6d146df12ec17580c02
MD5 366447d487d416c4762c4505fc085d6d
BLAKE2b-256 c8ef646ced49406723aa3b0d22898f905faae2d7a3ddddaf599d57bf6b786177

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