Skip to main content

Module for decorators, wrappers and monkey patching.

Project description

Actions PyPI

The aim of the wrapt module is to provide 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 therefore 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.

Documentation

For further information on the wrapt module see:

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.

Repository

Full source code for the wrapt module, including documentation files and unit tests, can be obtained from github.

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-1.13.3rc2.tar.gz (48.9 kB view details)

Uploaded Source

Built Distributions

wrapt-1.13.3rc2-cp310-cp310-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

wrapt-1.13.3rc2-cp310-cp310-win32.whl (32.7 kB view details)

Uploaded CPython 3.10 Windows x86

wrapt-1.13.3rc2-cp310-cp310-musllinux_1_1_x86_64.whl (80.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

wrapt-1.13.3rc2-cp310-cp310-musllinux_1_1_i686.whl (73.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

wrapt-1.13.3rc2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (81.6 kB view details)

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

wrapt-1.13.3rc2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (74.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

wrapt-1.13.3rc2-cp310-cp310-macosx_10_9_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

wrapt-1.13.3rc2-cp39-cp39-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

wrapt-1.13.3rc2-cp39-cp39-win32.whl (32.7 kB view details)

Uploaded CPython 3.9 Windows x86

wrapt-1.13.3rc2-cp39-cp39-musllinux_1_1_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

wrapt-1.13.3rc2-cp39-cp39-musllinux_1_1_i686.whl (73.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

wrapt-1.13.3rc2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (81.4 kB view details)

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

wrapt-1.13.3rc2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (74.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

wrapt-1.13.3rc2-cp39-cp39-macosx_10_9_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

wrapt-1.13.3rc2-cp38-cp38-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

wrapt-1.13.3rc2-cp38-cp38-win32.whl (32.7 kB view details)

Uploaded CPython 3.8 Windows x86

wrapt-1.13.3rc2-cp38-cp38-musllinux_1_1_x86_64.whl (83.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

wrapt-1.13.3rc2-cp38-cp38-musllinux_1_1_i686.whl (76.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

wrapt-1.13.3rc2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (84.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

wrapt-1.13.3rc2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (77.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

wrapt-1.13.3rc2-cp38-cp38-macosx_10_9_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

wrapt-1.13.3rc2-cp37-cp37m-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

wrapt-1.13.3rc2-cp37-cp37m-win32.whl (32.4 kB view details)

Uploaded CPython 3.7m Windows x86

wrapt-1.13.3rc2-cp37-cp37m-musllinux_1_1_x86_64.whl (78.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

wrapt-1.13.3rc2-cp37-cp37m-musllinux_1_1_i686.whl (71.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

wrapt-1.13.3rc2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (79.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

wrapt-1.13.3rc2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (72.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

wrapt-1.13.3rc2-cp37-cp37m-macosx_10_9_x86_64.whl (33.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

wrapt-1.13.3rc2-cp36-cp36m-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

wrapt-1.13.3rc2-cp36-cp36m-win32.whl (32.4 kB view details)

Uploaded CPython 3.6m Windows x86

wrapt-1.13.3rc2-cp36-cp36m-musllinux_1_1_x86_64.whl (77.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

wrapt-1.13.3rc2-cp36-cp36m-musllinux_1_1_i686.whl (70.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

wrapt-1.13.3rc2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (78.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

wrapt-1.13.3rc2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (71.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

wrapt-1.13.3rc2-cp36-cp36m-macosx_10_9_x86_64.whl (33.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

wrapt-1.13.3rc2-cp35-cp35m-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

wrapt-1.13.3rc2-cp35-cp35m-win32.whl (32.4 kB view details)

Uploaded CPython 3.5m Windows x86

wrapt-1.13.3rc2-cp35-cp35m-manylinux2010_x86_64.whl (77.7 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

wrapt-1.13.3rc2-cp35-cp35m-manylinux2010_i686.whl (70.5 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

wrapt-1.13.3rc2-cp35-cp35m-manylinux1_x86_64.whl (77.7 kB view details)

Uploaded CPython 3.5m

wrapt-1.13.3rc2-cp35-cp35m-manylinux1_i686.whl (70.5 kB view details)

Uploaded CPython 3.5m

wrapt-1.13.3rc2-cp27-cp27mu-manylinux2010_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

wrapt-1.13.3rc2-cp27-cp27mu-manylinux2010_i686.whl (66.3 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

wrapt-1.13.3rc2-cp27-cp27mu-manylinux1_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7mu

wrapt-1.13.3rc2-cp27-cp27mu-manylinux1_i686.whl (66.2 kB view details)

Uploaded CPython 2.7mu

wrapt-1.13.3rc2-cp27-cp27m-manylinux2010_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

wrapt-1.13.3rc2-cp27-cp27m-manylinux2010_i686.whl (66.2 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

wrapt-1.13.3rc2-cp27-cp27m-manylinux1_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7m

wrapt-1.13.3rc2-cp27-cp27m-manylinux1_i686.whl (66.2 kB view details)

Uploaded CPython 2.7m

wrapt-1.13.3rc2-cp27-cp27m-macosx_10_9_x86_64.whl (33.6 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file wrapt-1.13.3rc2.tar.gz.

File metadata

  • Download URL: wrapt-1.13.3rc2.tar.gz
  • Upload date:
  • Size: 48.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2.tar.gz
Algorithm Hash digest
SHA256 9acca689aa840564a1369a3834714a3e336052738c59ff8b942961ab804f4433
MD5 97afe7290db546cd179e495a32ee2aed
BLAKE2b-256 227171c361f462e534187abe3a2a43efb75df17d5e0115f12855f5f8794566d9

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8c2830b6f13067e6a491335d392d72e9276b9bf027eb7e6f7441958a0642915
MD5 37986867f8f6ba2a0643ad5b606dc481
BLAKE2b-256 28f65e3be1c1ed16e3c9f3f8eae1194fd258738429052a137f08cef26b06c112

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp310-cp310-win32.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2c2719b29da0fc041329c405db98f1f70d892ca52a36222b749cc1d80a2ea346
MD5 b9c293640abced161814c8bd9ac2c504
BLAKE2b-256 f68f9eef047a32f37c97beebeb6e8339e0c3cf5e853436e250a460d682786a32

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 80.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed89fb76bfcdfe17b14a881e829b6488c4495d6f3c6da3d9695a703afda98c80
MD5 c0e3f3e6bb61f6314a2a9b71167a540e
BLAKE2b-256 2254dcf2622923f47c910906bdd179a097320159ce21f066417b3fd3122f7f1d

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 73.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6468df845d90ac3f52afc32ea7ba1042d219afb31b4e894c863bc0c986c8c4b2
MD5 e9511db511492acb63d9dbabdbf83a1b
BLAKE2b-256 64cd83749671ce5c96d9ff23e0b3220d1e83e6478e69836fcaf1640b94f1b5b3

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f36e4fd041c4d57423ef264560762fc9a40916a65c29218124fc2eb83c330232
MD5 319247900464377b90b4112b7d278a0e
BLAKE2b-256 88158764003fb93e631936e6ec82f0fadb7423a0d4b43716e34e007693549f0a

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 033daf47f1e929ee2d94c4a1204c59a4e0ef12aba0587539a8ed5836a7dc5e9d
MD5 f5108e28bf0cb723c885b43f58db81bb
BLAKE2b-256 8e8b43700700178ea5752ee81a76ca1c8b8fe083417a49cec46409e7b8198662

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30551ba181e119b26a1cf9559ec67c18d18a305f4be320a4bd1586c67f43a5b1
MD5 3ccaf8c4b78d25b97e90b17aaad4b2c8
BLAKE2b-256 a30882327b8c036f8684074c45793a645e100fd51a7bb1711e36e2f7b22afb2f

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1b8859257a9c147bd701a3f78498d33fe76bb9134ad02e36bac30278bb4adaac
MD5 44df8bec7f9ef1ea2de46aa7842adac7
BLAKE2b-256 fc531003da244e58c446b61f54f758b7af080dc17622e4a24780075c1a304cc9

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 021ff7fed0cbc50b25f4f7bdf8866edb8641636a8da86e5a79d1574e2fc2ff1a
MD5 f9fec2578d4872c464af30789c26a346
BLAKE2b-256 4d556f06b45020a6d388c1e73ffe1e5ae8063b2b8dc74b62f47b4651e1d08467

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 80.6 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bb0d7c6fad63553a51989d89d366e158271a4329ed3760a78e7240c810d8914d
MD5 041d4dfbd345a600ba650d7f0493f9f3
BLAKE2b-256 28ec0333af62c35c18c945beb70fb01a124fd6f581b193bd0b4ff8dcb77c4d97

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 73.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 874c91d1643028d64880bcc2dbe125e56dec0a66d3fa2728b2d7584ffa518458
MD5 f1b59e853ab0543898a90b93a67b68d4
BLAKE2b-256 4ee170aa9609ba4587fea1e6b4398a24fa088516a9ea6811c1f793c16269d00a

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7d5ea1ab4ef27fec260c7223854f12e4163f1c47e8e7b3d39ecfa8b825684ebc
MD5 949cc66f084bd7d338b98b9ca005366d
BLAKE2b-256 2a996fdaf9e1d0c8ca6424ce63bcb6a0f5049a6f295a1edb55505a9b5d865b42

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 849862465ad1dbb7d5481d709b8f33fba4de218966690d615e0c79f1b6b96166
MD5 bba4a5696453a2c212e158e13eb73cf3
BLAKE2b-256 4d01080fac09cdaa00d3ffdb1bc709de7efe67e8593b205fd2d82879a1f4a25f

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d2b5f0f48141b71eebf654f921f2820579e32d3c950036f9d8b7044bbc5dda1
MD5 042b357b68fadef8fe7f1fed7be60814
BLAKE2b-256 1109a4ba6649a0c9a556e2fac4a9fcb77f9037415178c6ebf0950f35d77a652d

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d5df81f684cac3bfa2c2f7e0b4a1b4c6eade8c5f67e5b60770f80780e28f4b6c
MD5 05758bc4566eeace9826fd32810c23ea
BLAKE2b-256 87a5f83ca31d940cb0a061335bfe9ddf6c9ae83637e7a6064a3493c55d8e2087

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp38-cp38-win32.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 04fab6a59620494ecbd7dbe6b9b5eccd89b3684ccfcd5b0617d428f5b6918e34
MD5 7f2e3a15fb86caf4f124c24b69231d3f
BLAKE2b-256 36d0c2513c3e753339da04873242028b3de9c418603c518c078952c0c7e0f18c

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8f61018dea8f150a864e72ed8a316325fc08afbff98309f6e2d4cdf5ffa723df
MD5 1db89067fddd50dbff76a4df19e07131
BLAKE2b-256 e47ba80b5c291ed263b32e21f7a0264997498541cbc13ac8e97bc86a4886c6da

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 76.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4cb77f90af06ca1bded5b1ed80108bb9829b21d1aa7687a07df2dac4f80af462
MD5 84df63c0a91c39bab564f616d5639a8b
BLAKE2b-256 34310abbc62806fa740077b3a36884a2b688a046cc31fa5bbba416a24c1f4f6f

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a62ddc5b9f80ef0b612aef643776a1ac2c966328ba5ac1302a2c46a15c09e0b3
MD5 aeec7dfd56060dce7c94232a61bca0eb
BLAKE2b-256 7a412f06ed3a68eef1f790912c2ed3a3606f158e1c78b3061a6fd84212103c53

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 517453259d5e5ab40ea33eb3089c204335b61c4153d5a9768260ce0943da6d22
MD5 08b15715b1a8fc76d1bb04a6bcb86028
BLAKE2b-256 a2568acff6de2d3ceb421b879b79f86b0b1fe78c786431e9c988a0493dace95e

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b485fc91843f447fc6f6b1ab0652423173e2c2419418b111935f6927fd44e8b
MD5 523740005fb897e5edf69e7e304cd84d
BLAKE2b-256 7794f2dcb06a4a5063d64a23f733ed8ad3e2aad7ba560eddc5110285e7d43eb7

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 34.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8f1f311725a7f868c94b48bd24e859c7fc089c606744d21a6364d8b9c00a3d77
MD5 d96b28ef53889bfb75731be68b174bae
BLAKE2b-256 079fd14e1658fd969c83ff4189ad59f5e75dfcdf767230748ee1db894ed73195

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bd7e57aaa6748902c4afaf2a320da220406cfb77ca7d14fc0790da4b250cb288
MD5 9be481fc9cddc157e81514b9b3df2b3c
BLAKE2b-256 59e40b4c9626772a8c8415c4a8a6ca203a7eb10ace11a4948cefee1214903e5a

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 78.9 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e7adad9b05cc7bc75ef6e90370e43cf703254021a4886ecf865e3a3bb8df4f6
MD5 20a21d622bde953ef4151741232e1a2d
BLAKE2b-256 ab29a8f1f2c44974c5f21f5f5442d2570e8107a9b5f549241787f039bf9b8608

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 71.9 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 166c35a6920f04e65bf8c99c89d418198b7183dfd2dcd0d9b0c938a615ee2dfb
MD5 1831632678ff008c8656b1950ba814da
BLAKE2b-256 f0c5886b98bd1690136d1b8b3df7630e67f1ee28f0beeddbb1e5ed69670364d8

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 39dafcdc006d848e563f8b8c6e71d3ec8a13b50e4fd57802988411369cb8f772
MD5 b0b51898ebcb5035f0ac99ebf1fc6dad
BLAKE2b-256 332df2198d0b6b9b4f23e746529d4bd5b511f52af16be7fc910875c54620a0a1

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 db0d528a360f9e06b6395baccb06daaeaf18c771a8326b040657be5ec0aafcb0
MD5 8d15fc93fe8d0770c60cfcc3deb35a87
BLAKE2b-256 4e18b574ec84ec6a117c72680fd06586518924dc9df83992a82d8a27b331fa4c

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f75f07588b65e6635e62268200c2f83ad8ae1c105bbdb94c3fb2de8a735b888
MD5 76e11f1aee04218925de504c8cc9cf3c
BLAKE2b-256 32a277939c03d60e7fcfdec77c631b066bfcb453b67c955e85ffebe070c709d3

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2c0b4bc28175b9f6c5fc9ace729fe8bd983cac5e351af0fe3828d48f90611dc8
MD5 5896b382dcfcbde4e07ecd3de724c960
BLAKE2b-256 a1f3e74d756e6eb5d97d211ffb666addcf1b167a97219a982d6916f49ed90bf3

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f5f0339261732a46116d778c263cb58a77438436d845dc9cd3732645eff302a1
MD5 8f694cd139d3d47c91b8273cab31ab32
BLAKE2b-256 7ae261a7826efa2ed93c90d227268d2c0b261b6d957d0529d70ab88e94a0aab9

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 77.8 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6882769999c9dd9b600e62a3c2582ce9cb95077e4e1ac4bb51ba84c6c38d9802
MD5 4f55ec4eca0d8809d589257accee82e9
BLAKE2b-256 4e7dc10bd34c3d2ef06fdefe1cba197101490affc02ed051d81039662c2925ad

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 70.8 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ac83a31f54ca5bd40f76b1433c1b0658fdf41d2bc09fd795fbdc69c5bf0af3a7
MD5 fcbbf7fee774dddbbc21d4541e737eb8
BLAKE2b-256 1724cab3f9ce99e06cdbf91c1dd557b596a4d21316c5e5128ecf7e09cd96882e

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 db886ca0ed66d6799cc2b2ecaf9a053aadb954043481275003b10383fce6e378
MD5 f69202661a460c215007ac577c72c902
BLAKE2b-256 6db3d19721852975322bc0b97a8df76b6a7c26e90dc3f7e7468fcba84a901dc1

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f759dbb6d9092b03291115ae27992851aaf2fa0f642b1fdaeea95fb4ec663f89
MD5 e53c2d2988b1589296f1c9c175a6c187
BLAKE2b-256 ef07ce5000d21639bfdf2073e2f68e1b0f99d73c7765cbe1aeb35efb00302931

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44c78410a7afdbb0f810b9dd8d7eea2e9607f72eb3f721ae7bc8699c384d7ac5
MD5 0ca3b0967e2e2b6adf9814eacb2f7f4a
BLAKE2b-256 ff572636e07d605aaace94b29463b0b6fac86fe582ecfa96bbc349a33a21b007

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 645477a16d2be764a7209cbb452df09f13397f138474301e45b2c1302cf20d0c
MD5 22cc4b3dd6cde9979fa8b7fc7feccc90
BLAKE2b-256 4ff04e19144dbb70a5c450e03bc46833b6df4019e71d089608c7e9f69544c199

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f2f37be3c32bfe88c13b8c397cf88e0cf796f341ee24e58c1356fd878ffedecf
MD5 973925163d748bcdea11d2b50e9dc1dd
BLAKE2b-256 34f0cde03eb7c558c30d83ec31f2bcc2121a30f94a389f9b1fec4ebfb0ae707c

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 77.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d86787fb9d00b0fa4e4a6da834d03c5064524e1c3ebcbe9f76ee5d509859b34
MD5 d1a424a73068d722db17e59402619ff5
BLAKE2b-256 38493224e53f065839dcaba85d6576d93cca578fa58c069d990f182e992272d3

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 70.5 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f068ec12a2b1ffe98b65ac9323e0c0697dc3eb43b490fe003c4fe4fa2b59d41
MD5 e0aec9d70dcf444f492da9a7099ba095
BLAKE2b-256 bbf63e5120356402fc496cdc3bce47ce15a21a7f97f06ab52f84a0c1d725322e

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 77.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fbccbd0fb6b77fa547d7893e4e7f571d73993687552a7f07ef6c09b4ebc8ad3d
MD5 f3262fc74bf4e4ef095a9686d15db2fd
BLAKE2b-256 6216d8999c0cdfaf7364366fc0c429780b60ddf9368f8c392946dc36afd81d3f

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 70.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d8e2b9fa294da4bfa640df1529fc8608b74f7cb57a4ae089936eba212248c9cd
MD5 e99ac7d2738f3f5ae554af859f51c9c2
BLAKE2b-256 cec349b92a92591111e294fafd4240a45e19f1d26b1e2713042c6f52f8f96165

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7e7425987f37b62d1122733bcf62af3f5761540e8c3427fbff9b6c933da057a6
MD5 4e3de0810f10f93709e8e84f07e92a36
BLAKE2b-256 ef1f2053ad180d5f608a42a1f4affb242cb7bfaa93f3f79f1aa4d4cd5bfa1140

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 24d5f97fb4a321dff14a93c05fdbcb078d24f94db52d1aa7f675d845b7ae95d8
MD5 bd8f020f692792bc5c27f1629ba8daae
BLAKE2b-256 950dddc2474257916362ca78f0968be64c23e079fffce2d3de3e523c282e7c2e

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 37d696aba10753e439939659a22c29e1151e88480e55a0238375835232a31b63
MD5 4c3efa786129c6c188bdcd4748b4a5c7
BLAKE2b-256 19248b73f125e51622b8009c5fed11dfa6e2644a78fb514afffd2c2f647dfcdf

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec63c0a6066400fce9f1c099df25a88d5a5e7eda65050e9e63dd1ee2a631fc9b
MD5 ef33e9897a348d6ae799805de0f60f8d
BLAKE2b-256 be1e31cda230d3b4d750ded5a995ce751fa668b9ee7a6c484ff490b5de2be071

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ad8b403c50ad835b23045d3c21051a14f01d17371a25de96d79f699a83aea1b0
MD5 62d08fa3247620efbb628bd03a33847d
BLAKE2b-256 785fa214d98caea61d2bf63f9a4e48d50da9c0b6e9f1c6a0d8e707d57406bf28

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 66037c81eff1fdf40e1cd123956a2e2525a04fc3eaf8c03ca95a79ed43290776
MD5 0ef698d9e7f74539160715a179ed9186
BLAKE2b-256 b0dae4d9918d7e3960b95e0c8f9f9e61e9521dbec8c882a671964a94b8739820

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 777698b15bdc35640e085e865ca46f86fb0377da7a79d8c75a464bf054484329
MD5 d163f9b89c94761b403b4efaadac394c
BLAKE2b-256 131b392b8d5a33ea42818edd628904f4788f38f6ab896408df7526738f4ee0b9

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 599ef4a340c75a068daf3f21d44e9ca7f58a4d81bf28a5e2f6fc69dddcff8eb3
MD5 a6c67a7f0dda9c0a1bcc141288f36089
BLAKE2b-256 50539b1e5410b05b99e14a71cd8c75dc454ca8fa0c0da0c965eabbafc44c0d03

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc2-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.6 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 123c1037b5c7b970fd53bea3cd6e0e99400f69a67a80b519ee498ad2f68584e2
MD5 8595ed40ad1784b876266bbb8a4bab3e
BLAKE2b-256 1ffc630825d116f2c2484ae9ca00537f6a4fc5901f7be5e70a5c756d69564462

See more details on using hashes here.

Supported by

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