Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

wrapt

PyPI Documentation

A Python module for decorators, wrappers and monkey patching.

Overview

The wrapt module provides a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions.

The wrapt module focuses very much on correctness. It goes way beyond existing mechanisms such as functools.wraps() to ensure that decorators preserve introspectability, signatures, type checking abilities etc. The decorators that can be constructed using this module will work in far more scenarios than typical decorators and provide more predictable and consistent behaviour.

To ensure that the overhead is as minimal as possible, a C extension module is used for performance critical components. An automatic fallback to a pure Python implementation is also provided where a target system does not have a compiler to allow the C extension to be compiled.

Key Features

  • Universal decorators that work with functions, methods, classmethods, staticmethods, and classes

  • Transparent object proxies for advanced wrapping scenarios

  • Monkey patching utilities for safe runtime modifications

  • C extension for optimal performance with Python fallback

  • Comprehensive introspection preservation (signatures, annotations, etc.)

  • Thread-safe decorator implementations

Installation

Install from PyPI using pip:

pip install wrapt

Supported Python Versions

  • Python 3.9+

  • CPython and PyPy implementations

Documentation

For comprehensive documentation, examples, and advanced usage patterns, visit:

Quick Start

To implement your decorator you need to first define a wrapper function. This will be called each time a decorated function is called. The wrapper function needs to take four positional arguments:

  • wrapped - The wrapped function which in turns needs to be called by your wrapper function.

  • instance - The object to which the wrapped function was bound when it was called.

  • args - The list of positional arguments supplied when the decorated function was called.

  • kwargs - The dictionary of keyword arguments supplied when the decorated function was called.

The wrapper function would do whatever it needs to, but would usually in turn call the wrapped function that is passed in via the wrapped argument.

The decorator @wrapt.decorator then needs to be applied to the wrapper function to convert it into a decorator which can in turn be applied to other functions.

import wrapt

@wrapt.decorator
def pass_through(wrapped, instance, args, kwargs):
    return wrapped(*args, **kwargs)

@pass_through
def function():
    pass

If you wish to implement a decorator which accepts arguments, then wrap the definition of the decorator in a function closure. Any arguments supplied to the outer function when the decorator is applied, will be available to the inner wrapper when the wrapped function is called.

import wrapt

def with_arguments(myarg1, myarg2):
    @wrapt.decorator
    def wrapper(wrapped, instance, args, kwargs):
        return wrapped(*args, **kwargs)
    return wrapper

@with_arguments(1, 2)
def function():
    pass

When applied to a normal function or static method, the wrapper function when called will be passed None as the instance argument.

When applied to an instance method, the wrapper function when called will be passed the instance of the class the method is being called on as the instance argument. This will be the case even when the instance method was called explicitly via the class and the instance passed as the first argument. That is, the instance will never be passed as part of args.

When applied to a class method, the wrapper function when called will be passed the class type as the instance argument.

When applied to a class, the wrapper function when called will be passed None as the instance argument. The wrapped argument in this case will be the class.

The above rules can be summarised with the following example.

import inspect

@wrapt.decorator
def universal(wrapped, instance, args, kwargs):
    if instance is None:
        if inspect.isclass(wrapped):
            # Decorator was applied to a class.
            return wrapped(*args, **kwargs)
        else:
            # Decorator was applied to a function or staticmethod.
            return wrapped(*args, **kwargs)
    else:
        if inspect.isclass(instance):
            # Decorator was applied to a classmethod.
            return wrapped(*args, **kwargs)
        else:
            # Decorator was applied to an instancemethod.
            return wrapped(*args, **kwargs)

Using these checks it is therefore possible to create a universal decorator that can be applied in all situations. It is no longer necessary to create different variants of decorators for normal functions and instance methods, or use additional wrappers to convert a function decorator into one that will work for instance methods.

In all cases, the wrapped function passed to the wrapper function is called in the same way, with args and kwargs being passed. The instance argument doesn’t need to be used in calling the wrapped function.

