Skip to main content

Module for decorators, wrappers and monkey patching.

Project description

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.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wrapt-2.2.2.tar.gz (129.1 kB view details)

Uploaded Source

Built Distributions

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

wrapt-2.2.2-py3-none-any.whl (61.5 kB view details)

Uploaded Python 3

wrapt-2.2.2-cp314-cp314t-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.2.2-cp314-cp314t-win_amd64.whl (82.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.2.2-cp314-cp314t-win32.whl (79.1 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl (192.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (195.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.2.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.2.2-cp314-cp314t-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.2.2-cp314-cp314t-macosx_10_15_x86_64.whl (83.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.2.2-cp314-cp314-win_arm64.whl (80.0 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.2.2-cp314-cp314-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.2.2-cp314-cp314-win32.whl (78.1 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (166.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.2.2-cp314-cp314-musllinux_1_2_riscv64.whl (157.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (166.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.2.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.2.2-cp314-cp314-macosx_11_0_arm64.whl (81.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.2.2-cp314-cp314-macosx_10_15_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.2.2-cp313-cp313t-win_arm64.whl (80.8 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.2.2-cp313-cp313t-win_amd64.whl (82.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.2.2-cp313-cp313t-win32.whl (78.5 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (198.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.2.2-cp313-cp313t-musllinux_1_2_riscv64.whl (192.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (195.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.2.2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.2.2-cp313-cp313t-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.2.2-cp313-cp313t-macosx_10_13_x86_64.whl (83.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.2.2-cp313-cp313-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.2.2-cp313-cp313-win_amd64.whl (80.5 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.2.2-cp313-cp313-win32.whl (77.6 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (167.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.2.2-cp313-cp313-musllinux_1_2_riscv64.whl (157.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (166.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.2.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.2.2-cp313-cp313-macosx_11_0_arm64.whl (81.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.2.2-cp313-cp313-macosx_10_13_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.2.2-cp312-cp312-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.2.2-cp312-cp312-win_amd64.whl (80.6 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.2.2-cp312-cp312-win32.whl (77.7 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (168.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.2.2-cp312-cp312-musllinux_1_2_riscv64.whl (158.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (169.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.2.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (169.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.2.2-cp312-cp312-macosx_11_0_arm64.whl (82.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.2.2-cp312-cp312-macosx_10_13_x86_64.whl (81.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.2.2-cp311-cp311-win_arm64.whl (79.5 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.2.2-cp311-cp311-win_amd64.whl (80.4 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.2.2-cp311-cp311-win32.whl (77.4 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (158.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.2.2-cp311-cp311-musllinux_1_2_riscv64.whl (152.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (159.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (153.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.2.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (159.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.2.2-cp311-cp311-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl (80.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.2.2-cp310-cp310-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.2.2-cp310-cp310-win_amd64.whl (80.1 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.2.2-cp310-cp310-win32.whl (77.3 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (152.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.2.2-cp310-cp310-musllinux_1_2_riscv64.whl (148.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (153.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.2.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (153.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.2.2-cp310-cp310-macosx_11_0_arm64.whl (81.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.2.2-cp39-cp39-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.2.2-cp39-cp39-win_amd64.whl (80.2 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.2.2-cp39-cp39-win32.whl (77.3 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (152.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.2.2-cp39-cp39-musllinux_1_2_riscv64.whl (148.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (153.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.2.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.2.2-cp39-cp39-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file wrapt-2.2.2.tar.gz.

File metadata

  • Download URL: wrapt-2.2.2.tar.gz
  • Upload date:
  • Size: 129.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2.tar.gz
Algorithm Hash digest
SHA256 0788e321027c999bf221b667bd4a54aaefd1a36283749a860ac3eb77daed0302
MD5 9c9ae37358518d080b2881829ec199bd
BLAKE2b-256 fea4282c8e64300a59fc834518a54bf0afabb4ff9218b5fa76958b450459a844

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2.tar.gz:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-py3-none-any.whl.

File metadata

  • Download URL: wrapt-2.2.2-py3-none-any.whl
  • Upload date:
  • Size: 61.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5bad217350f19ce99ca5b5e71d406765ea86fe541628426772b657375ee1c048
MD5 4930742f21ba423c7d5ca75d442d212c
BLAKE2b-256 6ed26317eb6d4554855bbf12d61857774af34747bf88a42c19bf306de67e2fa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-py3-none-any.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f32fe639c39561ccc187bcae17e9271be0eb45f1c2952510d2f29b33ab577347
MD5 df756f6a2e25cf1c5dee9af12fcf1b74
BLAKE2b-256 48a7df732dac86d9b2027c56bd163dbc883e037b16c3469614752e148d219c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 82.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d09db0f7e8357060d3c38fc22a018aba683a796bf184360fd1a58f6fc180dc77
MD5 742d1daace3e3801556b70bbbe3f976a
BLAKE2b-256 a04fac12fda57a55068a094ec42851fb0a40e8489d8941863d517452de62e507

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 79.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d8a15813215f33fa83667bfc978b300e35669ea8bb424e970a1426bcb7bc6cca
MD5 16bf9fead2a6812f720bd9e38ce5c92c
BLAKE2b-256 677ce88313f16a99930b899ef970d91c281544a470749a359decad994483bbda

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11d95fc2fbad3163596c39d440e6f21ca9fccece74b56e30a37ac2fca786a07c
MD5 74c19afd5108d4d02b688cdb4c807a25
BLAKE2b-256 b7f01819fb50f0d3c9bd758d8a83b56f1b470dee8b5b8eac8702b7c137cea9d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6fe35fd51b74867d8b80174c277bd6bbf6a73e443f908129dc531c4b688a20d5
MD5 e8c6b2ed28ceac2b39d701f573e283c3
BLAKE2b-256 44b3e8aa07b619890a2aa6cde1931b1887abb08820721b564a5f80b7ca3f3aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cd7181ab1c31192ff5219269830744b5a62020b3a6d433588c4f1c95b8f8bff
MD5 a877355503067683d9ae8d24b84c0bcb
BLAKE2b-256 ef04d0d1ccaaa12cb7dccf28a23f0279a608ba498f71e81d949d5ed54bcfd5c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2252f77663651b89255895f58cc6ac08fcb206d4371813e5af61bb62d4f7689c
MD5 b1b37696a3d7f1b3265680be3ad6f619
BLAKE2b-256 2d6f17fd9e053103d8be148d20d5d7505facc72d5fe1f9127973904ceaed79cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbf00ee0cb55ec24e2b0995a71942b85b21a066db8f3f46e1dbfdb9433ffba81
MD5 55013feb5a0f6670f56c6ca611b28720
BLAKE2b-256 19d83b58763d9863b5a73771c0d97110f9595d248db454009e07e1535ee905a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 45c2f2768e790c9f8db90f239ef23a2af8e7570f25a35619ef902df4a738447f
MD5 53786a0838624605056d453736b72b07
BLAKE2b-256 4eea1a89e6d3b7a83c3affe5c09cde77792c947e63e4bc85ad84cd5bb9abb0d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a795d3c06e5fbf9ea2f13196180b77aeab1b4685917256ee0d014cc163d90063
MD5 b33a493103b1cda194b9ec18adbcce49
BLAKE2b-256 3938ec45b635153327b52e52732a0ea980e5f00b7efba65f9e018828f1e69daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 09f811d43f6f33ec7515f0be76b159569f4057ab54d3e079c3204dddb90afa2a
MD5 4bdc119362c589693ff4d5c425e21f0d
BLAKE2b-256 b0339ebcf8aafe91c601127cbd93708c16aa8f688f34a10bf004046803ecdc4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 80.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8ffbeaea6771a6eba6e6eeb09767864995726bc8240bb54baf88a9bb1db34d5c
MD5 ecf55352caf1a6dc578747f7daaf1255
BLAKE2b-256 457d1b6b5ddd94005a2dac97a4490c9838f3154977850d633abcb65b30089437

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 385cb1866f20479e83299af585375bfa0a4b0c6c9907a981483ea782ea8ae406
MD5 fd31b4038ae62d589c87ad59a30e130c
BLAKE2b-256 49ece1281156cdc7a66693838ad7a0865ad641c74abd337a957d668b575aaffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 78.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 58f9f8d637c9a6e245c6ef5b109b67ec187d2faed23d1405656b51d96e0a5b56
MD5 c3689fff276cec98576eb3c446aa2f77
BLAKE2b-256 99eb974e471a6a978b8180186b8a9dc5ae3361ce269a967190b709b8ce17abfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa14b01804bce36c6d63d7b6a4f55df390f29f8648cc13a1f40b166f4d54680d
MD5 6e2891ef66f768b14fe567af1e4f9bd6
BLAKE2b-256 1ec17ebd1027f00700c0b0233b20aceef2b4784294ed64971424c4a78e069e34

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 173e5bb5ca350a6e0abab60b7ec7cdd7992a814cb14b4de670a28f067f105663
MD5 82b110749712b8361dbfc8ce5d9845a0
BLAKE2b-256 fb5fe1d7c6e4523f78db2fbd7826babd0348da1d5e0834c4f918b9ab5757dfae

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4250b43d1a129d947e083c4dc6baf333c9bb34edd26f912d5b0457841fc858ab
MD5 8521861b737190ba10843972f6cbec82
BLAKE2b-256 a3ed974427668249a356051e8d67d47fa54ef6c777f0fcf3bae9d292c047d4b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c427c9d06d859848a69f0d928fe28b5c33a941b2265d10a0e1f15cd244f1ee33
MD5 46d5e68dc3a596dfbb05aa8d7713c04e
BLAKE2b-256 4cae24ffacd4187fac2740a1972093929e836dea092d42c87d728cd98fee11a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4bfd8d1eb438153eff8b8cfe87f032ba65731e1ce06138b5090f745a33f6f95
MD5 9d751870c28b1ed96de71de7d4206f5d
BLAKE2b-256 4d9ad1bd36f6d088c8e652a9383cabbd49af30b8c576302a7eccddbab6963e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0abfd648dac9ac9c5b3aa9b523d27f1789046640b58dcd5652a720ddb325e1fc
MD5 b1a1f270030f4ef26435fbe6891a2304
BLAKE2b-256 74ebdf7b7f0b631dbbc750f39be27d8b55f65777d8ac86da80e12be41a644c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcaa5e1451bd8751d7bd1568dfa3321c78092a52a7ecb5d1a0f18a5791e1fd00
MD5 d78ad59b54774781d432fb871caa8a8e
BLAKE2b-256 4b681bfa43100dd90d4ef74a05897b86275cf57e1313ca14aae2545bc9f872c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0e64826f920c42d9d9f87e8cc09ffae66c51ede12d59061a5a426deb9aa71745
MD5 90c15e7da86931fa2fe3e195f2fbaa43
BLAKE2b-256 24057fd9c3f83b2c74cbfc572a0b88aa37431e04bd8aed70d2c0efd3464206de

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 c20279cd1a29800815d7b2d6338b60a6c6e78263f9d6e62e0eda251ba9cae2d0
MD5 599de94e0225990cce6676ea36ac89e8
BLAKE2b-256 15804c7bd9873d1f9f7d138d93556b500469dbe24f42710b877519c2b9eb380d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 82.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 305d4c247d61c4115794a169141823c62f719525ddb90b23aa332741c77d2c28
MD5 29fa896e8ed327702e6ae555940957d7
BLAKE2b-256 d16f9fa5d59fb06d890defb5a8f727ce6a14d2932c8760153f96956628559fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-win32.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 78.5 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 25904acb9475f46c24fe0423dbc8fda8cc5fbc282ab3dc6e72e919748c53f4e9
MD5 af92d2089846a0677f5870a4f956af4d
BLAKE2b-256 59b7e47651797c097f75a37e2ce86dcf04048ff576f3a674f7c558df7b5e9622

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ad520e6daa9bbf136f14de735474dbec7dcc0891f718e1d274ce8dc92e645af
MD5 07e5652c7072a2907a83b58b292e7aa2
BLAKE2b-256 be7d976e2d5b4b5c5babda40974edd54d0a5585cb60132ed86b46f4b80239b16

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c5d7825491bfa2d08b97e9557768987952c7b9ae687d06c3320b40a37ccb7f20
MD5 90174c5b0ea5e1f1e4bae1237ec4770b
BLAKE2b-256 ac02281ea1088b8650d865f311b35cf86fd21df89128e2909714f1161e01c9d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f90038ab58fafb584801ca62d72384d7d5225d93c76f7b773c22fae545bd8066
MD5 935fab31a8dcba7db2972fdc8371716d
BLAKE2b-256 f52d7caa9598ae61a9cf0989cc501739cbeeb7d650ab3193cca1407b9af0c6ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 07fdcb012821859168641acf68afad61ef9783cf37100af85f152550e9677194
MD5 3c908d8767d219e2a4929b126073c77d
BLAKE2b-256 ed29d1160785ae18ca2495a6d82a21154103d74f656c9fd457fb35f6b11b965a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30f7424af5c5c345b7f26490e097f74a2ef45b3d08b664dc33571aee3bd3b56c
MD5 581130059ac6fc4b01288df9630a9645
BLAKE2b-256 c4de2316a757a1abb6453700b79d83e532146dcef2611348282d4d8889792161

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0065a3b657cec06813b4241d2462ccec287f6863103d7445b725fb3a889736f9
MD5 6c945e8d05ee822e1897b2d265f4b787
BLAKE2b-256 181ef060df47755e87b57684cee7bfc1362b204df55fac96ffebc0631b697b79

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b481fb0c40d9fd90a5809911208da700987d373a20a4709dc9e3944af7a6bec
MD5 16fb03ea35d24d0b9a755ccbced40a0b
BLAKE2b-256 d3b0d4a1eb97e0e286625bdf21bc7f702637f9607787ffbbdb5ec14d50c79dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec8f83949028366531383603139403cac7a826e4011955813cdd640017845ce5
MD5 abf3dd22a7ba87936a0aa1411812a71f
BLAKE2b-256 b6e5c120d13bf5091164f68c3c1657e84f16f57e71d978421b626393ac5bd7eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 79.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1fc7691f070220215cccb2a20836b9adbaecb8ff22ad47abe63de5f110994fac
MD5 381ce762eea52050a886d112d0b3aab7
BLAKE2b-256 5521fe7a393d9e5dc0923bed8f5d857e9dcff210f1fa0888c02cc8f3ffaa55aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 80.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2cb07f414fab25dbe6b5c7398e1491423a5c81a6209533639969a6c928d474a4
MD5 fb08c1e4d5e5df19de2eb4fbf798fece
BLAKE2b-256 2968e69fc6d06e1523c68e0d00f95c9aed1158ce9908ee41603f7f2eae3d5db6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 77.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3c4095803491f6ef72128914c28ec05bbad9758433bb35f6715a3e9c8e46fb2d
MD5 c73ed2d7946d5e45f4cfd22e1c6017b0
BLAKE2b-256 1c69583ed25291ab53e1ec117135fb1c33425e2f46d2bc8f29c17f7a94cf4274

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26fc73a1b15e0946d2942b9a4426d162b51676338327dc067ccd8d2d76385f94
MD5 d05d92b3fe0723401ebff0fd1c0c517e
BLAKE2b-256 b7011bd5e4d2df9c0178989ac8da9186543465388588ee2ef153e2591accebef

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b84cd4058001c9727b0e9980b7a9e66325b5ca748b1b578e822cade1bc6b304f
MD5 f4ae08749c520ee3c8cc2a16f2af2c5b
BLAKE2b-256 bda3832ac4e41222fb263b3042d42c2f08d305db7d0f0c9b1d3a271a9eede8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a41e758d80dc0ab8c210f641ac892009d356cf1f955d97db544c8dd317b4d14c
MD5 e81ab050ceda180ba643852b50eea54b
BLAKE2b-256 9c2066e02562d53ee67d841f175e38e3c993c2d78a3e104c576cad61c028b43c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 62415fd095bc590b842b6d092f2b5d9ccbaeb7e0b28535c03dcea2718b48636b
MD5 94565135632604a63bab8e9877914ba2
BLAKE2b-256 17098789dcb09ee1de715727db7521aabbb68ffa68dfade3a49468440cfced49

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94b00b00f806eb3ef2abe9049ed45994a81ee9284884d96e6b8314927c6cea3d
MD5 a0e299ed87f62be338992b59ce0cdd53
BLAKE2b-256 201f8bb62d8933df7acf3247194e6e9fc68edf9d2fa203252c89c94b319dd472

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fb18fc51e813df0d9c98049e3bf2298a5495a648602040e21fa3c7329371159e
MD5 66b4caf6fb919a94ac18647285df40a9
BLAKE2b-256 15ff63ad96f98eb58a742b1a20d80f21da88924405910149950b912368150468

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6fb7e94e8fe3e4c3067bb1653a91cce7c5e83acc119fdd41501b1bf74654617
MD5 f83ecea020a90606b2419bb95e6fc8ea
BLAKE2b-256 72064d117d5d77a9344776c0248b24dae3d3dd2f58e5f765fa08cf887072e719

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9e8b648270c613720a202d9a45ebabc33261b22c3a839b115ac5bce8c0bb0d69
MD5 5be2a11cd6aae4360eb3c61c12e2f84c
BLAKE2b-256 43fcf32f4b22c6511173c11d9e541ab4e7d8467a0f1b3455acaf784115d31ff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c6c64c5d02578bc4c4bca4f0aef1504de933c1d5b4ac2710b9131111459506c8
MD5 e13c761d7f07442a20e62dae70fa5a29
BLAKE2b-256 d3b384c445c66969f2d3457276b183a48c91097d59bbef9af6c075366b0f8c36

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 abf8c20a2d72ee69e16328b3c91342c446e723bfe48bfcc4dded3b9722ac027f
MD5 54752e6ca511404d2f1214c8ebfe383a
BLAKE2b-256 da090390e008a305360948fa9ce69507d041ac12cb2ee5d28e34467e2ee79391

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ef2cce266b5b0b07e19fa82e59673b81142b7a3607c8ed1254113d048ed668da
MD5 b7bad685c4b058eaa6e834b1788c3656
BLAKE2b-256 42633eb25da41049d20ae18fcab2dd8b056e02387c4bfa626cbdfb7c3b872e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b686cfc008776a3952d6213cb296ed7f45d782a8453936406faa89eac0835ab
MD5 502b4b95dbb4ecdad235debe00a4b983
BLAKE2b-256 bcc2aa6c0c2206803068c6859dabe01f8c84c43744da93d4c67b8946d21655ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6c99012a22f735a85eed7c4b86a3e99c30fdd57d9e115b2b45f796264b58d0bf
MD5 caaacde1d1f9b71fcb06993aa718d39b
BLAKE2b-256 e2c49fd9679af8bf38e146652c7f47b6b352c3e5795b4ad1c0b7f94e15ac2aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3442eee2a5798f9b451f1b2cd7518ce8b7e28a2a364696c414460a0e295c012a
MD5 8ec8d8f915865e37c516d2bce6995cf0
BLAKE2b-256 33be27edce350b24e3054d9d047f65f16d4c4d4c1f3f31c4278a1f8a95c723c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 10adb01371408c6de504a6658b9886480f1a4919a83752748a387a504a21df79
MD5 c8c41a0eacb214b71abedcc1cc5a431a
BLAKE2b-256 29de3c833e03725b477e9ea34028224dd21a48781830101e4e036f77e8b6b102

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d1a6050405bf334be33bf66296f113563622972a34900ae6fa60fd283a1a900
MD5 cd35c2f1b131b398aa119a1b68e2a74a
BLAKE2b-256 0b43894f132d857ed5a9904d937baf368badcbe5ea9e436e2f1930fe21c9f1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2e096c9d39a59b35b63c9aacfbbbec2088ff51ff1fc31051acc60a07f42f273a
MD5 a4decc2000b3dbc39bfcb516708261ab
BLAKE2b-256 5fb37e6e9fcf4fe7e1b69a49fe6cc5a44e8224bab6283c5233c97e132f14908e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e7070c7472582e31af3dfc2622b2381a0df7435110a9388ed8db5ffbce67efb
MD5 b828c4e938cbf77a313d5bbbecdd6c3a
BLAKE2b-256 94f221c90f2a16689702e2aaff45795b11018dff2c9b1242bac10d225483f676

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8417fd3c674d3c8023d080292d29301531a12daf8bd938dd419710dd2f464f2b
MD5 0c2fcaf62a8dfe70747882923c85cefb
BLAKE2b-256 2a85180b40628b23772692a0c76e8030114e1c0ae068470ed531919f0a5f2a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5d0a142f7af07caeb5e5da87493162a7b8efa19ba919e550a746f7446e13fb30
MD5 d23572e7ce259ad54356a21b91f61fe8
BLAKE2b-256 084940cefc342bf89b234a4490d741290fce781774b831aefb39c25471da96c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8636809939152be6ae20a6cef0fed9fe60f411b47847d0426a826884b469e971
MD5 0c13d403a36aad5035e73328f6a556e4
BLAKE2b-256 7e9c23695baa331c6de4e874c3d78b8e0bed92e1d2a274e665b29858f6841672

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5499236ad1dc116012e2a5dd943f3f31af12fce452128e2bbcbd55a7d3d4d14c
MD5 2c4774584075efbfadda32e6d13cb307
BLAKE2b-256 55838fbd034de1f3e907edaa18786d5dd8f6932874edee0826c7cecb5cab03a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5a5290e4bf2f332fc29ce72ffb9a2fff678aaac047e2e9f5f7165cd7792e099
MD5 e4ad7a11f6f176bff2f9e7517ef36905
BLAKE2b-256 0249bc0086292d239575b4c08f4cf8a4079fa58abbad58ec23abf84833a283ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 209112cafd963710a05d199aae431d79a28bc76eb8e6d1bbbb8ad24340722cae
MD5 66f571b211327c40129995ac9305ea24
BLAKE2b-256 c7f6a906d01a2ce12157bad2404957b3e2140da354b8a70b2fa48bbf282871c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bccea5cdecffa9dd70e343741f0e41e0a16619313d04b72f78bb525162ebcd0
MD5 f89b569cee8b807b1ee9b0c483cdd35a
BLAKE2b-256 01df2def7e99d1fe87eea413f95f671924cdddcb08823b1ffd212748dfa6d062

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 518b0c5e323511ec56a38894802ddd5e1222626484e68efe63f201854ad788e5
MD5 d86a901736c085dad30230934ad58c32
BLAKE2b-256 4504aa5309beed5344b00220ae6b3b24055852192656194c27947bee1736306a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d619e1eed9bd4f6ed9f24cd61971aa086fa86505289628d464bcf8a2c2e3f328
MD5 bd562ed18d02f63663d822c8ea4664d6
BLAKE2b-256 a5ec40aed2330e7f02ecf74386ffcfef9ccb7108c6a430f15b6a252b663b1bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a2d78c363f97d8bd718ee40432c66395685e9e98528ccaa423c3355d1715a26d
MD5 2b5492b39e5e14c4e55f7353861766f0
BLAKE2b-256 34f3de70937472dd3e8a4e6811192f9c6075efdffd4a2cd9b4596bf160f89668

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55b9a899e6fff5444f229d30aa6e9ac92d2216d9d60f33c771b5d76a760d5f8e
MD5 e876e6751b8e51dbdfdb190215a50597
BLAKE2b-256 7db55c0b093eb48f8a062ef6267d3cb36e9bb1b88440181f6545a383c60efdf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1a2ff355ece6a111ca7a20dc86df6659c9205d3fcee674ca34f2a2854fd4e73
MD5 1390bdd8f550f9496f1e588ea5474285
BLAKE2b-256 27150c2d55168707465abfc41f33c0b23d792a5fa9b65c26983606940900a120

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 79.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b89d8d73c82db2bb7e6090b3afd7973f980d24e905cc34394eab60b884b3bf67
MD5 5ce1100170cd8b23931fc7774a6c4a2e
BLAKE2b-256 7f738db7e27daef37ae70a53ea62bef7fe80cc51a8b5e9e9181a8be6eb9a999c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 955f1d6e72a352e478de8d8b503abe301c5e139a141b62eb0923bd694995025f
MD5 ec472bde0b30919624139a8fbecadb3e
BLAKE2b-256 b0829cd69a1af288fbdedf01a10e3c8a0b6890b08c7f3f96d36a213699dbcd94

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6e7e45b43d3c774d244fe7264378f5a3f0f383bc55a54a9866434e524540110f
MD5 a2ce2e55e3ccc1f7b044acc4531d41cc
BLAKE2b-256 b5c01a48e7e54501274f5d906f18372221b13183b0afbb5b8bb4c7ca0392c0b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e542b7c5af91e2123a8aabf19894319d5ec4268d2a9ffd2f239386133fc47746
MD5 34ed9e8170ffce9f3baaef4171f06367
BLAKE2b-256 f2be716d708f607fa70f8a6eb47dff8ee945d5278dfc89ffeeff33039d052e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3a4eb7964ff4643d333c84f880bcf554652b2a1050aebc54ae696327f61acfaf
MD5 ae035d284d961d9516d1e3e813706f6f
BLAKE2b-256 d6a3bcd5ec37289dcd85ecd4d15395a6a6063d60bc45ff94a9d77814e1e54d64

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4402f57c5f0d0579599858ffbdd9bf4e3f0972f51096f2bd6cc7dab6b76ee49e
MD5 abf9790ef2d45a1018f37d35dff42bd3
BLAKE2b-256 849b12e23264d8f4735e8483262f95c5a6b03c3665fd2a84bdf99a45b6a2f4ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e7f10ee0bd53673bfd52b67cbce83336fe6cad90d2377b03baf66491d2bbfb91
MD5 87acebed37a665b7f5da9b66e6f21960
BLAKE2b-256 bf554d76175aaa97523c38f1d28f79d18ab41a1b116814158a818bc0eba00571

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dfb00cb7bb22099e2f64b7340fb96113639aa7260c0972af3797ace2297b936c
MD5 c79088ab82459d82e07c7c4c1c4971a1
BLAKE2b-256 44a76f42a3d03e44dc612a5dcff324e7366075a7857f0be2d49a8cb8a68279b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 656593bb3f5529f03d27af4136c4d7b11990e470bcbc6fefa5ef218695bece55
MD5 7fbd1ca8902aae6b38eb1a4bf777dc02
BLAKE2b-256 231b545eee1c18f3af4cf140bb5822b6ef81ebe569df0a63ac109973103a30a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8374eb6b1a58809211e84ff835a182bb17ab2807a5bfef23204c8cff38178a00
MD5 67e5a94bf26fcaca7eaaf9e3bd4a1d4c
BLAKE2b-256 94dc66c61aca927230c9cf97a3cb005c803971a1076ff9f7d61085d035c20085

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 055e6fcfaa28e58c6a8c247d48b92be9d56f818b7068aa4f22b15b3343a09931
MD5 8a34a5d4ec5c35945f5c2165fc3c7866
BLAKE2b-256 e18b59781d0fe7b0adfbea37f600857de4be68921e454aeecf1a11bda35cdccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 79.6 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 3179a4db066b53d40562e368b12895440c8f0953b6543b89d6acc41c0273996e
MD5 795414dbb38251f921de02cf51fc37df
BLAKE2b-256 3f7146e4e32978f3ede8fddb11ee9be7a66a20617575246aa7af6d4c4e7c88bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9ee098171b07edba66ab69a9bf0251d3cbef654107e800feb24c0c6f30592728
MD5 7ff5b38619873cbb1246250807e7252f
BLAKE2b-256 ce1eb911c9d98ca64974f6cd5b3f0b81d27d6d9789832512c53942e10fb06958

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 814f1bf3e0a7035f67a1db0cdaf5e2bbcaa4d7092db96673cfa467adeaab8591
MD5 31cc9efabe3e214fd9fe78b2c8de62bc
BLAKE2b-256 d17682bcc41410fb891b8df8eb7393d9c8d4b0f0883a7c34de3fd782d5635f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 152.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa81c5b5fe8cd6c41e3a798533b81288279e5fdbde2128f21071922764281c99
MD5 61bd1c6868ea9168a2b76acd8ed93cf5
BLAKE2b-256 2eee4288cc2bb126b31edf325631dacf4f35992e03a2573b09e811c6f8041356

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3dc3dcfc2da95d501905f10dc11a0dc622e91d8cdd8bbfcb63ca54afd131e556
MD5 0d80337a2f74adf0611a9ac9eb5cd7b3
BLAKE2b-256 587f6866f1b3451b6dd5749466430dd38f5acc94765887f6f665a4bbc6025702

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd385a48b055bdc3630ab30e0c7fd8514a36904ec23f9cee7a65d887334a3cea
MD5 c7c0794bf4cf7a6451f61b32ae5e3688
BLAKE2b-256 fc537a885e0c9751892363ba32713fb2629760c71c63abe4d9568217d453106b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c38510a21d5b9cf3e84c460d909e9f2a098667439fd42841bb081cab45835d68
MD5 8e7f68ccab4189d463e5049add99f129
BLAKE2b-256 f583a5d5e15ca82e83670d4c30b000826406671308f618a00acd9e43ecf2241a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d2f6573561fa05002e5ee71529f4ab0a7dffed3e45b51013fe6298fe2723c02
MD5 1a4bb4152028a0f74ce37940a2d3770d
BLAKE2b-256 1fecff6e57406096b0326021fe9f359114d81698c5b9874a56b1daea3016f888

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 abf033b7e4542357659cd83ed6cd5033c43aaa1887044045ceb571528837f72f
MD5 08fbe7b08b91f51b531ea10c1d2053c2
BLAKE2b-256 e26d306c97b10e96a94039c04d4803ac1d8fad866e9d38940d388d0acc3b83db

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: wrapt-2.2.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 81.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a28287413351cb198b8c5ddd045c56fac1d195808642cd264d1ab50426146650
MD5 2fad4fdd434e942b1a25fda97787e6b8
BLAKE2b-256 150375e36302e39b5d39e354bc823da7d086672071f194e80adf8d81164d8360

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d01d8e0afc55823245a3b97a79c7c77464e31ea7a7b629a4bf26f9441dc1f18e
MD5 d2abe708ae18569fc1a4ef5bc5180a30
BLAKE2b-256 438bc3ae9ec8f4a3b439721ea2df9770c97bb82ae6944d11e5907dde1e8f43d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

Supported by

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