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.0rc1.tar.gz (48.4 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.0rc1-cp39-cp39-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-1.13.0rc1-cp39-cp39-win32.whl (32.3 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-1.13.0rc1-cp39-cp39-manylinux2010_x86_64.whl (80.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc1-cp39-cp39-manylinux2010_i686.whl (73.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

wrapt-1.13.0rc1-cp39-cp39-manylinux1_x86_64.whl (80.0 kB view details)

Uploaded CPython 3.9

wrapt-1.13.0rc1-cp39-cp39-manylinux1_i686.whl (73.2 kB view details)

Uploaded CPython 3.9

wrapt-1.13.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (33.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

wrapt-1.13.0rc1-cp38-cp38-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.8Windows x86-64

wrapt-1.13.0rc1-cp38-cp38-win32.whl (32.3 kB view details)

Uploaded CPython 3.8Windows x86

wrapt-1.13.0rc1-cp38-cp38-manylinux2010_x86_64.whl (83.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc1-cp38-cp38-manylinux2010_i686.whl (76.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

wrapt-1.13.0rc1-cp38-cp38-manylinux1_x86_64.whl (83.3 kB view details)

Uploaded CPython 3.8

wrapt-1.13.0rc1-cp38-cp38-manylinux1_i686.whl (76.6 kB view details)

Uploaded CPython 3.8

wrapt-1.13.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (33.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

wrapt-1.13.0rc1-cp37-cp37m-win_amd64.whl (34.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

wrapt-1.13.0rc1-cp37-cp37m-win32.whl (32.1 kB view details)

Uploaded CPython 3.7mWindows x86

wrapt-1.13.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (78.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc1-cp37-cp37m-manylinux2010_i686.whl (71.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

wrapt-1.13.0rc1-cp37-cp37m-manylinux1_x86_64.whl (78.3 kB view details)

Uploaded CPython 3.7m

wrapt-1.13.0rc1-cp37-cp37m-manylinux1_i686.whl (71.2 kB view details)

Uploaded CPython 3.7m

wrapt-1.13.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (33.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

wrapt-1.13.0rc1-cp36-cp36m-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

wrapt-1.13.0rc1-cp36-cp36m-win32.whl (32.1 kB view details)

Uploaded CPython 3.6mWindows x86

wrapt-1.13.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (77.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc1-cp36-cp36m-manylinux2010_i686.whl (70.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

wrapt-1.13.0rc1-cp36-cp36m-manylinux1_x86_64.whl (77.1 kB view details)

Uploaded CPython 3.6m

wrapt-1.13.0rc1-cp36-cp36m-manylinux1_i686.whl (70.1 kB view details)

Uploaded CPython 3.6m

wrapt-1.13.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (33.2 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

wrapt-1.13.0rc1-cp35-cp35m-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.5mWindows x86-64

wrapt-1.13.0rc1-cp35-cp35m-win32.whl (32.1 kB view details)

Uploaded CPython 3.5mWindows x86

wrapt-1.13.0rc1-cp35-cp35m-manylinux2010_x86_64.whl (76.9 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc1-cp35-cp35m-manylinux2010_i686.whl (69.8 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

wrapt-1.13.0rc1-cp35-cp35m-manylinux1_x86_64.whl (76.9 kB view details)

Uploaded CPython 3.5m

wrapt-1.13.0rc1-cp35-cp35m-manylinux1_i686.whl (69.8 kB view details)

Uploaded CPython 3.5m

wrapt-1.13.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl (33.2 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

wrapt-1.13.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl (72.7 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc1-cp27-cp27mu-manylinux2010_i686.whl (65.7 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

wrapt-1.13.0rc1-cp27-cp27mu-manylinux1_x86_64.whl (72.7 kB view details)

Uploaded CPython 2.7mu

wrapt-1.13.0rc1-cp27-cp27mu-manylinux1_i686.whl (65.6 kB view details)

Uploaded CPython 2.7mu

wrapt-1.13.0rc1-cp27-cp27m-manylinux2010_x86_64.whl (72.7 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

wrapt-1.13.0rc1-cp27-cp27m-manylinux2010_i686.whl (65.7 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

wrapt-1.13.0rc1-cp27-cp27m-manylinux1_x86_64.whl (72.7 kB view details)

Uploaded CPython 2.7m

wrapt-1.13.0rc1-cp27-cp27m-manylinux1_i686.whl (65.7 kB view details)

Uploaded CPython 2.7m

wrapt-1.13.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl (33.3 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1.tar.gz
  • Upload date:
  • Size: 48.4 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.0rc1.tar.gz
Algorithm Hash digest
SHA256 93fbb91b0d97a6e13e59ba2b7f60067707ff6470d212a05856f844222a552542
MD5 c33f87ed2d1bc081edb3fae6b0a3d2a2
BLAKE2b-256 d6b866ad94f36befd32cfd3673ee9e0ce49c1c4412b4303890eb7023b819774d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 34.7 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.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 44ca6394b5db65d1fe90c90ba7cc556bf4575555914449ea2b0033926d3ae8ab
MD5 0498bcb54cd0ba60aed15049274d99be
BLAKE2b-256 fda711fcf9dc37fd538c62045a2a11d8cc7af80aa627e5c333f9ab3ea63cc81e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 32.3 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.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f1f45138e70abc9940adb2b5ad415112ec251e09c8bd2fb388ac143099a9c618
MD5 39b507c3bfb43e81ef232727df99c973
BLAKE2b-256 4b87dedac3d548d69fcc0deccbbc0a1ff07dd34cb3845976203ed525ec074d82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 80.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.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c2bd3f154393704fda25688bc36e631acdb4a21b3104eb367b59cb17e980a45a
MD5 9f7a3d2c5cdc5101796fba738b7fe7dd
BLAKE2b-256 13478bb72e2a1bb6c2cd2dfc071e711031b92f2972dc402095f9c4376e6ecb63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 73.2 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.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 31dfed7e241e1008f998d32882b0781f43a59f2e1207c895076795c3f373ff30
MD5 ce30c36158e3edb1ce5aa6f97d4d32e3
BLAKE2b-256 08a6be22109b5b4788bd7810f2c28dd197b04a8a65089dc4323c63853849484b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 80.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.0rc1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 15c6007d361bcaf8a4a5a3fa2b0b3fa2930ece2b49ec255f9c78a865e2f52bf6
MD5 452bad2f9aaf4d0d41940c911678d0e3
BLAKE2b-256 bf208c2b6e13649bd4ea39f8e82cd7402245c31eaabe463de90de94c809d51be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 73.2 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.0rc1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a42f5ee32ad252de7f72343aee62c766660a676b39a95d4128df42d1cc524612
MD5 ed944f2dddd0f26fbb8cde00386e5e42
BLAKE2b-256 ae732eec05a0a7213979f7f279a037d47137a5e83bfcc4d3e89aa731b60df827

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.6 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.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9eff28bcb8a707098b3b07a11ff9fd317b5bd7bb0b561e363949843bff10b86f
MD5 6d6b9231b3947623cddf38eaac0b6706
BLAKE2b-256 b77476821db6581641d4641813438220a6ea1766489d6fb73fe1c912b8275969

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 34.7 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.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d548605fa554f6c8aa61009267a9420d5238d24a65465496c7a8992c56432b67
MD5 84c0aa4e9e47ea768a80084adc996ee8
BLAKE2b-256 ef0f3f0234ca7e319fe608f94a233443c0622d41829e9a829bba492fa6040ab6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 32.3 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.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5b500154cbecc6dd098f4f88ef1a6a4cec5a610344e4d5b2d31801e1c719b98d
MD5 037d75bbdaa1e79847b70bf757929210
BLAKE2b-256 010635b8cc24c2e88037d64cd8fbb7219936f01c22e1f65b0af2e699559216a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 83.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.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d66ad9329bd587b4d4aa3db85836d2d1abcb46ab5349ed3a1304d5f302ec76ba
MD5 72c9fe7659ce0327ace279b9eb2aeac4
BLAKE2b-256 e7555656dea8b0afc315b3ca1eeac4d6837baf795fa0102a0665c6cd1f1a3c62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 76.6 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.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aca511533a0217f919a559ead3268a2dc8be55b7f711f6d3b00dddc8d3bd4bd1
MD5 90cd2630165fd3fdc0efc2bbe051141a
BLAKE2b-256 5785d25bb04be90de56413ca84cb2a318f1d3c4221cde8de200195533e2b71ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 83.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.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fda5cb6065d5c28d8943d579154161969ea480f241221a81d81e837cea47bee6
MD5 cf97491238c3d49e6343b527cdae16cc
BLAKE2b-256 684b27715ee98df32eb1687673bcb2b1ba1ff9ed9441fe8495a60c46fbf5255a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 76.6 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.0rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 26e0eb5c1f9aeeb89d868a17ccb9c38597183f9c6e826b32526512c8424c3e1a
MD5 cee42e25474b4b8cbcd09c39a9a1a325
BLAKE2b-256 aad5098db2b10c02194d3dfb346fd1f944400cbf28bd87b019d191fed59e22bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.6 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.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9538c881429c2765c13bb21a017915626190979ada79cf8f743c6e3ab5d64bc2
MD5 443de11f63858891494e7f67f2fc66dd
BLAKE2b-256 afb30b477110d7a860dd9e38ebe8fea1b7a80778925c941ef0d9ada47da0b8bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 34.4 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.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e3a23d98c64a952ea3ceff3a6b2881767a4d55ed7c1abd86a8e1aaf8b51cb94f
MD5 b0733456f79588e263c522ab5654ea37
BLAKE2b-256 c65260531c224870513957bb22ba2d0f2be9308631a1ee1bcbbe79115967d739

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 32.1 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.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b98f2cd1750158ebe37affa6b3e13fc03a0148317135da389dfe79164a712b11
MD5 b62f7a4cd973d989ea199cd1c44c154f
BLAKE2b-256 94da5495cdf227e168c3f9cc26887bedcfaac9a77ddaaf7b00b4afa55fd5215a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 78.3 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.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b243d96ae1145cdd34488040181f54ab6cdc7e4b80b517b03b56ce14266993a
MD5 a2e11f5c8895c5d104779cf9b6dbdf90
BLAKE2b-256 06816d963a7f6cefc1e0729d84e11d0918efe61c92a2a2a010039cfeb0c85f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 71.2 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.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6e558f3499e420cc8f0772a054bd08487ca227b85597c69557772f9cb1e63de9
MD5 f3ba74068e5bc7fa65f399bb930b2565
BLAKE2b-256 b7f57600d8e1c8f8fdb57525a37fd2dd7d24afd6fc1facb05ef7263c63d0de7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 78.3 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.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e8998cb859a60492378a7dffb0ec25ec2d02268159bf7febcbd07d3c9bfe1fd4
MD5 202790dd03ac7b51068e3d5982269fad
BLAKE2b-256 3a02940b701c4dae3c7212da429a38b0816a46d9746d9ed321080016bfbf0264

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 71.2 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.0rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f30bc47f00dbbdf244e4f3e2c79bfe73ec7885f4a94601b5299e9c1d50187983
MD5 ef4c10ee99a420218134847eda11614d
BLAKE2b-256 b2e8146557839a2327338ad29ebfe6c9ddd5c1ca322058af3c0700542ec697dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.3 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.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3d81e68e0bc6066fc96378740ecde8a473a813947e86910f13e0958950cc227
MD5 b4b35c6da2606160e3a8ee22d6787fa4
BLAKE2b-256 247fde655914395046425f236056087fa9b964fca7bfc70212958c7591e44870

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 34.3 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.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5080dd347efd4a602239c7a8b7c7eb87f8855d5e674ba04f46316327ad84f0a5
MD5 8d6c5632621293c790fd5e600f1812f5
BLAKE2b-256 e3dba3661e718fb161a6c3297c027701eda08bf747b6f12cad863d51de217747

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 32.1 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.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d91dc2dc906b74deb4ed6ec041f4b7472f22326e2bd14f3b6eff8e33334ee8ef
MD5 3fe1483511cdf28ae267ab584a893e7f
BLAKE2b-256 9fafb5a2eaa73a2c3f9353efbf326c0bddb6e19bf24941c872064ef858a81adb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 77.1 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.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a1e82a25dd505f6a79114a1b36c0714cea11ce8d68cd3bf8c9b28c8dd3e4db75
MD5 868b71fe138e21e571e44b94c057e411
BLAKE2b-256 188443e9987c99fc6ed1bf2af4663458ced41d54a1503a880098f2b658028e56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 70.1 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.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0daa26d7f38bf0e5e5550e1f775f4059608972a7e2bc4e2dc4cfbc86e9945126
MD5 4cbd7f38fb17c4980b7306a11da40497
BLAKE2b-256 c5d313a9ba97852d3d30376659778c09bf9374c73aa83073d34252dfb382f976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 77.1 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.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5e613d64e7a96cbbfc91c15ce231355eb637bcbd818b6fa3f6f46ad482c7b4c1
MD5 094599fb1b03645bee80ac2b2f70dddb
BLAKE2b-256 9da7cc1df675af70b0f80dfe0022343cb901edc4a5daaff4f663a9512c6fa2be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 70.1 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.0rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 32b6a6d982a4c5a1891286178213c08363e0c5bf6fc24f6c4fc37e37b39d563c
MD5 a37200aaa56812c8ffbb689c841a5238
BLAKE2b-256 5334699225e250b6afe6fe374c5218c327deb5708b520acdcefad387a60fd84e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.2 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.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58c509daa83fb924538a10e28fae397e03a08494e9d26b9a646ed8040fe3a4bb
MD5 5bdbf96900eb7a446be0442e61f8c5ab
BLAKE2b-256 d70b2d13933a57782eeb421cdb0c57ef1fa126a32245f130d374b5e5a16e3ec6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 34.3 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.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a47b53f6d6f5e8b23b92f94b56f92e24c27ca22aa128a56f01f82ae0b2bb5d06
MD5 9645b60a0b63011dcde2eef7a85d49e3
BLAKE2b-256 bd487ffcf1074aa996b3592c695dbc6e3599928bdcbc8ccbda153f6a205ad1da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 32.1 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.0rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d03cc0d0a869d4eb58561d1c39621a8bc2edd771c42db50ea798baa7cef7dea9
MD5 0240aee4b7b98f3755b6fb0461c3cb2e
BLAKE2b-256 5634d0771d9c9479fed4bdbaf035db326710e90a0fd2c8f81b5e22f48cb62288

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 76.9 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.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7ab4bb28e4d6381fbcebab5795ae42911cb188e309a2c7748fba4051aa5ab306
MD5 b9189746c7b746d0522ae0d4b265e7e5
BLAKE2b-256 0f4702a05a9dd04fb192534ed66d7a4f3d39e0eb02924939b604320e8d3ca216

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 69.8 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.0rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c75ddfc6a7989bb2b2886f2346a1ac8a43c38903e7a79821830051a88b99ad75
MD5 3a411d0e5606461f399e4c36710a2d27
BLAKE2b-256 2a70782c950d93106d1e4cd03036dde1a20c964c1815dc39da79dff821d0131f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 76.9 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.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4c7e040305dc48158a0fb60957b470e4480da99b0fc64b216f0f2e83dd521f85
MD5 c56892441601dd994861849ba0f7923f
BLAKE2b-256 7454880ef5d0c56a9660ee248dd7997bac76a73406528e5adfef8528c9c1c875

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 69.8 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.0rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac6d544633016342ba938b5a1184f0c4e012501d5e30ebd2b3f85e25f8531cd8
MD5 f23ec92478674c237b62f17bc55af97b
BLAKE2b-256 e0d6bdef3e82cf98851ba72b39048ff7a75362fb87eea00b74548b0aa22d3246

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.2 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.0rc1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc5b486afa2f75eac5f1ac7350d80c2fa1dcef37099d661228fe1e5b9fa283be
MD5 06c20ece0296f63aab4ac0bb3764c439
BLAKE2b-256 dfd26a37dcf0e5ffcc9d26e217e9b0da3526c83f15a66b89eeeffb7fef498c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 72.7 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.0rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 df71d12bbe47075e4dd2b94d08d195dbadcac8b840a3cbbb03e4f93d7925ccf3
MD5 b342bf92e8f3e119ac94f88cf35da458
BLAKE2b-256 122121003a0f378291c47407a5e57d80ffc82253f681a54899de09bcfcdd8ab6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 65.7 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.0rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f024237e7e926c8fca122eae7313ba98d4adaf50e05874a5ae87b508660bd160
MD5 5e98c134665ce887c728172651969a4d
BLAKE2b-256 c493a12e280b794f951a98c112b75bb4fbfd56524b1a5acd986c33c52ce0b5ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 72.7 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.0rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a4d901301ba7e4c721840659362197ad2be548d6859579e42c5db310901a8c5c
MD5 0defa7f69ac8d177617ad29d2865e109
BLAKE2b-256 aab3b7d72f30d63f904bfd88047975a1315cbbd17981bca4f84bf0f6eda24d00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 65.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.0rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 395858fb721f885363ab2923392eebf87d84e7d7ce8738ca08cedd312d66f603
MD5 87c8408d244a65d78704c34e9ff330cb
BLAKE2b-256 8cea952c3d7a2578d0b5fd447d499d1a911867a26476cdd434db60bd166312af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 72.7 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.0rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 69cb9e9511d56c81fce8e29e36691ee108d195244a59c7cfaf25f27a55d76c8f
MD5 b64ecafaf71ee7f73c6126941c13ee28
BLAKE2b-256 056da7c0d5eba7e89c5fc8a17eb5084b21824047670184c2c844c4ff879ee5d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 65.7 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.0rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b2933328b57feb1214dae17514ff68a76dc46a8f3abda06f4dd63d160ec30f11
MD5 8e9ad17a5983587664c4f0756f7ff1fd
BLAKE2b-256 2c9bc8057aa69312d74c61e5fac06ea437506e6104383b31a3212f36d7ce7870

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 72.7 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.0rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c6b0a7c4fcf793ae95b5579eea6157078c583adcf3c6192abb08f2ff9d704578
MD5 ee6774561c5ffc2bf8f3b66f057149c4
BLAKE2b-256 595ad97e20b82df6fdce3201020e4b62c50bab16cf440b57b75d2461784ad756

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 65.7 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.0rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5ff51a4fafd3d744866d84e0a5c52119f09d24b01d61eacd39dac0adcf374983
MD5 0cd039a33d6d6c61a59893c4537719f0
BLAKE2b-256 be7bd9be058d3f76de49df9cee8340626fcf10d8bbc5a15ace7424fa1fe7be47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.3 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.0rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f7429b09e10ee412048048bafebb8ea2364b6269ba2e73df0016cb91d54b4f6
MD5 8f4cc10d2a4750464554f2a70a0fbf25
BLAKE2b-256 378610392d3830410803ce539f3f692fcd06db6c70e2391ac71e5bb4fa40bc71

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