Skip to main content

Module for decorators, wrappers and monkey patching.

Reason this release was yanked:

Needed to amend Python version requires as broke Python 3.4.

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

File metadata

  • Download URL: wrapt-1.13.0.tar.gz
  • Upload date:
  • Size: 48.8 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.0.tar.gz
Algorithm Hash digest
SHA256 4652939e6e19a2c9f197b571d8c066747a1ec20f48b4151f3fd22f4ea058d414
MD5 b939a49bf3b384f6cbe77cb7bc210781
BLAKE2b-256 6d917c6f9475c5a1dbafe2d1cf725a56b1b3438bbc38dd9397cd9cfaa0f3302e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 34.9 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 62b1c10e8926a5ac3115675f4f3a3d06dde9c4071e659c72b1706d2d116977c2
MD5 123bcd393bba25e22f0943f9622b6dac
BLAKE2b-256 0117a77bad3b6c7d2cd688f3113a945de84cd68a0fb88f47a170a263fea592a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c33c0388944d219d651d8e462e7b8f30a6f5962e6df2676678ebd3be7e63bb0e
MD5 5358afce481fee0a75c3b7781f803eb9
BLAKE2b-256 c7a0e0bfac0fbba6e94aa1d6db539001f54e08f8f7d4d5c10fcb694bced0093f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 25547ad09fa5fd038cb4111ca04595e26ab02ada7f0d42fbaa8857c2bb16c86b
MD5 393baa8051875240c808c2009f4752ae
BLAKE2b-256 6b9815b10016c4282739873f90a831b2569698aeb501b5d3e076cb28cf1721b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 74.0 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.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 486799e770f7221e2559b328a45d0505e2c5c3ba3d45d33b1e42f67f00e27032
MD5 a9209d5aec4a0a9c73fb3dd90b08c690
BLAKE2b-256 2859bc8eecba2e2c4cd1a08697031d48dd934bc439de11a681f4b5159041274a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 25a8e62ff3627f634b216cddb56b4da11c83bb8cf658cd9e8797cfb1feb52138
MD5 9f96d33c80ce7589aede3e445cdffb92
BLAKE2b-256 db31fd794895232fbe985642cacd5827055a5e62faaca2e72052a44668b0fd01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 74.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.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5da5b66f26acd0175467f6eb7dd154a79cb9b9ce5662a803344940ea1981a201
MD5 da21d85abb2c4378ab0770efb02282f6
BLAKE2b-256 19ba9cc40c9c6c453af50beeca2ec9f38f025855df354e14148e6ab737daf811

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.8 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.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57511ffde80dde1afe345e4e1906a3e925803acbfde5104a94f15f0ed7dc37cb
MD5 05f7466c01d0cf7464f40abb992d9388
BLAKE2b-256 e20c66e32f66bb1ef0c2dc6b7febb234620de9afddb5af9fcaa659fa9d985402

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 34.9 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e95316dea619e387ccafd873559bf902883b8b20cea5f973eb4d9be877bdcbf0
MD5 23753ed07cb400f6c4918f4eebdfae3f
BLAKE2b-256 9854c0b0194883210a205d2522d5547cbf8528e6e3f10a0289eb58208f656602

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d1698ce56734e47d17567802d5569efe21cffed31918cb06017dbfb88b5ad032
MD5 b4b5aa3194e0d39a5a7949d7a28c0bf3
BLAKE2b-256 fc42900c1fd1b90b38f370ce801584e1343982938a63398f8a704ea2ba482c41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ef67bd568076b3c712cba57d3a81ddd7b79a0228820877cc6cea00d549151712
MD5 f15dfc9d65962d5fb4af04f2e9165d57
BLAKE2b-256 e384616fe323defdf62ffbcd43f5c2f485f597a922a833e01002c7e32ab2578c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 77.4 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.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 620de174a8c4856750e6316bf1826ba14165cb3af18e286fca2dd41d58969a43
MD5 ab4e4437202010c9426decce552261a3
BLAKE2b-256 aa0ea48ff7269051ce60142c5b5f89370f2248f25736352ef538668932e2cc8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4e7aec6f78d6a46e80ab2c641cf56bb43db04b906671afb012516db91516620f
MD5 d611f9f6d736a4c8bc82e48e2d89e22d
BLAKE2b-256 3cb421bf1de67d0f0b844fe373359af39a9eb34e59027559ed64c72e0b9a7549

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 77.4 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.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2423ba207010dbd50d753b00273e7a0ba4dc79ecc00fb2b5484ce83246f28b2
MD5 f960f2df0af674e91bc4f8f30a7bd236
BLAKE2b-256 c860cc077e3f72051d479eac33aab3fd8f11ac1d228c4d494887cb72af2a4a1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.8 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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e88fbac2888313d759c17ed44f4f18657fe33cbc6cad0026afaad3cd550ccb83
MD5 874c0cb0339f64e448e784d33dfca292
BLAKE2b-256 b550a53054ee50db727c8f34628f8e19c2f0127912024665418b96f8b9458c6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 34.6 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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f18326340e8ff51a707e88681aa1dd5e1fa6e696b9a866eaca74e387c9c2bc3f
MD5 1a333a2c974db6ed0469ace4a141be73
BLAKE2b-256 9ed25de2e1024e49dabfd2a1aff00951a5e0f8f9d97c518dc1e533c3ad031849

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 87f1ea87847caf9a3e358ced4920d27d77d15978d0c3dcf63058a94790f1c818
MD5 292463bc71c43a1cb3743d54ea9d85de
BLAKE2b-256 b29b04c582b4cf3c4aa2528676aaee7a0f148ce8b3edb73ae291f6812103edb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d6faad08b7444ad519fb9822d8a49d0edbd2d00c49e4abfdbdeaf87bf2b5c551
MD5 0c0738ad9df937000541907be77cc0c7
BLAKE2b-256 21ed329edb5f3c94499637b338c1bf68c02e7f9b91b4e3e431461451e82d246a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8f294c1939fb1c16e9208c892f379d8c456fea9caeb89f49d0e9eda79bb54d25
MD5 48c176d52c917e66dbc44920e0fc903d
BLAKE2b-256 60229e879ba49b838362e0fdef70082c766f341c846f195e235c17feb2fff9c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1cd94e7e84e040f166c86a2abc2b407a4efb1b5c5bc312a7b3fc3cab93399878
MD5 490e6d8f642b96f4a4e5278e224d7aee
BLAKE2b-256 f6cffb39c467353a254ff9d27f0f2fe0dd00ced553e3977c9df678db7b0b76f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f9d83133b1d608f2aa3c7c4d811c2f17c16f67a668341fb70a71dabbb130e3a
MD5 328aa53696aa2ceb32d817e60570c8f0
BLAKE2b-256 2ee1a4ad2a9f90a484583e8cf7b406761badfdc7732278f6a48af5676f986f7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cef39c1c69d6d3dc599fbd46e05229f6d0e4bf3c687b3fe290e3989d7c7a85a5
MD5 6ee9a9c8a960b53a41504d0de30db679
BLAKE2b-256 af21f606dcf46142cc5c312296b2cafe57d976a538f8e3f5daffe0038de5e24f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 30c4bbf535e12c557614b2dbed4da01f55ec5026fcdc250357164051cea0595c
MD5 9e7dcdc9a49ab2e0563e14d5bd9cfa34
BLAKE2b-256 04c02b5dec46b39febeb287a86a01f3d65191cf2e3cc6b039fe573ac81666ea8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2b98300f1c1f82f394a76ab3a69adc67d61d343aff2c67bbeb8ee3421a319e1f
MD5 11ea4ba545b3b2c8ec77cc12282c44b9
BLAKE2b-256 c73a262efd1804bd73ee5efb5a6541e58e564b489ebb788ee4d9fd7de8a2ea74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5b97a973de88e30d2af85b76ba2dc4dc16c63e714ad5207c8a3c767d61fca5cf
MD5 d2cc5b6c9da8e07e60565a3d99874558
BLAKE2b-256 621855d9ba29e457ddc20f5e47cf3cf74e4d54894f6d1a04893256e896cf849a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b7979a637ece58294dd2e17c937a3d49d8484cc263e542b7c6cced55473aee32
MD5 8ffa53c1f367f39fa421acc167f0c167
BLAKE2b-256 49fc1c596cc31453b241c7b081522309e55fbf08fd3391b5e49f7662b925f487

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d4b322c3eb395697ef146b860a67dd4d27b328dd56344e9f463f29192cbae809
MD5 0f60430fb2ab1f13b088f19cf9ff4c54
BLAKE2b-256 a40736f5cd94ba45005d21d5be0987fe739ced15ae95bbeeae299dc4386c5ca8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f046dd3166c12fdeb82c23cdddcece27c26fed8aede9015d1d5b3027cc02558
MD5 072964e28179522a7e3d08fab5b6498f
BLAKE2b-256 ef69ffec7779a1438d309a25934f80efc9ba5325b71dfee414b9ef549bb4fecd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ddfd939fb3dcf693f41fd17ae3d0f5dda1c2d143d00ecaf0c1d71d288950b8e
MD5 5bf27864f3eb47b9dac1143388d404b4
BLAKE2b-256 1e164314665cbe86e4815d7b742fc7327638738d1874633a016df7653ae2945f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5b1b7b4efaaa6080adfeaf55eefd7d420ba6abfe8d0e60bd9e1cb7e78c85ae8b
MD5 24a1f39db50f8432d1d4c23749578396
BLAKE2b-256 6f9042c6a39c3f58661900cc67e5c214d9c315f8f5041f282d36e4978809ede6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 99aaede95441af8359c2bd49712a24b44a57082594a2d4d9cf3d677925db3734
MD5 d06dc08154732dccf21f8e02041a37b1
BLAKE2b-256 8106f1dcd15e74c885d387d1c8fbb82768e428fe66533bde79a187a9b152f5b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 77.6 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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 96397adafaf5684cce9915ea2552f2887a6cd54a02ab4054e7cd9614e69974f2
MD5 093483538d61db35e0cbc0fe31169216
BLAKE2b-256 73b26f81511b0d63a72a5b8b7c1ee2b15b805833192e7f231742e1717cd4ecf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 70.4 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.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f65a22a138c94f136f43df021c7ded9e39de5ee1b966d13ac0e1559ef7068d40
MD5 1d67829fcf762c7933821c2b359f1577
BLAKE2b-256 a7446cd08175586e652dd17c04a67da0992d858ae18b94db17db8ffce766cff9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 77.6 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.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ada87df9f124b3b444c32d2e62610d76862a5865d85566fd61abec32437e3f7b
MD5 5e460b0531e1362c35c9b34a9dc76a26
BLAKE2b-256 d47dbe5b6f1767b3b4ab7e229b4762327e07088f569f1b09c9e602e367421aaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 70.4 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.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef8394bb315ca71c9a0fd59ca38cfaa965ca4d4ec2aa35825e822f5dfd0ae864
MD5 9a455f51009b47a58089deca029d6f25
BLAKE2b-256 c4717410a360903bc158d8d0ffc2561177de684a6711a998a4511e6c2ccfbf80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc4503d51a221e3d4f68b375f62519aeda7b8de60525ab41f20dd0110897b09b
MD5 8f64f06499994981fdcfe2424da71d0e
BLAKE2b-256 4c4f829eff19ee0c0327768ae1cd8e3d9df6748942c0c2b5ddf377e1d5e78c67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e204f9d00649d6c1f75519cbc12bf0305877b9c8147fe414b2861880cd4b20f5
MD5 0fd9b2e69bb3b9002ae719d8ac5733c5
BLAKE2b-256 9ee5970cb17a44d217db3a595dfc04616b6a5d75bcdb57d5b08ba034fe92e760

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 24cad385fd28d89b106de95f787cec2706ffa53194890464c41969b58dc2ef8e
MD5 200850812895e815648ebb3337c6dfaf
BLAKE2b-256 a6713ac99bbe2f1ddbb7ac56d180cebf4d9307fc7958c387211be7fa88ce5976

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2e34adc9467c4905867a9a10e00190d37c2dd9e2858456ef7a1f55930e86ef30
MD5 7db38bfacccbf818a65f1172b8fd9c44
BLAKE2b-256 bef5a064259857292c344fe469c5c48ef657a5e9e6c2ad47bd994f8ebcf762e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 90edbb7aa3a28506a7269d5e432bcd2c451e59e89fbdedbed557fa1708b05126
MD5 ed69424d6101d9b5386267ef3ad030f2
BLAKE2b-256 8279966226c1d0b397e3e9126f2d48024f1b79f3d2231e8bfe984e051132c011

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 402b2aa980e25fcd8083fbb9c2be50f343aff408d36a2fcf35969cde541fa677
MD5 7154f3dc86b88f00166142f9aaf0c51e
BLAKE2b-256 7ad8b671f320c857b9a69b277a2d717eaed0dc60713543388192dde4e2a779c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3223e75d19763247ba9137452729c4be371481c6320ceaf313e8272d79c535a8
MD5 a4c9728d65bfea43bfd25b83d0576f64
BLAKE2b-256 1f90cefa0aef97811290511572b59a302d05461354391d5e800909cfccd4ddbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 27e51d50d852e5307028bb848fe4bd482b79bf4c3c72f3609bb057340f5dfbda
MD5 f6d987015297dd2bef7ef37ee2ecb295
BLAKE2b-256 7672dd64b0ddb467e1ce1831978806c420e7f3ef49623ee7d8bcf50cffde8282

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e45f1fca79fe11dbddf5cf46c88933e556958c8e8e11243ce577876844cd19c
MD5 e7897e89219aedeb0e4204f87b03bcb1
BLAKE2b-256 9fa42c442882010d9ddf63950b8008f2ec418594c2e4e2b3ce5bb65c6d25d7c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0-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.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c58921c19ad055ad0932a99d7974b4084733aa282a17faca6c4c03f75df9703
MD5 d81d73c7bc8f0a6eaad0884f691501b4
BLAKE2b-256 e1c54ede45fb917449ca4ae2e5a95d11ec4ab5f16207e301add0a4d1c4452749

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