Release files for wrapt 2.4.2rc1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for wrapt 2.4.2rc1
File Size Uploaded
wrapt-2.4.2rc1.tar.gz 169.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for wrapt 2.4.2rc1
File
wrapt-2.4.2rc1-py3-none-any.whl Python 3 none any Details
wrapt-2.4.2rc1-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
wrapt-2.4.2rc1-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
wrapt-2.4.2rc1-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_riscv64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.4.2rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.4.2rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.4.2rc1-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
wrapt-2.4.2rc1-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
wrapt-2.4.2rc1-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
wrapt-2.4.2rc1-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_riscv64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.15 CPython 3.15 Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.4.2rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
wrapt-2.4.2rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
wrapt-2.4.2rc1-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
wrapt-2.4.2rc1-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
wrapt-2.4.2rc1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
wrapt-2.4.2rc1-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_riscv64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.4.2rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.4.2rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.4.2rc1-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
wrapt-2.4.2rc1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
wrapt-2.4.2rc1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
wrapt-2.4.2rc1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_riscv64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.14 CPython 3.14 Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.4.2rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.4.2rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.4.2rc1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
wrapt-2.4.2rc1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
wrapt-2.4.2rc1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
wrapt-2.4.2rc1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_riscv64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.13 CPython 3.13 Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.4.2rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
wrapt-2.4.2rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
wrapt-2.4.2rc1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
wrapt-2.4.2rc1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
wrapt-2.4.2rc1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
wrapt-2.4.2rc1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_riscv64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.12 CPython 3.12 Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.4.2rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
wrapt-2.4.2rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.4.2rc1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
wrapt-2.4.2rc1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
wrapt-2.4.2rc1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
wrapt-2.4.2rc1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_riscv64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.11 CPython 3.11 Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.4.2rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
wrapt-2.4.2rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.4.2rc1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
wrapt-2.4.2rc1-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
wrapt-2.4.2rc1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
wrapt-2.4.2rc1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_riscv64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.10 CPython 3.10 Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.4.2rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
wrapt-2.4.2rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
wrapt-2.4.2rc1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
wrapt-2.4.2rc1-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
wrapt-2.4.2rc1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
wrapt-2.4.2rc1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_riscv64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
wrapt-2.4.2rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.9 CPython 3.9 Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.4.2rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.4.2rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.4.2rc1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
wrapt-2.4.2rc1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 17.6 MB

Release files / wrapt-2.4.2rc1.tar.gz

Download URL wrapt-2.4.2rc1.tar.gz
Size 169.4 kB
Tags Source
SHA-256 checksum
How to use checksums
d43e17197b226a1319d86219a27da1630752c78dfad4dec11e5f136ebbbe21e1
BLAKE2b-256 checksum
How to use checksums
6b9ccc1f39a0cf0d90528e77c2ad4d7d66351306d2a49eee617d58f35ccf0395
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-py3-none-any.whl

