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.0rc2.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.0rc2-cp39-cp39-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

File metadata

  • Download URL: wrapt-1.13.0rc2.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.0rc2.tar.gz
Algorithm Hash digest
SHA256 488db9e43310e9211ce831feef39ae74454b014f81a931baa7e7ec77792d436f
MD5 b347c9f8055e598a53f35162ab535c37
BLAKE2b-256 f0cd5427828219261eb6ae8987af468b0d4c89a616adc84b7ad4d802ea034e61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8bf3ee3ad02991c9511ab3c7791607dc54bbdf571e69a2008c218cb970846351
MD5 57d7c7075cf750a1a3eaba012c8250e6
BLAKE2b-256 11efb6ff62fa66502a4dbc82e4732ae9121163978f1e924413d5db7c0f6a3924

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0db0cd726eeee547457711dbc703f63288eb6a4c5ef50e3febc9433547a7efde
MD5 ea4f5e6f4fe2e619c9ca91e6dac7e671
BLAKE2b-256 6c5d8db686eab4709ab50889bc2a3f227cb109e6fa39ecf3568abacdf01830ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aac28de8dbb6c2deb04cba47596e4648f9aaff2c608c6c844e1c8adc69f3c18b
MD5 f5466169ffe13e8e679efc2415f1968e
BLAKE2b-256 76bcffe57ba1d4c0cac26657b76d17415d30a51e9430284b04422913e60ab71f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4bdb54b118044a2d2f7d89e5df6182ff7750a1dcb8722a255ec480d1df0142e7
MD5 b7ceaa3b4b8a2f5319c3da3565c9dba7
BLAKE2b-256 3c1686a796f58e6c2a8d7cbeddb64e23558ba3c4e9cdec1089ecea6333e61e10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 df00a2b626a9f7e771e0893744a9d8c47b63fd3116ff3198c6621deab44d7892
MD5 b4ec250963d04e3202165b3e48cbcf03
BLAKE2b-256 2cd8a76aa49d6c3575272ddc483a1cc6c960ad466bf086a2b131fbb7c27df1d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e264e62e33f50c426598e549150895ddafe0dbc19c1d1b82c25ebe6cd1d3417
MD5 70cdf9489a7d742f95f9c2a577b68fce
BLAKE2b-256 5863b6f325a1357dc600c552b10d7f2981c7b6c2995a934a1f962a3034016039

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25561fe532bcc9b36e284f8e639b4a70dae34720121ac6bbb93d7b3917e69ed8
MD5 d6094de2bf369cdd9cfd4c74f38c6d29
BLAKE2b-256 d944912f4970a7694da20801ba7187bf6c9dfab97fec40015c3d0c3287a3c548

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 acb5f2adfee5ba4c590ac5f7d45330c10075a37053b8a277389851d339de518b
MD5 f591d7cadf78ac68ce9675b62262cb71
BLAKE2b-256 fff9d74162213ebe4f0fcba2852ae45921a8cbe38f748584ca0226cf5bdf8641

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e25c1dd6ef3c84a513afd1730ec871d4804ddf5c40ca8093cba5cc30afd55de9
MD5 f75194b3ba476d1d2f738757474de200
BLAKE2b-256 66d0017f80e7ecbe77370fe922d477ee8dc3ca28c88babc6b1a3eab348fb063c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 84.4 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.0rc2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a4432ff3d0398d054dd7007774b6e8032d85e75d15c2ca5b8250a6f88d63ee8d
MD5 520cfe01baa5968ac4457a18861d35cb
BLAKE2b-256 5320a3ff1292dd0a5dad6d1afac608d44515eef217844e03f0d0c937bd09f6a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 62e3634b0a928f99b3ba0296e9a0ab55eaa09ad51d4dbf6730bc027686f75dad
MD5 8cb12f6cae1ad30987e1b7d98e7246d8
BLAKE2b-256 d30f1d38f8b5b01eb63260786afc52e09aec2c39f013708fcb5d663aa85d0cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d4e1f9b8ba058eb97fc3ed698ea8c6b01deed75d3dc64ec5b57f1c01d0dc0078
MD5 8cef8712926096f22bfccf74883e6864
BLAKE2b-256 baa0a44ec49a2fb3cda269a1e43ab9e07556d4d0526453f82cff7c37bc58d718

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 be5d5a8b69ac1471b2357a61f8a23be3f29a5715020ae79033cf14d9678b1227
MD5 f6efaf8afcb8648505aaf7b48cc42850
BLAKE2b-256 35ca44aeedfe455895ae6e54b1dd1ed6b5c8500b04663d60cc2d95108bb4c131

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d779d14859852f273a7f945a6244e01fb30a3fecabbc57e62ce2cefdfca03b7
MD5 cc666f3735abd512089a96c55b9c7da3
BLAKE2b-256 d6b27baeb6d757b6b17d5f6d458cf48338baaff1bd45f37630c6c0a870c305f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9bec808ad528a573e83859eceb5fd7245df3b0c2cef7bd946d6adab52216fc28
MD5 d0a5c1b40f428385d2d665ad4e9b6f59
BLAKE2b-256 1810f7472906e90a1ad1c4c7b19e4bb6d67e65b2c189899dd5efa0d9cee38ae6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 54c44292dc2ec0477b2f40e897515ba28624f1ea0482a9c8f753104f49e54189
MD5 58ad2e378174b8e3066e96e7bad6c002
BLAKE2b-256 a75bf1fdcfb4661cba399166fed9f3810d473a0bea0a328baea1ede170572762

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c568b7e3222529380206c39621a856f0998e2284b8ff04fc029bb9ad118a26af
MD5 7473750614fdc08d8cb5d59dd3a2edb8
BLAKE2b-256 d5b0842f6318d3622152ede4c81c111d8f362b276ec83838a46297e4b13dc67f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 64369f1cff006ede56abd0de1286cee6f533a7e9899d610d8c5b729c6ed92b46
MD5 c7e99d0a9c96b516d15665b433df2db4
BLAKE2b-256 6e8efbf2afbdb67256aa68e8f04bf9c6882dc8bf1a03e683bd22b561e088acc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 de7a8086ed6cb59c94efa1b120a7ff1ac68276c68f1c57ac98c76e7ffb87b009
MD5 cfb1309edda1fcf1bc3c5ccfd830e43b
BLAKE2b-256 0a34edd183fc470fc039a872479120a08d8fec27f4eee1c625e8aefca537ba33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9c5b2bae0ed1fc95d0234c7cff82f9e14c3727f8068825ab8f543fc5b45e66e
MD5 059cddf99a043238500ad249f43274fb
BLAKE2b-256 11ed6ec084d701b66a05966c05d3696da9331a5f99ea8e872edc52f1e7539ace

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd2ca63ac53ea3b3af4a24b36de58ca64391d42e573b85c3bcd2cb8a8c651297
MD5 d24dd05b060c1be5909b5b4d64604336
BLAKE2b-256 7ac73a31dcdb78aeb32d4d73e0b30a07976c73824de7825fab2e88e16cf13b27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9e23e776af14c606b3be52c409b6a4f08c9a1a25de8622d5feab6867c5d5cc6c
MD5 1048acb995ae129814ce0504d8976dd7
BLAKE2b-256 f41aa7992004af6534a9e49c5ea0d333ee77a034f334a4ef53de6f5e2bedac0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2d8c881a5ca9d12ef5b31e08ae0c342132b163dad1aee2164f71221ea09b7973
MD5 662b9e83f92bf1d5733e6342c7e36511
BLAKE2b-256 30f2c08c8975c66ebda30ceefebec2bb52f6bb4179c4aca225356fee48fea1bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c8c38e6c9a23c248262c8a52933b64e116e5d1fbff19ffa044d14e0fb6aded6d
MD5 1a77ecdf0f742b3e8e61a9ee3c986374
BLAKE2b-256 6d9c9e22512e963e22980c1374985b003f89214ec0be1e24a47739181e59b6a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e230e563455c22e182ffd4157eb75e2cfc80dbbb3de6097134b0f09f5af2f1f4
MD5 3d8aa75bf8a9f0b6e32ef1dc0df0a734
BLAKE2b-256 c42e0b0f335b49fbd172ef8d808ac69b848b0a8e6d77db9ef06571fffa761498

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7258a0ab311e2de994f1eebe472fcb04d88365842c37946f1c4b6585abda333b
MD5 86127843a8d85f80a79e84ef8205fb22
BLAKE2b-256 ae5bbd231f045368be372f019133d100f84987b4b51a017de6c8ec9df9f05e04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbb93af1dffd73718c4bbe8f1f187b8f7ce938d6a90923bb04294c7606fe956a
MD5 b6cd453ae45ea7718bf6a16920c1f453
BLAKE2b-256 de031cc35ab5cae76714f576e840c9254fbf9106a0704c365ea4587cdda7abdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33b211b0806d16c8c6efa98b4c45f4b48a738d019ba65b629737facc0a0a5c48
MD5 d6f1a32a23782f410ba3421ece044d48
BLAKE2b-256 97e2ca53e90c8c137fb6fc89cfdbd2bb64c090a59340f4b44a4c912110653a0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3c60c9e5f37bb997d6c9de2cedecdab16a6fef66dd8dbace0a07c5ff8ca9834e
MD5 5fd2e99bff8946f206e91b80ab125d45
BLAKE2b-256 af4822119dbb08264644bc15148b01bd531826e1c4e3677343dfb1533381cd34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 47e3ecc215c8700249574c50242c6458a40eeabf3b2d728fb953a7ba0c05b9a0
MD5 f8380bca1d8b0d79ed3cbcf5513ee780
BLAKE2b-256 5fef06974cc3d8f67d47c0b6a2a73352b311e851a097ad65cce353a4f2bb3c56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2b06217ac5461dde248d51ff8f22e05f1ecaf2a73f4c430bc15afed88cf6f6eb
MD5 4c36aec5f2729eba8bedbc83d4b58baf
BLAKE2b-256 a77cfdf59ffe1c5b6a61bccb65e7a52fab2bfd6f4deb00eac2ae746f1199c9ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6dc4da9edf47815d370c8cc8a176941d70b8f030f54141eadf01dbe699819169
MD5 3a815974cd9c879dd951e6e827a9f11c
BLAKE2b-256 2c38a7295246e15c6d96da9909bf7c1d2ebf7796b12c306c7c6ea69f379c4883

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 67f652fdc3878d5e5f0ee58d163295be48278be97bb16ff5a84f6c1db4fc27b4
MD5 2b21ec104faa48b54c2d5818dd06fc55
BLAKE2b-256 db1680297a1a4a2632948d978fef633797fb56a675253bdf38b28fd43735f977

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 95b70df8d4349ebe8de6600a04e9ec517cca1b3cf5476b4c4cf2d1cb864df024
MD5 c1bd9a4fba6133726b122d2d630323df
BLAKE2b-256 4eda717373a0d0fbd2c8539bad283acde4864df3e719673facee6dc14537d7d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58578781e4ae1edf2abf9b635e3051d98d46d67c8add2fa6b9972d61990f23a0
MD5 c1b846c71d623d72a28eedc691c20990
BLAKE2b-256 ba782bc4e48ec4208559e8233643503f261adfbafe580935f7f78b181b9d3860

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2ec4d5b605e0dd0276f89e03d92f7e547a22aab9368056cde353e16aa4d5819c
MD5 ffc387a3910561cc296e97f4b2c70e48
BLAKE2b-256 3e0eca70dc8e81d3466ea42b97265bbfa69198d4b665f8de72021a230dda32c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/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.0rc2-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 68af49bbd3ef21110edb6bcf2d4f7863d34efe01d7764384426b1065acfef7ee
MD5 09e881da00442e9932dfcd9f47b61d59
BLAKE2b-256 247eebb3825766777edb3d76b5179ef971d8e917b344a956b2e4aded2d97cff4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b5b4250cfe864e25d2e020aa9b6a739ecb577359d1dc2d78bdddf267e4b18732
MD5 006945695f16ef9811270c5b0d834d87
BLAKE2b-256 556fab227510795378abea416d5046713752d2c4692084b83c8bbd88b286e690

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 66.3 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.0rc2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6acdfb3399c82f2b833bffe6778fc84497367597c7643dc33c1f62494aa005a7
MD5 3cd83788b087362e0e74ea8e75fbce2f
BLAKE2b-256 216b56a3afe902558cf773229107e65942842feb3a06219d07d46510e764ca04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1a7517483cbd037573bba828794c056df5aff621e9c5125da71b77552f773238
MD5 cab964bfb34167754bb8a628abf0289d
BLAKE2b-256 c27f18816c10fcc74297f5b81e7be5e6e731c1926a624da5aec6c925cdb4ed27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 66.3 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.0rc2-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 521d4e64948ac69753d349f24621e372cf91c1c76b2370a0a65902941ceba1b3
MD5 41c668110127c2e568f5cca39370172e
BLAKE2b-256 9b6f71bc7236119607b57520605bcfacd11fe0114a274b32354b59d254f7d08a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6085f997a351a844b12aecd53d6c923fb4fdbbb809827fc6091a77b5a1aed26c
MD5 1d543aa3ea207c3d6c41ad80a61396cc
BLAKE2b-256 796ed52410481cbb6fc3c0dc1376da8db85a479dea043ec9bfb572bac4198580

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c930f3408d63493197d3ab0d80ae0bb9976ee6d8ca556222fb6f78de63d911e8
MD5 adeb3b5283cbe4ccd574b277f6202ed5
BLAKE2b-256 01823767eb7f75dab9d0c9fefc4063278046a0731e92ba96491543e91bd649b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.0rc2-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.0rc2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ffc4daebfe0e0f60dcace6c42df12eb98528a3427fb66fd2b3a94c8be284474c
MD5 4f777edba6ab5dc26d329face2d3c2af
BLAKE2b-256 2b00444feabac6987527438bddcab375efce625daecd6d33e64dc989015b1715

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