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.0rc3.tar.gz (49.2 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.0rc3-cp39-cp39-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-1.13.0rc3-cp39-cp39-win32.whl (32.6 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-1.13.0rc3-cp39-cp39-manylinux2010_x86_64.whl (81.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc3-cp39-cp39-manylinux2010_i686.whl (74.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

wrapt-1.13.0rc3-cp39-cp39-manylinux1_x86_64.whl (81.0 kB view details)

Uploaded CPython 3.9

wrapt-1.13.0rc3-cp39-cp39-manylinux1_i686.whl (74.1 kB view details)

Uploaded CPython 3.9

wrapt-1.13.0rc3-cp39-cp39-macosx_10_9_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

wrapt-1.13.0rc3-cp38-cp38-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.8Windows x86-64

wrapt-1.13.0rc3-cp38-cp38-win32.whl (32.6 kB view details)

Uploaded CPython 3.8Windows x86

wrapt-1.13.0rc3-cp38-cp38-manylinux2010_x86_64.whl (84.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc3-cp38-cp38-manylinux2010_i686.whl (77.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

wrapt-1.13.0rc3-cp38-cp38-manylinux1_x86_64.whl (84.3 kB view details)

Uploaded CPython 3.8

wrapt-1.13.0rc3-cp38-cp38-manylinux1_i686.whl (77.5 kB view details)

Uploaded CPython 3.8

wrapt-1.13.0rc3-cp38-cp38-macosx_10_9_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

wrapt-1.13.0rc3-cp37-cp37m-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

wrapt-1.13.0rc3-cp37-cp37m-win32.whl (32.4 kB view details)

Uploaded CPython 3.7mWindows x86

wrapt-1.13.0rc3-cp37-cp37m-manylinux2010_x86_64.whl (79.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc3-cp37-cp37m-manylinux2010_i686.whl (71.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

wrapt-1.13.0rc3-cp37-cp37m-manylinux1_x86_64.whl (79.1 kB view details)

Uploaded CPython 3.7m

wrapt-1.13.0rc3-cp37-cp37m-manylinux1_i686.whl (71.8 kB view details)

Uploaded CPython 3.7m

wrapt-1.13.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl (33.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

wrapt-1.13.0rc3-cp36-cp36m-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

wrapt-1.13.0rc3-cp36-cp36m-win32.whl (32.3 kB view details)

Uploaded CPython 3.6mWindows x86

wrapt-1.13.0rc3-cp36-cp36m-manylinux2010_x86_64.whl (77.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc3-cp36-cp36m-manylinux2010_i686.whl (70.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

wrapt-1.13.0rc3-cp36-cp36m-manylinux1_x86_64.whl (77.9 kB view details)

Uploaded CPython 3.6m

wrapt-1.13.0rc3-cp36-cp36m-manylinux1_i686.whl (70.7 kB view details)

Uploaded CPython 3.6m

wrapt-1.13.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl (33.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

wrapt-1.13.0rc3-cp35-cp35m-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

wrapt-1.13.0rc3-cp35-cp35m-win32.whl (32.3 kB view details)

Uploaded CPython 3.5mWindows x86

wrapt-1.13.0rc3-cp35-cp35m-manylinux2010_x86_64.whl (77.7 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc3-cp35-cp35m-manylinux2010_i686.whl (70.5 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

wrapt-1.13.0rc3-cp35-cp35m-manylinux1_x86_64.whl (77.7 kB view details)

Uploaded CPython 3.5m

wrapt-1.13.0rc3-cp35-cp35m-manylinux1_i686.whl (70.5 kB view details)

Uploaded CPython 3.5m

wrapt-1.13.0rc3-cp35-cp35m-macosx_10_9_x86_64.whl (33.5 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

wrapt-1.13.0rc3-cp27-cp27mu-manylinux2010_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc3-cp27-cp27mu-manylinux2010_i686.whl (66.2 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

wrapt-1.13.0rc3-cp27-cp27mu-manylinux1_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7mu

wrapt-1.13.0rc3-cp27-cp27mu-manylinux1_i686.whl (66.2 kB view details)

Uploaded CPython 2.7mu

wrapt-1.13.0rc3-cp27-cp27m-manylinux2010_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc3-cp27-cp27m-manylinux2010_i686.whl (66.2 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

wrapt-1.13.0rc3-cp27-cp27m-manylinux1_x86_64.whl (73.6 kB view details)

Uploaded CPython 2.7m

wrapt-1.13.0rc3-cp27-cp27m-manylinux1_i686.whl (66.2 kB view details)

Uploaded CPython 2.7m

wrapt-1.13.0rc3-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.0rc3.tar.gz.

File metadata

  • Download URL: wrapt-1.13.0rc3.tar.gz
  • Upload date:
  • Size: 49.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3.tar.gz
Algorithm Hash digest
SHA256 ce26a6947368841837f22686e4e57144fe5d8e5297fea3eb716aa5a284934633
MD5 eb0b68fde6ea42295497126ab0ddb799
BLAKE2b-256 1b5080b45f3ded09fd416a140bb872bb205c8f6da433aa87d2759745ecee8d4c

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9f3e23a2724df54584ca5d0c24997efb3bd29a1c66ec7863ff004983d73676e8
MD5 ba385bc9b24cd55710e281c5af667c2c
BLAKE2b-256 f60a7670738f05ab79d4b4f117ea052eebb2b5f6ed3a64cc0d7ed86a65d42d69

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 77503a832ece9d3068c37d2c69cd9046c4b6f244daf6a017b099ea1a1c35543b
MD5 8ebebda6240a1bbaf382ed58c519c2ab
BLAKE2b-256 3d1e1dd3129a21ab9d4b6d721f5854af957ddd6eb757f0aa1ae9f6de8839b8e0

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9c8a6a27b6160b7c1c6c901257434c842b9a54849f4c939b8a3783bef636b810
MD5 82727af3d531e956884382d393de4168
BLAKE2b-256 b87539fa747fca8638af65a870485c01723bc5df9dcaadb4b576d3ef9499b9e7

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 be27bd352bfa23bc634bfdeea58c51773a7877205cf997a89a9ceafa8fb78cd6
MD5 012581c4c15080245bd81bbc15f0fe66
BLAKE2b-256 597d9745acf166388cf613dd38d5ecaa73198c6d1797c6e54a482f0291a8a1c7

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 29df7b9e903bba0997198b3bd5aa68411ca47d83d7adf735874e99193cef593e
MD5 ea4b0dc9e949f28dd6964b16faf4294d
BLAKE2b-256 463740f1c671609562be6f692a2472fc5c7a0bfbadcc475b06ceb9c038a716df

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf1665c98bdc407cf5e57c21044542603b08618bac1ba4a5056e01d81e0c5e1a
MD5 e04558c1f68b15f05d50135dfb5cf41d
BLAKE2b-256 1eed51d5450bf702686c06cb7472bbfb38bd09237223e3f32826c3e986769222

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee3a5938747e8b9d5b2770decac9ff212770f65b23c6b20d1a1074137f653fb9
MD5 8663c2937053f07d7f21fe70eaf912ad
BLAKE2b-256 ca8eb01310c1fca71661fa9682e48511ee5806cf70197988e3482e5bddc19b73

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f92d512e804b109d8af3e2df249bd532ac754bbd35b29c5d665c4694ccb7d0ec
MD5 36b7b7a2ff56afb62cb55e1f5cda0004
BLAKE2b-256 f4e5586c8f90753c55bf653171e803f46f458728fb3b214f84140d330ffff648

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp38-cp38-win32.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 75d2a7b5fc55211654647972eb7c06b53b3494c6a7b4043bc2180c1f1d9b583e
MD5 84ff2f2b1b6f9b8952dc4da67f3aba31
BLAKE2b-256 ee61651063c075de0bd49b54038f5a35d78fd41e94e6b550a908d687c96254f5

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c0ea863046df494d8bd982a8a4b98e0d7d12398d55e94c26750d88aaeaf98934
MD5 54f9f6fc94a204c78bd1973e4f26f193
BLAKE2b-256 9342c357a8e4561fc1b02740aacdfe8016543574088e9396a3e760c262fda860

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 85aa0beef8193aea3a20f2628d851b94fbcfa11488aabdb86b775e4e468756a2
MD5 f915a76c6c658736bcc385fb18d1aaa5
BLAKE2b-256 c2341e5e9f30fc70bb2e1562cbf104742ded5707f270c3e3bd54896bd8d75de6

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 84.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f44ced4de15ec5627a7dffb1fdc071381361a99b34c3d59c365df1e1b9aafc06
MD5 25eda9e9e1a2a66bd0f4ab0dca645faf
BLAKE2b-256 9cadb897fe108dc6ac80fc64a74eb9165ec1ed7cbd3a3ab2e0e2f1de1338bf29

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1882e6553e7e16bfa9ab749615d593c22fd9c783b1e288124b9495e9b1bfdb7f
MD5 e5af6221bae184da952d8b4ceccf09ce
BLAKE2b-256 7ce35e3e04fee93f9afc8188ed032f9210295c436a36a9ae53e5688d633588b9

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ed3de6474eb2e390fb4ab42146c2aba2c7b239f94f9f5730481e83bb8307d9a
MD5 bdba1de001a9cafef84435121cbab932
BLAKE2b-256 86490b72c59d6fc643fa25c2c14d9e4b9cdf8832781bc658c9cbba54abcd7a58

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a1e462257c7fda7edef613afa6de7ce9b5dec215b9fd41d5e0c424a92b94af35
MD5 cf97fe0ccf803c00acd0ce9087859780
BLAKE2b-256 2bbead6fd7c27be460796c9f23efae3f52c2002efba1f068fb3bf618a8106f59

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bafafa51acc2143368ff39b994f00472a4b478c9959fbb9ac3a3edd4b2255848
MD5 1faa9854183652209977ceccb79d4c33
BLAKE2b-256 ea3ff65be667a0c94d9eccb9bcee24c025c7f39bd4fd488c5fc04f1e3210b2e3

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 148d6660efe876d782a3ae38a6cb501d74a675248b4e2b618c80308c1ee9c521
MD5 013eb7ef70ec180c2587fb8f432a07b0
BLAKE2b-256 49412d60dcb48f8258c4da9010ec6f8a593d54211f5270bf71a47b51ff6d1173

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 11b4d21fac4d9eebb9d4dc092858bb9e43dca13738e4a41531f86ba913d25830
MD5 da77488ad593edcd0a970c9c8fcdd95d
BLAKE2b-256 c9f656e7b67d0f55e57e82cfdc48ee255ef74e8897d4d82fb97b85b6c4a4d618

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 79.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 448084bc3da81f325980a7499e311e81e6de442cc87d9253b758f75636854e5d
MD5 0ab416ab550afd88ae5a0037cf8dcaf6
BLAKE2b-256 e169c405878cb5bc49d99a1f1754b1e28bb129710a32800ec21bf0dd4d5f925d

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1c92036e159ddc4a1f6f9e5fbd92289a0953a79a3baffb143ae98c70530b876
MD5 5f0febca6ca89efb6cae2c00d8e0ca4d
BLAKE2b-256 684fe6d3acd87bf2f2d6826566c46f5815849bbc980c1ea6681d300af1dae43e

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 edf79fb41cb4346b5d4e52a18a60db3ab61280e808df1ba2840d06817d02ef19
MD5 aa938e9d9938e4a33f3da22e0404313b
BLAKE2b-256 2d2efcde12a9e85396e7fa3e77197e09febd63219184e4473f66b9eceab93553

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 881886a8c9a6431c56c17ff654978e681f5c8c77021cdbb5d3e402dec72f1f44
MD5 a9d85ef6900dae35df6ca32359466d4a
BLAKE2b-256 3b20cc5e256f961b6a94277ed0dce8cca1639e5b0abdc7f2cbeb7f260514f482

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 32.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 14dcfec369c1de945dbdf80d9c5ff4c45dd2700f5f44ebd5419246856a33ca63
MD5 ac14c6a8315cab50b371ebf33edf7c95
BLAKE2b-256 862cab1363c5a5baa7f2bf5d589ba724c3ee484e4760633dbcd10710c503d9b4

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fd5e0f964e0f00f5870cac49de0b645678652d06b54bf4877f4968e58dc622f5
MD5 b152bae22d028102c4b54d74ddb60ae6
BLAKE2b-256 86fb1cd9eeac80857e2c9e4e1f1da6de870a82ec2ca7865d27b88d4000abdc60

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7dd7bc9879cf69de61bda7366c82955b57c3182c1b49975ea96288452680f9b5
MD5 986ec82e47b056582df717db2af8a739
BLAKE2b-256 61528ec4426fe7514cfad2f1d1a84601eb91a6ae3df7d16526c251fce1a0a9b2

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5cf7d121a5a7610b554e907e31898ad42d62a2f98364360e4777eeb901e832a1
MD5 2589b7f196faf141b88e3649e2a456c6
BLAKE2b-256 e574669f555438d33454ac435de5ef8ceac0a875d6ee3ec2ce8a5ed4d25038f0

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0977368a60477690475b64c823a74fc5aaba553aadc1b7aaf9c0f3847fa51b4d
MD5 cc2e4948db726eed13dae282467d18db
BLAKE2b-256 49aea52cd1dce7ff9a45b1c5a3582a7c657f37c90fa26afc22f584af6aa37162

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54a207e6c5f594b7b0feff4c7ff9a25325c126d78ee85081f3a43b7d843a9575
MD5 a9df4d1f571f5c0b449284c4ab0bf4a7
BLAKE2b-256 780a67e4ba8d8a63fadcbde9c5ee4bdf3759ec9c716935322fb3689992f63af1

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 30f5a4f465375af4108c1d8ea6bec1c0641b57acd01b75d4046ffce66cbb31af
MD5 e5ba4bc8f178512e8df547c5c2fa1137
BLAKE2b-256 2be668d3533bae48f285f3024b8ad0a5f50e4789c1a5293a746ebcec0f2c53a5

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp35-cp35m-win32.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 32.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b22dae64b5d1bc94b87455febf18f7b84f2c4a4ca671be0db49a87e8e84f13b3
MD5 62606a4791c93361cd24dd616aab4b3b
BLAKE2b-256 2aa7aab1dda64850199e0f7006f7cb68e470b0df784c5152748edd2ca001c6c0

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2d7ae97f13c610042abd3772442ee0946555ccbce53d292b0a9784e39bc4bf12
MD5 9286ead9917c485985553937cd4ff2cd
BLAKE2b-256 79ab63d38d3c4e2cd5c0cd44ab23afd9547353ca4851a6559f56fca71f56f63d

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 149b2a2b1dc8d09eb17cbc4a56d30af4f26203a0f177f27d3e12764d7128e0d4
MD5 048c42cc488d4e39a8fe0f7923976ed2
BLAKE2b-256 4e91f8b3cd7e5f1971c927b4d3baf5889b4da3ad69092f23e1b77758416b04d5

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 77.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 961cde92188e34a3b9d15210df8c382a207b0a798d07dadc8f50ba1ae6239fdc
MD5 176653b15f93d19e7e690a3ff75a40b6
BLAKE2b-256 74835204983b2119e5ccddd9149875e7ab8f1bb1437e73582b4cbde1365e9b46

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 70.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8717908295b031d5e0ad2bc5dec0959edff4eafa871ea3375e920807514d93aa
MD5 314124999e841c04f1a8efc8d0442d6b
BLAKE2b-256 5e0b982f432e7525d5dcd7578b37af130e7f6556eded082b2fd758b01f89159b

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 efc075c27ef9151eebe421c0cf1786c27afac8653d892ae084d44771da664f4c
MD5 cda728de8cc1b5b1c1d2fb0af21190af
BLAKE2b-256 dbd5ca81351ba65a84db5da5ecc70d15138814497170431b13175d5c02ff1275

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ccfa5710b65d3cb06f9ff91fd23d0fa4a8c9bbfee15359063eeaec78cc72cea4
MD5 7cd3b3ae0de0d0987eabd92406a711aa
BLAKE2b-256 4ced5b44dfdef9ad6e02db0b2069c87fa301383239d7f86e1a3c25c2e4c90d63

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 368322e9c42584ab399a460457126f0ef4ba25496480b6bbfc9511db3af69594
MD5 105e94aec016b14b4b623908c55d1330
BLAKE2b-256 2b904d5b936157b718e8c0c61188f489c523347f5359c63baab41d183eee51f8

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7476e7bbf9c1d88fc150c77f119581ec02a05e663ff2af585e39392723aa38c2
MD5 8bc96fc3b255888c9544c7d2465a512e
BLAKE2b-256 e4fd0d75347fb81f0ea49b679d7a22882d297cf411c99c8fb5c80a783ec00b9b

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa0eb9c5a58340c6e3aaaed23c7c95a06754593a1000174771f960eb8e2ceb13
MD5 a367de919422e25d6d03d5746c7beefe
BLAKE2b-256 c1fcdbd68b43569ed3bc7007190bf3e20875e65884dc5ee47ffae5939d5718a9

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5ebdb122fbe96f0393c7d3dafe9fecf11bafc5e8b6d18a3fcfb833e8e0a276ec
MD5 4cedfc9013d2181cfd3a0e7fa8782675
BLAKE2b-256 251548aece4e4c51c473cab56c10fd521cbd3f3928f305e90367bc068bd12ffd

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cde98cc650d6c85301838609ee0ccd6b8ced3ed2ff4bdc28d4d6decf03fa9be7
MD5 39bdff352988c4fb3b801165b6f4bac9
BLAKE2b-256 e0bb0dc390a2c90a7af2680e5be3fe75e868cf2ca5f2699ac768437a71be9849

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b123ae57edd6f6dbee58755dd7f7db92607319a6929b79354700450186f4273f
MD5 e398dcfa6501f0252ad8c59cca67b31d
BLAKE2b-256 b956ebc2078f0fde47f08f72a54307a96883f107e82e914f4261f17d25970bc3

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 85395b84e60cc41b98f61258b3a3d469f30b265eb28f56ee6564390321b88913
MD5 80d2f347f91d9845d377fd5744d315ea
BLAKE2b-256 ba2cf56d58ba4dbd1105a3dae5a7bcad04afa457ac06f80c610b555b51f2ff5e

See more details on using hashes here.

File details

Details for the file wrapt-1.13.0rc3-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.0rc3-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/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/2.7.16

File hashes

Hashes for wrapt-1.13.0rc3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e23381228770eaa81451a5c75268bb40fcf40bb2e74f40d5288b29f1787c8caa
MD5 6f7f998736415ab1e2af7d71babce288
BLAKE2b-256 417b2981a1f6e61e27be99fef69254f91923d91262523cef2b8382e428e16842

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