Download URL wrapt-2.4.2rc1-py3-none-any.whl
Size 76.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
badbcd8752cdd993ac033d9aae3f07b2f9e29d18215203ca9b9287cf0840537f
BLAKE2b-256 checksum
How to use checksums
82ee5622df0a160248ff0798f0be4cb7c688626083a9d5844c8dc6dde97a2a51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-win_arm64.whl
Size 100.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
9af63b1160248cc16260359a3a97123acd1bed346213900d302a6c5dda8ea829
BLAKE2b-256 checksum
How to use checksums
960ab899f1de20d033d68f8340a917487aa4ef14404fa8fd4e2cf8fc110a95f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-win_amd64.whl
Size 104.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
b83106fccc014525659aa259f02cf172367f5df6398679f91ba9e4193df6e396
BLAKE2b-256 checksum
How to use checksums
0f419863cccc24161ede502a33b1c194b8569f0ab4731c472cb4fc2f605e7ed8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-win32.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-win32.whl
Size 98.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
d8c827349290c72347afaf87cbef56d0977b6c2d5477f912b5a63dabf8566254
BLAKE2b-256 checksum
How to use checksums
e649a2fe6dcd54a4962fbcbac449e5570e2cff6a5f1dccecd32fc8b09387a389
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 275.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3da32ebaa1651964a2292a4d600451de8f9b67fc48fc0281d48ecb70b8f5514f
BLAKE2b-256 checksum
How to use checksums
4252460b1492e60211188ae33027520ce36c653f73aafc10c1969700fb198895
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_riscv64.whl
Size 256.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
5bcf3c4a22d6046211bed4c46133a4114959d31281ca8b2bdaa32ea043d8c248
BLAKE2b-256 checksum
How to use checksums
ebb7517d6c946e6ad06557a8efd918070da8cc1226d1db7386d542ecc610251b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 285.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b32ae39330af5cec7fcfe8a136f8798fefbb5b9d11925d7a8aadf40b23ee09ab
BLAKE2b-256 checksum
How to use checksums
be3ad2f50dafb1dd9a41e2fd7f11035e1ab8f7a18b41462ef30c96f8a5991cc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 259.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
d1d8b6243dff8312efb5f76c4d31ce8ec5821fd7168ff06d312979055ed2bd9c
BLAKE2b-256 checksum
How to use checksums
f78c01d5c48e5afe9377e38123c8f3966308f60f44ba4b5c0f88583c3dda0193
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 290.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
373dc273fbbfac8c4f9ea4201fa00125a2df1fa607c5bf2a6a5b0c3de10752b0
BLAKE2b-256 checksum
How to use checksums
aba658ea8d96274bfa61f3c04d057f1123e916b09c075673b4ced5d0d5510775
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 280.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
af16a801abfbd988927e37d048a57c4a66abc2d98d0aaf4c5b7cb391aaf6ff2f
BLAKE2b-256 checksum
How to use checksums
8fb44c574e9f2fd4e6c4dcb4b09c03963b88bd191d084515e6adee982f990fe5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-macosx_11_0_arm64.whl
Size 104.6 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1fa3e14f44ac1614dfd5f1f28d921ea64c0eb19bc88954c47ebdab3173e73f08
BLAKE2b-256 checksum
How to use checksums
f7fbc571d0cb0ecd6db966f082485b188e3e79fae03cedbe89278cd08ef87d61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315t-macosx_10_15_x86_64.whl
Size 104.2 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
9a98d935c00f8302df2a9dd13c8e807fdd41a4214b05e47e9b74e132e38dfd3c
BLAKE2b-256 checksum
How to use checksums
934cf9f4255ef44a3f634861c7edfcf7074d1a7d5cd88378bcf32ca0f6698be6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-win_arm64.whl
Size 98.2 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
3a462fb3c3613d33837e7fec94b61d0ee5c1a2da0cab55906546d6d403d3ed1e
BLAKE2b-256 checksum
How to use checksums
b87184e6e6b9b35753ceeb04e52744a50b0b5536ed308ad353198b7ca4016671
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-win_amd64.whl
Size 101.1 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
41c01b4981ea24d7e07e4989f969c3f24bb5c9a5bc247358c231fdb5ef89243c
BLAKE2b-256 checksum
How to use checksums
6b69afb03a0ca678a2510a5957417c9461b6e306ebe53019432f3cb0c052e834
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-win32.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-win32.whl
Size 95.8 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
ffc7b28ffc640a901ce61c9caba12503939d8d621a6a420b208a957cdde71224
BLAKE2b-256 checksum
How to use checksums
da2ed374b5c8473d1e3335c1b319e15bdc74978062c814384eee34ae9820d9fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_x86_64.whl
Size 232.7 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b2ddecfbaae70f71c9f3aac3bb1091358ce41b9e3672ca6f68846df5365e3fed
BLAKE2b-256 checksum
How to use checksums
7231d663251dd2c33fbab718f4fcfae0395b45c4087b659b61ac2985b292eee1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_riscv64.whl
Size 223.1 kB
Tags CPython 3.15 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
980184f72602c145afc85686c272bd0d333b28939587c7e8f6f715f57187f65b
BLAKE2b-256 checksum
How to use checksums
c70b239b264a22ec4070dbc6adfc430efeb6cf74ac4cde258d4d2a3bc36d0778
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-musllinux_1_2_aarch64.whl
Size 241.5 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f40e6f8edd47cbd1d76786494062ceb5a56e282f8d0aa4080a1867ed25200a9b
BLAKE2b-256 checksum
How to use checksums
a4343db3ecba751c2286d61a048f6ca4848d8cc7c0c318f24cca8f9792f37108
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 226.2 kB
Tags CPython 3.15 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
9037074019c3901be0f8b143bbeece1063a4b66ab8a8f122fddbf92857fae052
BLAKE2b-256 checksum
How to use checksums
368109d2d7d6f153adc48e1217160ef215f9ecdfda286401379094662bd28786
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 244.1 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ac1a9ef4cba851af38998a9517848835bdacf6a2177381887d8c164b4ace8fb7
BLAKE2b-256 checksum
How to use checksums
cf8329205bd2f10b059b62afc20f8d8bcae69bb8aecc470e890e37bfc6800732
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 245.1 kB
Tags CPython 3.15 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
9e3c5938118c6cfe24b11fe4959c04ca689cda777b5fcba094d0d3390bebeab7
BLAKE2b-256 checksum
How to use checksums
de5ba934b34af4501b789d3f6eaf71e7ccc3c1296cf3fbd4244b8e0d761691f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-macosx_11_0_arm64.whl
Size 101.1 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
942dbb47b9ab028e95d9e6fccafdcc92b5b932f9e697f8b0a6c4635a35ba33eb
BLAKE2b-256 checksum
How to use checksums
30616873cb98f32d9422cdac2c0ab454ff2cbea63a233ade24dc429c631e80e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp315-cp315-macosx_10_15_x86_64.whl

