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 and Rust bindings: Use programmatically in your release pipeline.
  • 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

Install using uv:

uv tool install 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
uv run 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.3.0.tar.gz (71.9 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.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

editwheel-0.3.0-cp314-cp314-win_arm64.whl (868.7 kB view details)

Uploaded CPython 3.14Windows ARM64

editwheel-0.3.0-cp314-cp314-win_amd64.whl (923.6 kB view details)

Uploaded CPython 3.14Windows x86-64

editwheel-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

editwheel-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (990.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

editwheel-0.3.0-cp313-cp313-win_arm64.whl (868.3 kB view details)

Uploaded CPython 3.13Windows ARM64

editwheel-0.3.0-cp313-cp313-win_amd64.whl (923.9 kB view details)

Uploaded CPython 3.13Windows x86-64

editwheel-0.3.0-cp313-cp313-win32.whl (873.1 kB view details)

Uploaded CPython 3.13Windows x86

editwheel-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

editwheel-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (990.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

editwheel-0.3.0-cp312-cp312-win_arm64.whl (868.5 kB view details)

Uploaded CPython 3.12Windows ARM64

editwheel-0.3.0-cp312-cp312-win_amd64.whl (924.0 kB view details)

Uploaded CPython 3.12Windows x86-64

editwheel-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

editwheel-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (990.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

editwheel-0.3.0-cp311-cp311-win_amd64.whl (923.3 kB view details)

Uploaded CPython 3.11Windows x86-64

editwheel-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

editwheel-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (991.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

editwheel-0.3.0-cp310-cp310-win_amd64.whl (923.7 kB view details)

Uploaded CPython 3.10Windows x86-64

editwheel-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

editwheel-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

editwheel-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

editwheel-0.3.0-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.3.0.tar.gz.

File metadata

  • Download URL: editwheel-0.3.0.tar.gz
  • Upload date:
  • Size: 71.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0.tar.gz
Algorithm Hash digest
SHA256 d4db340ea68ab3daecf29d1f963f85e11ae89450529f3168a9694f13056d8918
MD5 b12e620a682f398db64ae5de00d66ffc
BLAKE2b-256 64e2d12b22ed7cd0c40e2ad4aca28f93e1c5c4f924de97010db7d6d197e58f5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0834b5f992a4f59025b3ce64480d9448cfc7c4d9ac1c41319e2747604f6a728
MD5 79c3f1db5403eefc73715407c205abf2
BLAKE2b-256 5647a1ecd05413e677078c1f8fc466d88ed7146ea97b27034630e966065e7485

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b6d9bca5669328d309b555967c9dc2bf156d87785f0a0623b340c68b8e1a744
MD5 c6d573c7962976815b02d6ec821d3a5c
BLAKE2b-256 669a5282e26655229b773facb9b2c1c536fb81cf944c520c7dfd0375d17c1b8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c598dc794024edb7c3b216a4676ac61ffc0eb387f07a32623d7538617bd8f10a
MD5 f1385b231813021a0b9fcf546cba8f21
BLAKE2b-256 be3f81d9ed7d7cb0581a2ac9137aef5933dd32b9d4e1cd8d1c6048f9f6ed52d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88098f7fc13f48005a1b64b20ab5baadb3535c806ced3587a03a4981dcbc4266
MD5 dea68e94cb1d69e3df50c9b07b8c5202
BLAKE2b-256 b1d0c65f227a9e6b0f5376dab9c86d69e415dce24fb13c5679f156c54f8a07dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22585fafc8c45d267c30d76d32c2cc84bd2b044e72050165a5a5c3e5af4cdd56
MD5 8a8a34862d0dd5c29c2d402701c6eb78
BLAKE2b-256 3f6625a78089640c8873917e0720ff50bbabb1c8c5220141acab2fa26a59f699

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d97dccffadc44ed29a022e737fcb0fd69570a58d591ff252c4a3b27c28cb7eb
MD5 2909fcdb8c09d58c2fe7021b96a68596
BLAKE2b-256 ae30cc3a1599157991460792aee937344f5a089967e697e1c56c051cf97e85ef

See more details on using hashes here.

File details

Details for the file editwheel-0.3.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: editwheel-0.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 868.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e4a71bd917e8f00b8d3aa728b9c3b9ef5807df42958ec12df275517eeeb2e253
MD5 8ced210365bc10a842608d49b9d77ab6
BLAKE2b-256 c2c5102e8e042d970907ee75e0418023fec76d8d4dcc27cf279b4e5b2785ee68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 923.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 26f72215c669b12dd7e3cb46a5cd8373307f2d696abea3ed89778262f1175c31
MD5 f020ff756de7ef202d9e4d3f6ae35d09
BLAKE2b-256 7de09b98cc59dd613caf6d13f48f30030d51e6cdc627a7a709a0500675e38208

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51d9885793bda129a649e9de2db328426e7fbdeaf3eea632787027d24c10cbf2
MD5 cf8cf4d4c2507586e513a3027a7e4ca4
BLAKE2b-256 667467ab0a63d53c25f194550927283947f1f03166bb8d3a7e1d366378fcb17c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6df0e1cf67dd2e3567fa93fd8d47b1a941b34efdde8e594292e7749e50783c4
MD5 ca42fc66443cffece2b9a7cb496ab7f2
BLAKE2b-256 604a92822d83eb6a6e0bf6eb1c0e0adf6c670f8dc9b283a038cfc8588206dad3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bdadae821fe70f955ce739a9a9332fb9946020ba8f0916cbfa5663d1c456446d
MD5 6e894c0cc5589a13c212e10b55e7827e
BLAKE2b-256 2f31d9ad6294a0173feb364d78509d821d9ddc97c89d4aab6149e26abe131d8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 990.6 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8de72b8a61d9c8ac23714ce4e01615d99b71cccd7f35bc7b7031529fe5feb8f3
MD5 38bd7a53c6d8b840ebea4993e2bc3805
BLAKE2b-256 7e5b617d4f251de662f69f21b34c834293fb74f033a12f6ff66d5be283668515

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fc68eab99bb29f0365992e882e1037f847ebb38ac21f719d547541d2bb43a18
MD5 7b778ee8047366143efcb7a8db1419b5
BLAKE2b-256 6c68df2e1b5bfd23aea52c0eeb13fea26ae97714ef1213abcff7ecf2de30eeb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33a7d5922ea9191ab638d00d70baa7560c8342553f74e069392b9699fdbdd8d0
MD5 448ccd12ed47f97d68bc14efd69e3c8f
BLAKE2b-256 3cb94754ea5ebcc79d5a6959be416fed46e91e131226932f8ff5b1aac56c0e9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 868.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e926fc64db1bf675c73edc7c6c518977b4d2bd242527386785268c4c8f332533
MD5 4baff491e689d40379fe3a8f9e12affb
BLAKE2b-256 12863cc319cf7a22909feee6f33584baac7339177826b843a4a6431091dc36a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 923.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6d3908c1abe164d6d11fd0016de316419e934e92cca7f1f5164c774acbf8b557
MD5 ba29526a86820f0ee3e55663b0c6de4a
BLAKE2b-256 91b85995d55a12646e59eeebee3d55980d8a9903d43e86110663ca292847d2b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 873.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 44bd204e2d244d36301300032dc7dfe25c9e482f48f1d28b592a3e96426cd110
MD5 c882fb3a5fa1762742748953a7056fc8
BLAKE2b-256 3276303ad7b5b91d36dd1f58296b3c86517ceaca08ff0c3f7278961acd556b64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 010075b135075aa05922dc357f037caf962250702e58df28893d685cdff169f2
MD5 470d6cb5245c43fd3a40e9d2836a69a1
BLAKE2b-256 4987959dbf65845169db26c1b839c40baf4944064a3505db20f4f1e6a76da145

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 940a2eeafb581ae2b8773eb692b2224208ba57d1a8e51882672b19660b10bc36
MD5 88d56b0a28efbaf7516eb1c4feb036ad
BLAKE2b-256 366ba91206b4637ce45776afc38edad721b8ce18a8eef437bbf1e6796d6367cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0df0a0498e40a28d7c972aa564ed2b26529d58b40243b5b422574951767e5aeb
MD5 219edd1f1af64eba094e210ccd97a628
BLAKE2b-256 23f1d4bdcfcb6832cc163f13e6ea88c035fa8914312aaefad3fdd16e67b294bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 990.2 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48bed857dfe82d483d534edece9d5831e699fcf82c047df8b756fb3e856aee4f
MD5 2cb5798a96ea2b5e572dc3799c03458f
BLAKE2b-256 2bfb88d10593df671b7bee2b1c3f688daa602bccb08546a4213262dbf8a77f01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e931d8137c96c21b2c52ad2ee2f17883d04cf22e83edf063a7ab956bb14326a
MD5 ec596a9be78df04cec3deb6bc572485d
BLAKE2b-256 3fa2c4815fb33455f134ba2ba07700d1ac1c47b99e57ec6658f793aab0030b1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 868.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 081e45f9e5d251464c390e9deb07da41ce652942764f06bfe75593a45a44d560
MD5 d4e42a794d0fa718f474b6c3fec29ddf
BLAKE2b-256 467683349e953f3639a1f08a62115db0075fbd44af7f8057c91acd9f63253d0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 924.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ecde97757493e719dc0bb6db92243e2e8c2527bde8ab3608b61cd7db9662d147
MD5 5361e5b6358ba2842e0b57931bcb5ba2
BLAKE2b-256 7fee465ad31b885576c9a9d7921dff4ee6a1f1eb80de8f7b0403d729421ca70b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 460fa76c10cd6fb44dd142eedf680664028d64caa80b31a6d6d7c9edad0ccbd9
MD5 b3888590b6c6a8c0fad973ff551eff55
BLAKE2b-256 560a712abd3a2eb73c3b5cff32d477f4d7c86b07800f9fb73b80af02489af68b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9104c14e6755612c43cd35d3e3eb922a58457b418bb49719cf03ba3e3b74891
MD5 c62ddd9672c8cea065694d0d587192a9
BLAKE2b-256 b920ec03dc5f16d55f8cb94b8a51186f8d149561fc07794d47abd6e067e0998b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 340d4f8423b3939d696aeb78f1d71773dd37fe5a0dcf11bc4d57061cb19f12ea
MD5 0f7855610c82de0948047997d122edf3
BLAKE2b-256 61b71545a399091317ef87107460b2082992e25816ddaec2863545c4e092b5f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 990.5 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82214827f36712431e732373e702fa7270d2a1116146248980020d18ff49f7f9
MD5 924f41eebb7b065aa613f7a7a78ef4ce
BLAKE2b-256 01e47ba8325205883e91121794591f42a986b6057d6d616a712d7aefbbc44f5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1df69047d5937f8194352f59de1bc154774b799fc0f2c19f6d9af4974437d0cb
MD5 f7d834fdbc4fd7561ff5f2f13715a7df
BLAKE2b-256 14c09ef426a0c968e0d3187a4fa8ac7fc64853c1769e2f5241068a03118aca25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 923.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee188f0390bddfc23e517be3908f116b3f654a8bfd46f9dbe4b12f269f5e417b
MD5 52760971deed0fa9f1bc9149536b566b
BLAKE2b-256 582c7ed0125eafa6dcdfe39f63133ac92bd4d409d0490d1c3e1f7c9436efe50d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0226a276bce81deb240616c5ad1b66f4fdc7772780281e502e10747ed82e2c96
MD5 262761872b811269bb41298fa14a56ff
BLAKE2b-256 46d8247fe073797d43bd456dbdb8017b0a8310b298372f8fbe01732d14c0050a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4db238d88ff3af0cf3f7ee87d27bec59e45313a817c9e11ffd15e3367d112312
MD5 f028868aa917e6b2e728fc3b0dcac248
BLAKE2b-256 955932e96877dd7478a6b23f20d2489b95f8d3728fe78c3f6ac7e7001ad4e489

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d3ff3260cf354c645996e48a9d76cd92aaca5b5a237e3257cb3fa689b669efe
MD5 3ac57069ff7da893c3b5168f7e2340d8
BLAKE2b-256 9d7a4fdc58585b21218c9e954876d00b0c6be37cf48fcd5c3680b7ab02a5c129

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 991.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8e4a6466ea9a2130bcd31f337f11e5fa3280f796698e0ea4b1244319a45908d
MD5 7d73f0e31d3d739657f0630c90bfdb12
BLAKE2b-256 6447b18551205601a61ff1139c91e6bfed04e4995559b845682120dbf50b9a74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47c2f4ab04ecc70ba4020e27d177ee4bd8fcbcb331a5408565beb15b668240e2
MD5 fb22dcaa2fe7e87bd2ae49a114feac88
BLAKE2b-256 204023513968b0947f6159099a925c9e09ffaa36ce2d642452ad64121da53813

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 923.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c1db9d45aa736f234fbc24fa5f945d584e55c6c28a006b63407c1adb42258d5
MD5 caacdcef76b7ebf766eddc5086434f89
BLAKE2b-256 054796f4164d47ae2c1c5bde7e9560fefeae59bc8cc5ec3cdf6454320fb93263

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e09258a9a1a49dfcd6be62f890cdffc58b085b04595ddc9ba11563a0348850e
MD5 91a64462996f0bf0dc3b412775e73f18
BLAKE2b-256 9a4639ed414666f04f8ea0fce17002c16e4bd196ff8238b585d66e5f402a16f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d7b1ed95eadc1cfe01010e353d37805db0dddaebfe0a01b17ec92e158135f06
MD5 14c4402a7b372f2e0bf77874121721be
BLAKE2b-256 2b97060f0675438bddb04db7b2d4ba3437dba104768eda032fa8cb4db71b56ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffa288fa3fb0a2dbc29db957c105a2e6b54a297497243f59c40b902a6df46d2d
MD5 48066142a620445ffeec5f5e27f04960
BLAKE2b-256 746843011b34a4ca0d0ff166fda1919eab6654d22678947ca24512f103a4cbaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b346d8360cbb0857af02d1a35c2954e3b7e0e3256a478a898060f14c3ed191a5
MD5 a100ffc7daa055e06ba762f4648a7daf
BLAKE2b-256 96cfb81c6509c0cfced8567a626f7662dea20d464e9a0a5f6a509b580a49353c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7908b751aa3cbe793ab2e7b17c803eac5cede1f97651021840ebbe089ada0947
MD5 5a8c02e81e3609d461c46c64a1616e67
BLAKE2b-256 5f52fc0beed60cbace656b02720497a1a96f7eb640aa46b4418be6c25df16ec9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9851165afb685398d805bde6b3fbf352d0fccf99dec01ea93a934b7a920b3e0
MD5 d87ffdcbcbd1db3c6ca21faa5a7dcc30
BLAKE2b-256 09c10ca00ff130c00817ed9a4d2d0e143c4d9f55b354c10a7e61b81367d0703c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce2bf5e79f779cb4e81650ec5ae144feec58130ea13f7aaa914b70f2e80c1a46
MD5 6614964fcca52ff7d0546aaef84af04a
BLAKE2b-256 cbb63e7dade7b528f2d379c894e70f8c8689a5313727c8daca6db409d4e3efe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e4f5eea297678693ae40d8562ea7abaaa671b4aa872e0c2b236dca9b0d0495b
MD5 bb954dc2ea6bb416424e30838e439677
BLAKE2b-256 d759b117ebbc2334a9e0f3e8242a62e92c1831df6caee03df4e4e11993d25f94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: editwheel-0.3.0-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.11.8 {"installer":{"name":"uv","version":"0.11.8","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.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 135a5637f88bf27c8204fb209420f3839cedc451a8feeae4c58707daec934352
MD5 ef248fd1d0033f1cf22ad87055e8e09b
BLAKE2b-256 5061f5a8a1e4f861ddaec578fe2f2b3dcc21cd005cfd2d8cc201c39fb66b7da3

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