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

Uploaded Source

Built Distributions

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

wrapt-1.13.2rc1-cp39-cp39-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-1.13.2rc1-cp39-cp39-win32.whl (32.6 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-1.13.2rc1-cp39-cp39-manylinux2010_x86_64.whl (81.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

wrapt-1.13.2rc1-cp39-cp39-manylinux2010_i686.whl (74.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

wrapt-1.13.2rc1-cp39-cp39-manylinux1_x86_64.whl (81.0 kB view details)

Uploaded CPython 3.9

wrapt-1.13.2rc1-cp39-cp39-manylinux1_i686.whl (74.1 kB view details)

Uploaded CPython 3.9

wrapt-1.13.2rc1-cp39-cp39-macosx_10_9_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

wrapt-1.13.2rc1-cp38-cp38-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.8Windows x86-64

wrapt-1.13.2rc1-cp38-cp38-win32.whl (32.7 kB view details)

Uploaded CPython 3.8Windows x86

wrapt-1.13.2rc1-cp38-cp38-manylinux2010_x86_64.whl (84.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

wrapt-1.13.2rc1-cp38-cp38-manylinux2010_i686.whl (77.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

wrapt-1.13.2rc1-cp38-cp38-manylinux1_x86_64.whl (84.3 kB view details)

Uploaded CPython 3.8

wrapt-1.13.2rc1-cp38-cp38-manylinux1_i686.whl (77.5 kB view details)

Uploaded CPython 3.8

wrapt-1.13.2rc1-cp38-cp38-macosx_10_9_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

wrapt-1.13.2rc1-cp37-cp37m-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

wrapt-1.13.2rc1-cp37-cp37m-win32.whl (32.4 kB view details)

Uploaded CPython 3.7mWindows x86

wrapt-1.13.2rc1-cp37-cp37m-manylinux2010_x86_64.whl (79.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.2rc1-cp37-cp37m-manylinux2010_i686.whl (71.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

wrapt-1.13.2rc1-cp37-cp37m-manylinux1_x86_64.whl (79.1 kB view details)

Uploaded CPython 3.7m

wrapt-1.13.2rc1-cp37-cp37m-manylinux1_i686.whl (71.8 kB view details)

Uploaded CPython 3.7m

wrapt-1.13.2rc1-cp37-cp37m-macosx_10_9_x86_64.whl (33.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

wrapt-1.13.2rc1-cp36-cp36m-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

wrapt-1.13.2rc1-cp36-cp36m-win32.whl (32.4 kB view details)

Uploaded CPython 3.6mWindows x86

wrapt-1.13.2rc1-cp36-cp36m-manylinux2010_x86_64.whl (77.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.2rc1-cp36-cp36m-manylinux2010_i686.whl (70.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

wrapt-1.13.2rc1-cp36-cp36m-manylinux1_x86_64.whl (77.9 kB view details)

Uploaded CPython 3.6m

wrapt-1.13.2rc1-cp36-cp36m-manylinux1_i686.whl (70.7 kB view details)

Uploaded CPython 3.6m

wrapt-1.13.2rc1-cp36-cp36m-macosx_10_9_x86_64.whl (33.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

wrapt-1.13.2rc1-cp35-cp35m-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.5mWindows x86-64

wrapt-1.13.2rc1-cp35-cp35m-win32.whl (32.4 kB view details)

Uploaded CPython 3.5mWindows x86

wrapt-1.13.2rc1-cp35-cp35m-manylinux2010_x86_64.whl (77.7 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.2rc1-cp35-cp35m-manylinux2010_i686.whl (70.5 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

wrapt-1.13.2rc1-cp35-cp35m-manylinux1_x86_64.whl (77.7 kB view details)

Uploaded CPython 3.5m

wrapt-1.13.2rc1-cp35-cp35m-manylinux1_i686.whl (70.5 kB view details)

Uploaded CPython 3.5m

wrapt-1.13.2rc1-cp35-cp35m-macosx_10_9_x86_64.whl (33.5 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

wrapt-1.13.2rc1-cp27-cp27mu-manylinux2010_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

wrapt-1.13.2rc1-cp27-cp27mu-manylinux2010_i686.whl (66.2 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

wrapt-1.13.2rc1-cp27-cp27mu-manylinux1_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7mu

wrapt-1.13.2rc1-cp27-cp27mu-manylinux1_i686.whl (66.2 kB view details)

Uploaded CPython 2.7mu

wrapt-1.13.2rc1-cp27-cp27m-manylinux2010_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.2rc1-cp27-cp27m-manylinux2010_i686.whl (66.2 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

wrapt-1.13.2rc1-cp27-cp27m-manylinux1_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7m

wrapt-1.13.2rc1-cp27-cp27m-manylinux1_i686.whl (66.2 kB view details)

Uploaded CPython 2.7m

wrapt-1.13.2rc1-cp27-cp27m-macosx_10_9_x86_64.whl (33.6 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file wrapt-1.13.2rc1.tar.gz.

File metadata

  • Download URL: wrapt-1.13.2rc1.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.2rc1.tar.gz
Algorithm Hash digest
SHA256 371e3ce501cf04f10bebf1649cd80a72bf2e3dc22adac738c556c476e056b6a6
MD5 6a077510cb32d4ea91467837ff9bb8a3
BLAKE2b-256 ff674dd31cc254369f85356a37816b2a1a7eb3221aa6a63b6054fb1b62625d5c

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0bbe2ef0d0595a175797ecebca7289947926f1d846ffc92a08198efbabfa6b7e
MD5 6fb88a704c03a335fcf4beb9e094c987
BLAKE2b-256 154a2baac4055bdbf9fd70f946be05a8bc3274676facd5e48f85be96d8c46974

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 32.6 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.2rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9b6a178970936b3d1b1b72ff36e64c50971356fc7b75029b083b3fb182d851ad
MD5 1e947281cab009a206a1e7b47b16c1ee
BLAKE2b-256 c7a5b7b965d8d5a6488b7f3b17e30b0b61e12eba22708840494c191b44405a88

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: CPython 3.9, 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.2rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 583101aae8a34e5d8228c6f30037c6dca0a8f0ef6a05883691875994640d7814
MD5 f349e8b9dd3d9606a595d22875b5f398
BLAKE2b-256 5a0243390603473912a9b0a06e8fa54d4855adbc8c7ce9cc0763b061481e4980

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: CPython 3.9, 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.2rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 44fe2c5bf7a630ef27e503feede8c3fdc25aabd4e5a4d971a7b91d7e08643e65
MD5 7f61640c406c1c82fe450881c7736652
BLAKE2b-256 b31fffe04f49bbe70a411d72ccdf9a8b8023887d895ba7dc1c10ee72dfe6d686

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: CPython 3.9
  • 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.2rc1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 176f78297fc4367f552e041d1b9496b353b691b1b3cf3538848c7111c2d4ee79
MD5 458837eb587d5ecc4266bf8f33a5e841
BLAKE2b-256 1082ee3cf6cb939f6026ed7c7b9b5956857c29d748cf762b19b8244a8649ca73

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: CPython 3.9
  • 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.2rc1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf7f5d6b92092765554fa3d60cf2c855e0f7bb24183fcac0b57960e48ed4ae39
MD5 2e11750d69d086e33f5a80bc945616a9
BLAKE2b-256 2dbaaf3bc2ee4b774cbe4a064da2ea7986cced54556615859e4e14941f77ab74

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70a17168514f82be49d2425c3c9d85080e777ddbced43c5e477d0283be0d0299
MD5 92445d2ea8805a62fdbdde6dedcc5d43
BLAKE2b-256 4176488287acf67915575eb91285e0ccdc23bade601170e703c15ee098d4db7e

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 381c69a06b3c966d7c33c4592e2162dc806ae6dd228b548a9c72998681a36324
MD5 1a1fb8d049ad87507583d279638b5a09
BLAKE2b-256 f05577c4c5be4dd1b34d73786cc0f340c14b6d304829f986e12015265182bfd4

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 86f98f5dd64a5bce592a9833a9fb4a0030033f9dd2f29cb3e0f21093d827720a
MD5 16bdb72fa223e16ca566ed86bd3bdfdf
BLAKE2b-256 6175c615f75ecc61012ded691b08d8b4c02f048e8ae0df3440ff6f1f69e1a4cd

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 84.3 kB
  • Tags: CPython 3.8, 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.2rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 11417019aba5b9a2b82c905e2a21933b19e078f837a677fb9d1aa8cb5934e314
MD5 8de0d8aa8ad09f9bb46031ad678c7179
BLAKE2b-256 ba40bb9043ed44edc5e88894602bd0b005c4c378959cfb4f7c766b28086017a7

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.8, 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.2rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 be81db26c1fca9e913b291ec8100236c2631597b6e0e6ffb0467429b193d678b
MD5 1be33ab9d884f4e0cfd6a5465f45cdd0
BLAKE2b-256 f91fa6bb3fa0790d23d8720f74ffc95a6c940fc2fb1df3532cf1409546f2a949

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 84.3 kB
  • Tags: CPython 3.8
  • 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.2rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9fea479ab374b0d46658d1edd5d17acb8de7c58e46edbdfbae981121c84f32b5
MD5 3b186a22d0335718c42d9af7f706b7b1
BLAKE2b-256 0126b23cff799606a9794d96cb376423c63c4504a3337476582b1c1f48e4df91

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.8
  • 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.2rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf12cfed25aeec1fd2dd9b12f45d291865ac7d69e000440c91738301e9afa3fb
MD5 5061a74980c339204e9b09621dcb65d1
BLAKE2b-256 158b7c71e84961990693b4efc7d337bf08d7b013de36be628ae99c592694d054

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94a2df48d34a9f37333318f9e2a2f3028488fd159fb1600d5113c0cf104b9eea
MD5 543d264a305094aa0dec1b333b9dc9d1
BLAKE2b-256 047b1af26fec428a15cdf880b3d2505c58ae6cb4ad38e10374974a4f43bcf149

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 50562fc835a1aa86e77b8c4c44e08c1ec1e3bb31ada0a2b81f4d423d55369f8c
MD5 caa02e58e9fc80bf00e365a181b4bb59
BLAKE2b-256 9c6f626248aa7c12cec89accefc760f59055a046966ebbec1ad534ea22411e36

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c1ed877e98eda3dfbda8042509e2cc48e47c1afc96ed33036d51a0e31dcf4ab7
MD5 b84020bda84ed5c8ab8917defe9e3c2e
BLAKE2b-256 807324d5beefc5973d6cbc2f93491eade8951a2c92555aaa1fb38ecceb6269f9

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 79.1 kB
  • Tags: CPython 3.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.2rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9b8ae9abb70148551d07e4551b6272ab39299a48b08c6f6019f3dc2beb43cc79
MD5 e70f8eee6563a4d6f53c778398664bd2
BLAKE2b-256 58117593f2ad3afdd8cbb489adebe89be344e92341febe0076e130b8d63591e5

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: CPython 3.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.2rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c23962169585e7c659393cc1b028a150e4e661708d2e08c2ab5c2ae5bdcb2a3d
MD5 224752af39f1fed938a51484ab93d2d4
BLAKE2b-256 a2817c9f7f0be9feb782eb550a9aec96fea271a2ec429c853408e444901c6013

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 79.1 kB
  • Tags: CPython 3.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.2rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f1d47e8f04a4f6e2633074944ca331c68c9c6de9f80975a7734f99c2b48b0dfc
MD5 c48baf094dca18b4194a61f34830d611
BLAKE2b-256 00282b47330ac5d1d40d9830c827e96739fd107b7aec2b0f85613df04a196a45

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: CPython 3.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.2rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3ef7ab25a77182aec148deaae7726322827fa6c8f943ed880062cee6f1272881
MD5 390938e9ef91d70b565bb8e2fed9c558
BLAKE2b-256 73c83d74abd357fa47f2d0db75480621b7949a5ca51c0ac926abe75883f73f9f

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17eb719097545b6f2a768f241e4d8eb6636b5f664805d9666c65eb21ecc2dfa4
MD5 03c30cacaf61eb3c058d61e6dc67a53b
BLAKE2b-256 1753db37008677df3900608fafb0fcb604c036b5b83104fd21058927611a95b1

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 34.7 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.2rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c9d5961c0d28f7314351c61abede0b2978bef75501dda486e5242d396f0c4c3a
MD5 51b510dbaf502bee5b08f22dea429054
BLAKE2b-256 cd8405f34a180286977c1f76ff723a6fd1188a0fa0bbf725c0625dacd07c4ec1

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 650abae69406b38a31fa533b7d2a9df0b501d191f8778f9c2b7f87d4cc6bba82
MD5 221e6c0c0ce0e325cea7260776c2b84e
BLAKE2b-256 5aea5632fac51e0aa74db0b30c24c88fd7806b565cc2ebcb10f8431596893634

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.6m, 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.2rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 09ac3d7b360abcc606b53bc5373b0e1bb42942e45f3b78fb4f34c119541f50fd
MD5 d8ab0daccf4e4d38c78a317c8472cad2
BLAKE2b-256 9f7c6ffc1b04b2e03391193cdd89ebddd4cf0fcc9eb3e13ee5b3ba7c0d60858f

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: CPython 3.6m, 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.2rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5e8d03cf90f7b9d4c25898f07962933dfd50f7fcce89ca24f1f86011ea89ee96
MD5 400ceeddb65100eec9345d5d9ae1cda0
BLAKE2b-256 3a184d281a914f6546eab60db114d3f0aa5b6605f67183fd0da6af842e8ac2eb

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.6m
  • 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.2rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 784b636b4d800235d48999d457717e32415d52ae4c00be4556695735c459d60e
MD5 0b31ab188ab8f0e40059b034d5f32c60
BLAKE2b-256 5e87f6061f79d8e516a06678f202b0ece3bbdd84c044c89369824a3fb4566295

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: CPython 3.6m
  • 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.2rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac5d2c5a3d0a066a123a674a8d3de4c507e481e17ba700f0ce11504f27c53a92
MD5 93661a5dc5284e51c7b28c2e6fb46e7e
BLAKE2b-256 2c4fec8b9ed197e8e6be3c0150e3c6b97d83e0099148377f8bc12e1990d57557

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c43dcf85b62ac58ce52de0abda8f15bca1d1946af845632a4c73af96f7b63b3b
MD5 3b81587cab4dd16c63c77b66921836db
BLAKE2b-256 392c672c061b3e11506381eb81217a0f43bee1bf52e6f85cf8b36c9d5f2d0094

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 34.7 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.2rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ec677b84d812079e3f86f59c6147a14aff9357571a0336725475cca90351b3a0
MD5 4e36af68c8460fef29bebd4547f1f71f
BLAKE2b-256 4076c5f33575e90733969f4a60b3be938ddd2917db5518a2ad10f2b23bc2dffd

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 624c6b6a181682e263518ba125c663454f94520a53490dc6dc72121ce60f6058
MD5 bde49899a8165852864b1cdf8289a60d
BLAKE2b-256 598dad1e7fe7253f8518b3ad98f3653357069d577154bcc1a1a81cb0288327b9

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d2e56114454db1e7b110437282ead88b7f78a00bc22374b2a9d16ccb7f657440
MD5 f0468fde9b5187e129ea5b3d491a1166
BLAKE2b-256 b278f7c5e544178f821e508e3a6fe7a25dff9a1ef4c1857bdcf8280f4893f79a

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b4195310f1b2477e14721f9f4d4fb0e5f6e570db3f8eb8eedd66f2bdfc808c32
MD5 a382954260f03949d5d4e9b216fa7f88
BLAKE2b-256 6faa77d9bef44e141b8650de039fd36ee426bb1185f7dec1f0ecf3be645919a7

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2f47bf736eda9e7a1ce3e99d79444448eecd4a0e40138d772f3bd98e55972e20
MD5 e174b4a1ffad16aab3dcbbe867e29528
BLAKE2b-256 36dadf257426adc1e13310c17d9314ea1aeee73e2f287cab58ec72c08525174b

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5cc269d235e324cc24be365a33029219dfd09df61960834a2fb1f48e3b8ac0cf
MD5 02a4f5f7c4e32256757e36daca28c1c1
BLAKE2b-256 3560b0aa40f9f4eac381bfc028b4aef788e1181bedb39d4a5d7d690e2b80e92f

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: CPython 3.5m, 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.2rc1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bf43c95516149ee5e56219ff09d9385d90de2c89303549e72469b5a2be4d542
MD5 d103957ee9bbf1b757fc623c8ca03bb6
BLAKE2b-256 125f9d27e4311ec60a10a14232dd20420594986ea435a7ce37af077fd99ba008

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a5927e107d0c42336c5bb00d4b0e9ea392d93cd640630dffc58a5db6a0dc3587
MD5 887b8a2406488601b0c2789ff7314655
BLAKE2b-256 e5a66a1f6e6ab0472d1318669e100e7a7f9c39c95092d28277d88c7284d4b8ce

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 66.2 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.2rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 53b74adf02a4e6405bfef1d2199d1d1a03624a3a7c8e11a8fcdba8bac241c74c
MD5 d59941df56751e86e720beb701639775
BLAKE2b-256 a12a30c1d544ad8a5c802d6dbe133824bc5ba5b1d6279d299ec0fa27fc81a50c

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8585b84476436881593a0751d582ee17f0b6ed8fa9701f252c38fe3415f98de7
MD5 b7c63337327011193c7132899199958a
BLAKE2b-256 6957809ae365e44a70fa8c0fa905b05fdd3a3213fd042c4c9dae906f1a936e01

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef6220d4c38e9e9cca297fd556c150dab4e4d44267547053ed802649bbcf5e74
MD5 4b2577a153009ea72c95d1e8ff5eb544
BLAKE2b-256 3884ffb84b1c13b43d43191684099310b269ed438b3a421241e06a0822d31ec7

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2aed05a5b1ec2870f75cf6755bac59080394469a3d7a08be2a488ec54cdd8928
MD5 caf26371421e579c9afb823ace4ad011
BLAKE2b-256 bb422e2c1f5234d956989f5a795ec50556705907c7b67ac872dcf7c32dd26e9b

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dadf5367388d261c3929c5972fd298b08989e32a8f83b2060dc4d323e10086f7
MD5 f21e837dcc3fa7eeae80bd20123aee56
BLAKE2b-256 57c9cbfd9a0b1d5e0f2079edfcd7d58ce1ac6790722c8090e85ef749241ee17c

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e883c6010fae3f4c36a4ad210abb7af1e5aac4f7148f94b77720d78103346229
MD5 3708cfb04b0efe67fe9749ff3aba0df7
BLAKE2b-256 5cc40be75dec157bfd56cd607a61b33764081f08b4fbad7cc944071feeea1c33

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d38c077ea7473be8c94970ccba4ebe16c37a7e38f274c4d02d630905cdabb41
MD5 600e202c0a65074044cc19fa79bcaa91
BLAKE2b-256 36d0ac521a9b4c09e79d592e17852581ec2671f06d1b5847177b2c68c79014e1

See more details on using hashes here.

File details

Details for the file wrapt-1.13.2rc1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.2rc1-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.2rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc04619bbf7ee1e48abff3daa4ce71efd907204e058d29f0753680cbf16f31d1
MD5 b28aa9e64c93d54736814d17445e0e92
BLAKE2b-256 bae43f8b5afa1ba7c149825b9be09aafe378e04ec20876cc818b6a7426d12e09

See more details on using hashes here.

Supported by

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