Download URL wrapt-2.4.2rc1-cp315-cp315-macosx_10_15_x86_64.whl
Size 101.2 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
16538005b25041b116732106b5de7e9bdbd7c3f0f48591f616978586fb59528d
BLAKE2b-256 checksum
How to use checksums
85a9f9c91685d178529227dbb82497b3a4cb243f817044a0b039707bdd459898
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-win_arm64.whl
Size 100.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
916cb0c1b7c77de2a676d3265f7d2746398cf62f7b81d40deefc94448f29e908
BLAKE2b-256 checksum
How to use checksums
428627d0dd77fa3ceb83f185bda80c7c4924eaa1a447423c9e7e1b65af3c257d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-win_amd64.whl
Size 104.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
4ede3e240613de2c7730649f4acc249b960d36e3c83e051546547407cc6a0295
BLAKE2b-256 checksum
How to use checksums
0e957cb263fa0a98972805fd4852da570382a5106d1485285f4bbf881c076a22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-win32.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-win32.whl
Size 98.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
42776de89643af0f1a547df76c40d6d0481ef0a4ec96496c9703cacaab4de018
BLAKE2b-256 checksum
How to use checksums
26c380dabcf749c862cfbbb00ea3dfd639f22b361203f4553721bb70c69cf5bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 274.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5e811eb6664f0be5e9fab19f4939446a22360b7e99979c7babbd3e46ca666926
BLAKE2b-256 checksum
How to use checksums
d1593e7ef7b1c916b5f38084623d941fabd4f19c5ec3fa1cc56b1153611b2add
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Size 255.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
bfb4bd50353bfcb7e7db8bc1391d22a407dcf5baeadebdd89c679a30a97c8db3
BLAKE2b-256 checksum
How to use checksums
af4a3d3285c4398bfc5a140a0580727decd5fb530eb29ed6915de3540d882e4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 284.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0a05a0ca113ec21f3d1964a7f4e1c53365468050fa9c8f4182e9083e625af2f2
BLAKE2b-256 checksum
How to use checksums
790186baacde3d18ea169b61f75e939cf41685b4ab3a9a76d47d1f8c9513228d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 258.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
de36da31a06ccbc15eb37bd47162749e07be5757a80c7a3afa16abd0e6b10ca2
BLAKE2b-256 checksum
How to use checksums
9348908817dec5285e4157c4cc15db8ae380c5697a10496fb99ddf1b359e7d26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 289.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d463c95a569e04aac247ca692fc29239b9e8d41f6374d74a678c504aff76d054
BLAKE2b-256 checksum
How to use checksums
f8718ae2bb8e19b8bc9ca5eeed8c537f1892a166f010919c66ab3d7b3d512e89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 279.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c188c672139a6a39cc6955646878995f053a39f3af41f4abd94e7feffcdd1aca
BLAKE2b-256 checksum
How to use checksums
ec1ea703ef5014fa53f6f08825b7fd517a3da88a72a11b76ff7416f04d8ea03e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-macosx_11_0_arm64.whl
Size 104.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e91775c7d9f53538bd76f68f32f7fba851efeef12d121dcbb49191999e013cb5
BLAKE2b-256 checksum
How to use checksums
d26b5b37c85e0bf24380a648f01dab3b3748ffc44bde3455684283f14c3c881f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Size 104.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
de13e82b612fb59685e9bd5c4b15ab024351b2a87c46b31a0325c90a00000bc9
BLAKE2b-256 checksum
How to use checksums
5a0b06cea7a9e5629db91932852bf7484baca85198ecc5c39a493849a1d34978
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-win_arm64.whl
Size 98.2 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
09f3add1d7ce45b69dbf8ab60af63196e4dd61c1049ee49d4cdb289bb994eba5
BLAKE2b-256 checksum
How to use checksums
c82cd12bd680a5b75384bf3a019319ffd4dd6ddd57183bce3225627df4751dba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-win_amd64.whl
Size 101.1 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
7888b70ec844c250cd0ed6beceb25e63b801627dfb3cc5e9ef88406c00b4f645
BLAKE2b-256 checksum
How to use checksums
84bc9d77a40d30e10697dc3fb9ae0a840dcc6ae49a6c70f0391a5e66e0b64bc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-win32.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-win32.whl
Size 95.8 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
fc3eee8ec0fe4f8d00eafda91b925f5e15228011c55ac01e86365fe32d7a325e
BLAKE2b-256 checksum
How to use checksums
2c92ac038cc2260cc9f86900d30861d9c498a1eaf60468b105fa20ee2f6c63a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 232.1 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
445b0ae3c059bcce2bafcb554aef4d5336a2422c2095be1faf165be38770cb21
BLAKE2b-256 checksum
How to use checksums
9e192699a23f7b54902c7d4622561c8000bd1f06708f9f4be77f9b6beadae076
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Size 222.1 kB
Tags CPython 3.14 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
e28b0ad252f9f3b20ffcd5212cf8d8df1bd37427ccd244313e5cda9a37923a93
BLAKE2b-256 checksum
How to use checksums
6fa8e303ef182a3d8987df90808c2278be135fe857c08ebebacc537790168bbf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 241.2 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
736bf1eb7299f17d57412e7aacb7f19e3577592e2295579b0df9deaa63d8d72c
BLAKE2b-256 checksum
How to use checksums
1ff5cddec348381925f47a1f4eb27777d2eaacd6fe9032068619356822903b93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 224.9 kB
Tags CPython 3.14 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
e5b50228fd036f5542e655e6a32b8e3e1736f038959d0ddf35a036b4a6aa79c3
BLAKE2b-256 checksum
How to use checksums
18a8604a31f03a9ff64819a974991a90e1cfeeff638562a323944b309b164a81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 243.9 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b32dbe7c9dbd974cc5049d64aaae634fa0b5dbb0210c2fe1a987304b39ec76b6
BLAKE2b-256 checksum
How to use checksums
3e6a2011b3f72b46f5b9297f8f7ed7f03e1a6cc572bde9abad3e73e48b37e345
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 244.5 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6d0dfb809584c4b0d1418ffb5c2fe6c54dfb758118147f6a3818415b19b0c9d9
BLAKE2b-256 checksum
How to use checksums
723680a26f8f230d93bda1ecf3757072a18af283189f7422d65f2c9ca972ebc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-macosx_11_0_arm64.whl
Size 101.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ae0f14bd98103ef5eddc0e357852c09507658e8abd20a3556a32f8191bca2126
BLAKE2b-256 checksum
How to use checksums
a0670c9b9f9dce7e0cfce971d10b3da60806a83c99284f83c0355398b212634a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL wrapt-2.4.2rc1-cp314-cp314-macosx_10_15_x86_64.whl
Size 101.2 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
714bda94be2109fafcf92c5f29aa6a67f6008e8cb5f8239ff9244a40d0f105ac
BLAKE2b-256 checksum
How to use checksums
4b91853a87b2e40307037e3876768cad1a1f5a6071657dfb27bd8f198c2fa7ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-win_arm64.whl
Size 97.3 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
71d17aef370bf55c4f025650b6eb3a4d6e8f70d6d70fe3ec02d66b04774dc09c
BLAKE2b-256 checksum
How to use checksums
605a8afae1aad0602c1f38f2ed6fb1d0a911b6be012a3361ae432f2e8776eb46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-win_amd64.whl
Size 100.6 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
81bf9062509d58ae300c80329239c1038931debf7d1e9e1e8ef27282f155c37e
BLAKE2b-256 checksum
How to use checksums
e8c32277eb73fa760e9e8c740d7f5f3fb0dfd46ee32c71da6de53b1f1f0e147a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-win32.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-win32.whl
Size 95.3 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
735ad68b5611898d95f296c0f19a8bbcf8abadb80256f75da0a411f7d9d01617
BLAKE2b-256 checksum
How to use checksums
ee516b370b746c617f188474c57766887b4b8c83df6cd92738005c6aab221a92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 230.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
36b970ca66543c66e24827f2efecfe6a7e7c87459b118fc4fd9fe75577d2a8d0
BLAKE2b-256 checksum
How to use checksums
77c45df858f60d3a8dead5205cf77af92323c7fb406743e10ef14da826c30660
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Size 218.5 kB
Tags CPython 3.13 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
c07bd0edfef63aa07993d837d84d50100eb9b14b3ba0fdaced256b336ff5309b
BLAKE2b-256 checksum
How to use checksums
f0b753d90bbea13c2355588e815472580de94836abb35200eca7952344d0dcf9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 238.1 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
db797715adb7b6d39b15a65d1604ec19ac82cafdf61eedc378dd2fa263ff1f8a
BLAKE2b-256 checksum
How to use checksums
81be52ee1281b08ee9c39a4df9ab50d05f249f386d936cd2f1811757698ee113
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 220.6 kB
Tags CPython 3.13 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
f671730e949eb2911804f6cc26ac963793775c7234eab97ef045d0a9a5ed5c67
BLAKE2b-256 checksum
How to use checksums
1a58d2518156afda321bc932c5d90ce4a8c718fc6e30933e10cef57c5e9cb123
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 241.7 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
66ff9aa1e29ebf470a01c73500851027752a8a50883b330e20ec1e6319d44216
BLAKE2b-256 checksum
How to use checksums
8042b214d1de6128bd979be53b00ffeaad737a1005bc2d1a95e988156897364d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 241.7 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a2cab7273b94021f6789a2d2d8f0f35eef1810a8863b618725397df3d13432c0
BLAKE2b-256 checksum
How to use checksums
04a7ebc2c8e306f2b28966258ab0fd8bacfefab7eaf0d942d039d178487f1ef9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-macosx_11_0_arm64.whl
Size 100.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3c6448ebc73d4453cd737dbe28dc7961735091a4b36e0fd3080f77001980cea8
BLAKE2b-256 checksum
How to use checksums
0d981ccef4429e927cddad715eecf83c7f3a19d3b06dc78aa072fe66a2c1d2cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL wrapt-2.4.2rc1-cp313-cp313-macosx_10_13_x86_64.whl
Size 100.8 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
657a262b9dad32e9d6f9f2e9512b4f68d06c24ecdb74de2df42b6dfddc24e5ad
BLAKE2b-256 checksum
How to use checksums
788dc8685dcdaf68605ea5d5e7e9450fb7cd25a313f9955d1f51eb1fd862e6d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-win_arm64.whl
Size 97.3 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
20d6c032adda2ab6e22f995af94d54ed1e086764324ce6ecca4526fb722ed17b
BLAKE2b-256 checksum
How to use checksums
2dfd7b6ac09904f3608593bb4721d68321220818b4494864ea9490808df1e7ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-win_amd64.whl
Size 100.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
54b3057dea3c43d588627d5ecabc4d9a8d40a632f928f2bb301852b130e6ba0a
BLAKE2b-256 checksum
How to use checksums
eba8100b28129ee2da386ae88c0e5986dc6d12d4c77e1a15d1f6fee0b06621e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-win32.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-win32.whl
Size 95.4 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
134c412e175f1625ef6bd32e73e7f1577499bb9e7f09fe6aec5f74ed96ad83a9
BLAKE2b-256 checksum
How to use checksums
c41d05e3d5f95158c1c3a7a54c0890db075d20ecc28edb24a18884438db42364
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 231.8 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a6a47d7f4a84c98f424562a25cd4a3ce9337e72598c0b9705d6d25f8a73a9046
BLAKE2b-256 checksum
How to use checksums
a8b10d946d798526412b7d0eccaa64bceab9dc4a7297658f455a7ac5e8ddb6ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Size 220.4 kB
Tags CPython 3.12 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
daea71bcee8dde373dd159f0cbe503148b52f21129048e08219954895f641477
BLAKE2b-256 checksum
How to use checksums
8f6c28694ed85eb3cd2239f3f3aca77109fc48272ecbb175a19cf098882439ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 240.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
79ddf369fa2df17f662652d98e1411ef56632163a689d9fb2d18788e1f944b43
BLAKE2b-256 checksum
How to use checksums
f9fe4427e40403042662ef9716e904738ff13cb3a490e13ae7ed844f1d0ae9a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 223.1 kB
Tags CPython 3.12 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
4633e1577e259f0dd44394e1214f7551b5e3b953691e8bcaaba9dbb139313207
BLAKE2b-256 checksum
How to use checksums
3945f397b930f2e15f064f6de0a613614b0ba50c18e248a581a61084f16474e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 243.9 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
eb13cb2f92dd555b97e9b9bc838f28009855f1276a1532a7c7336797dd1b8ba2
BLAKE2b-256 checksum
How to use checksums
633745e9fe7299b1cb27f5c85cea92ab9735bb396d33516e8e547a455d194ff4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 243.5 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
47f04210f220a533d4b058f0b1ec4aa6677e6057fbd0db77b610c576ca7b18ca
BLAKE2b-256 checksum
How to use checksums
8b4ec3767d06ae5e8a78369e073be9abe4c6c031cf54ad06376b37faf72629b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-macosx_11_0_arm64.whl
Size 100.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c386f457878624d203335dc621f7c94b43ebf09d0065875a119bc45e7d0f4c0e
BLAKE2b-256 checksum
How to use checksums
f86fcea880d86724542ddb527eeb000fa9b73eb30cb8871414639c9dc2abfa6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL wrapt-2.4.2rc1-cp312-cp312-macosx_10_13_x86_64.whl
Size 101.1 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
ac8ba815a43bb7b73fbf57d80ed04335691e8cfd178db3d73375ac0b027dedc9
BLAKE2b-256 checksum
How to use checksums
33bdddcd9dfc8427b7b03a79491e9d21cc502cc9f8537aae612dfca58c5fcd32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-win_arm64.whl
Size 97.1 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
0df143e5d8e7881f6ea5c5127a5f8e020548fb4f237dffcc0326c54f91d3d7bd
BLAKE2b-256 checksum
How to use checksums
a2e0d4dac5dd66b0c3d8a6b2cfff2ec4cadef9f3543a77d7bef573ba2df19619
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-win_amd64.whl
Size 100.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
c1493e5aa8a7713bd2ea617a00c85b8a8bdea112aff40d6ec207c6af565d1a76
BLAKE2b-256 checksum
How to use checksums
ca10d39dae15e24c01fe9fecca6e92c5b40d419c4327bc089d3f534eaf8bae22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-win32.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-win32.whl
Size 95.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
5b9b3c537c81ee37735efba83a7f5ce1b67d27ffa9e7c2ff52b12b7aba599fbb
BLAKE2b-256 checksum
How to use checksums
32ef5e159fefb99ba67a1e36538553627d926935f952f3cf5dd221167a93739b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 222.6 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
10ccd507dfab8ef3b9c09d620546189174531469ddebaa95713961a7564c0477
BLAKE2b-256 checksum
How to use checksums
1a4ed374263ea1413548855157f6968bc2d21a6dcb0f0d37d8b05c0519490830
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Size 217.4 kB
Tags CPython 3.11 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
30c48cc664a288d1d7d5ca735fa28e494852735b2e6a1c63a8d7daae9402a8f1
BLAKE2b-256 checksum
How to use checksums
77140be60ce049f1021e0867b5819062e1c1ab81c30a23435f271b1fc08011f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 232.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
45065b34b69d6c79d0749a24a40ec580625ed13d39ab32515342e529ddeb0e94
BLAKE2b-256 checksum
How to use checksums
c0344cacd59870ada7ac05ea10ef0de4666245d149a1a3487d9b46ae1ab0d4ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 219.9 kB
Tags CPython 3.11 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
67a2faea9bb5b7296c046d31048871395d44238666ada3767c9243cf82619bba
BLAKE2b-256 checksum
How to use checksums
1264bb8d16ec967742ef0a4af257259114f01ad5a3341034cc15498018be11ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 234.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3d9a35b0b2e5d6b3a5b6acdd0e9c4556d0b539739a405a96c78233a5f1557c43
BLAKE2b-256 checksum
How to use checksums
e3a8cbd618db0387e8d2890b9958a4cdca3d87f461520dcee90c2a7dd7e3b4df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 233.5 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
96082a6b061e0b0b7ffcc2084e9a1315edff253d159d3f8127ad477ad243c889
BLAKE2b-256 checksum
How to use checksums
6b4ad5792454702cbf13bde390d3b523ff2e4fe2b8deb22d8eedeaf7d174f08f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-macosx_11_0_arm64.whl
Size 100.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4b80f004a8279a0c9de59bc51ca6079f579a829bb5380e6618e84459677e6a1d
BLAKE2b-256 checksum
How to use checksums
6f36f96c69b8ed76b96a74f02d394e835d10a2351a8a493e626db980e36e216e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL wrapt-2.4.2rc1-cp311-cp311-macosx_10_9_x86_64.whl
Size 100.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9c8a4e5810be2c192751dd04979f29741bcdb55b09859c721db2d0722e6b5374
BLAKE2b-256 checksum
How to use checksums
26aacc3e9083b11d521db38bb4c0bbe9841547086fbf67f19baa93f8fd5ceb96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-win_arm64.whl
Size 97.3 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
c0ab28778f13e7cc5b6a8a526d06befd6bd7e069e0e9ce1d896522ff637b1816
BLAKE2b-256 checksum
How to use checksums
7475533063af10ab0110c153fc429522df06928b3506f07bb0533b7c90933d4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-win_amd64.whl
Size 100.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
08ef2397ff0609dc4bf6032c4a25f40256299e0dce9e1041a617ea22ff97c6bc
BLAKE2b-256 checksum
How to use checksums
d9e3b3b7b093771d7f2db97303f06c179cddbc9b817cc8daccd955f604f5a77e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-win32.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-win32.whl
Size 95.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
a8e2847fd16ef8345ececdb1a3203958f03382201449943a4062407f0c2ad164
BLAKE2b-256 checksum
How to use checksums
bcb7a1dc754a1a7efb48e5f09854196a418eaa67f7eaeae975bcef9b57696c1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 214.4 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3d7ba442b756f37d46e6a5be3a7319633ae964c589e6dcc64fc7486d54c479fb
BLAKE2b-256 checksum
How to use checksums
746ab8c33d192de9a928d836f4d970972c654ec2964b9aec2903c0f2b15e3be7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_riscv64.whl
Size 212.5 kB
Tags CPython 3.10 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
7f9689aed53012b60f1f878b3bf917dc8eec0fb288922f6b6e339f54376cc3ee
BLAKE2b-256 checksum
How to use checksums
2d7c8379b949f455b45f0fd0c9f94af9cdc117f73707677151c86f03156da709
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 224.0 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3aeb25c7efd7c12056ef61fd7cdcade72a6d3f7e942fde723e8162bcd862e0e4
BLAKE2b-256 checksum
How to use checksums
8935b19d8c05106c5aa08279a10ab67d88971dc858178edfdc6bbbb694762d7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 215.0 kB
Tags CPython 3.10 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
fb05edcb20e6e142972527ca5bbad01dd3e377d0b43641f1401b80f8d327cca0
BLAKE2b-256 checksum
How to use checksums
c943533d5f118a2b78606e160e0b31c26cd2cb05ec1dfe1ae88ac31c8488c428
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 226.3 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e3a226a56757c5fc51a37a1be7b7c6aef7dcae81b6d4c46ab616083d8a1cc873
BLAKE2b-256 checksum
How to use checksums
00e291da1f6a2e040e1970800fde5d61d32a8624fe02dd89487a3347b28932af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 225.0 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
881361d030e8cb16f0c65b0db4d3bfbb090a34a48838b35f5e0e625b3669bea3
BLAKE2b-256 checksum
How to use checksums
fc2be2d03ca4b680e4e40669a636a4bdd61fa1026fd4dca1dcdba64f0510f885
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-macosx_11_0_arm64.whl
Size 100.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6f4ec186cbe3c9498966128f9b5d3eafc0b9f942499baa35076b1b9751e0e1e7
BLAKE2b-256 checksum
How to use checksums
a3862e614c0ed4f3c4bc28db2910ab1d83657da5d59e5d7fe31943f383c225ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL wrapt-2.4.2rc1-cp310-cp310-macosx_10_9_x86_64.whl
Size 100.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8d564ec7f489718c4b555f42d499853743dfe263a7e231e87184b177571e0975
BLAKE2b-256 checksum
How to use checksums
ed1265f41d10562d3037645fc58a44cb7eb9c0935353cd5517b5b39116522764
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-win_arm64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-win_arm64.whl
Size 97.3 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
779853f5cb922064bcec4fa84305c650e1f168dcc4325663f514d8f5fe60615e
BLAKE2b-256 checksum
How to use checksums
d21b16a5a6bb8387644c16056dc5c29acebf9c0c1b6ddf3a952bfc6505f319fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-win_amd64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-win_amd64.whl
Size 100.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
4c7c54f1b19420b4953c4de6aeae151f5a9c849346909d9b438655f93bc1d529
BLAKE2b-256 checksum
How to use checksums
ff3b814450c701686445b74f0c70977c0252f8b3981e253389350ddf3f307f9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-win32.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-win32.whl
Size 95.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
88338d7e7ada5c920245b03fbf2b9ff845668a85bd38c0c56aa0bf25585150b6
BLAKE2b-256 checksum
How to use checksums
d4e3169e74bf34308635c02d168ca5078a5d600f5c472db4080d2843b400a846
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 214.2 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7c36151d104708d6baaae72a25d64d36b9ee8d08b38b25e2bfbd88e8c90c77b6
BLAKE2b-256 checksum
How to use checksums
6fc5a83490670069d1e4a7b7b06cafe3f4648f38dcc818f6b9b00dd959a4226f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_riscv64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_riscv64.whl
Size 212.3 kB
Tags CPython 3.9 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
85d40884ff28b5941775140df15516c003f3eaa3e62fd478c537aae6d333676c
BLAKE2b-256 checksum
How to use checksums
fbd68bb08d154571bb961f17eef689a5aa905fb8d246c4ac4e12d343d3bc8be5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Size 224.1 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3f149e5980e79d4afe09cb9b25afe62072a9b419e0a14d7cb961d8a964f44e20
BLAKE2b-256 checksum
How to use checksums
6b4b5f9c307df5093b56a456a6ed3176981cc185afc3d6918c2b08e97be6a8f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 214.8 kB
Tags CPython 3.9 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
c2ade1299c141a3a358c4a508a21e2aa12e65dbcfa590168422624d83814ef32
BLAKE2b-256 checksum
How to use checksums
a1c46e657a94cf9adf17b0320f902ab26d880f38ffe04c8c04d04c788b158234
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 226.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
18404684589e56699cc6cae9f5f9e914e555f7c08690efe0931a961e4c581d49
BLAKE2b-256 checksum
How to use checksums
3c30953dfe97dfd511c8167017a0bcdce4e18305986cb097aca382485896c3ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 224.8 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
72a63a94deb177095e7e5f8c65c437cb163d66a6583a871b1635801023cd2fdc
BLAKE2b-256 checksum
How to use checksums
4bfd33a0e9aafa8bab6d385c53548273348fc4391ac2ac2412c6c9d8b45d5092
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-macosx_11_0_arm64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-macosx_11_0_arm64.whl
Size 100.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7d086e45b86eab3238727876e586b6cffcc2880e14a28160ba427e62ef3ca881
BLAKE2b-256 checksum
How to use checksums
497d4512e829f8daa692260bf02e342ede274ba2c5499db7617ecf2105e6e014
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / wrapt-2.4.2rc1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL wrapt-2.4.2rc1-cp39-cp39-macosx_10_9_x86_64.whl
Size 100.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7c03b3885be0bf68507a8f7d597686a1601fe33dfc0569457fc67a9c7361598b
BLAKE2b-256 checksum
How to use checksums
07cc2e9fe5ec9bcb8f0c08eb98ae76b5e430d7339166073d0779585c8a8233d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.4.2rc1 This release

101 release files

2.3.0

90 release files

2.2.2

90 release files

2.2.1

90 release files

2.2.0

90 release files

2.1.0

74 release files

1.12.1

1 release file

1.12.0

1 release file

1.11.2

1 release file

1.11.1

1 release file

1.11.0

1 release file

1.10.11

1 release file

1.10.10

1 release file

1.10.9

1 release file

1.10.8

1 release file

1.10.7

1 release file

1.10.6

1 release file

1.10.5

1 release file

1.10.4

1 release file

1.10.3

1.10.2

1 release file

1.10.1

1 release file

1.10.0

1 release file

1.9.0

1 release file

1.8.0

1 release file

1.7.0

1 release file

1.6.0

1 release file

1.5.1

1 release file

1.5.0

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.4.0

1 release file

1.3.1

1 release file

1.3.0

1 release file

1.2.1

1 release file

1.2.0

1 release file

1.1.4

1 release file

1.1.3

1 release file

1.1.2

1 release file

1.1.1

1 release file

1.1.0

1 release file

1.0.0

1 release file

0.0.0

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page