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

Uploaded Source

Built Distributions

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

wrapt-1.13.3rc1-cp310-cp310-win_amd64.whl (35.0 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-1.13.3rc1-cp310-cp310-win32.whl (32.7 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-1.13.3rc1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (81.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-1.13.3rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (74.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

wrapt-1.13.3rc1-cp310-cp310-macosx_10_9_x86_64.whl (33.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-1.13.3rc1-cp39-cp39-win_amd64.whl (34.9 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

wrapt-1.13.3rc1-cp38-cp38-manylinux2010_x86_64.whl (84.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

wrapt-1.13.3rc1-cp38-cp38-manylinux1_x86_64.whl (84.4 kB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

wrapt-1.13.3rc1-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.3rc1.tar.gz.

File metadata

  • Download URL: wrapt-1.13.3rc1.tar.gz
  • Upload date:
  • Size: 48.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1.tar.gz
Algorithm Hash digest
SHA256 0a6dcb3f6efef1d9db5fd1815f1c99c1ccb14899fa7c2a51a93b91f6c7242c76
MD5 69e98f468c3f79c3cf9ff1349a5e343a
BLAKE2b-256 a3b3dd3f95c3c46a22f6d65ffa1f68785ba3dd0041e49cb35a77b9518f4fbac6

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6c9eaa2eb124fb8aae9427de03e595f73fae6d1ac6d1d5cb0e74d187f4f2b67
MD5 11f73834170ebaafc583182342519077
BLAKE2b-256 68177ee08118fc6ad3f83b3be443e4f4a6f0ca04a04b57fd456c1e18b659bb30

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc1-cp310-cp310-win32.whl.

File metadata

  • Download URL: wrapt-1.13.3rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 27bb175495d94df321a7689e2d2b3ff4e38343c75082cfd7b2ba76c2075181b5
MD5 d8f3e5db95593dfd34e37fb22bbd9137
BLAKE2b-256 61605dc1c29f13b214cb0d4fbd68d341c43e6ec77c04793943e44d7876de833d

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dae933429f5cc4935fd274ef13bed9e9c3d212ed8cfbd335ff339832ed5ecd3b
MD5 4b40c3f4e39201fea4990653439ae2c0
BLAKE2b-256 c46a837f94f098e8828af465ad4204816b3012cf82bf133941dba0b0685bd39a

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for wrapt-1.13.3rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fd918a91685483d690c52c347a3aba78c566c362e0200597532b0eaacf906bbc
MD5 b9e6704aa01dbe7adfde1b6b8f0601a7
BLAKE2b-256 1e250ee9f7dc3c74cbd551723dfabd2e27e8bb59117101e5950cfe571fe77987

See more details on using hashes here.

File details

Details for the file wrapt-1.13.3rc1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: wrapt-1.13.3rc1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 105780f9fe2bcca1d7d7b04fcad469efcfe11b44e0d2d6cdc2b5c92868b91174
MD5 7f3598f536d3737b38c061dad3cceb64
BLAKE2b-256 19187e48eeccbc75c1b2d8cc28893f42b981b8ce76d707e8b1f6d876e3df4f28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-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/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f3e637103d13995e3ce83ccaba1bc5167f171e2716d6d28fbc6f30c40027423e
MD5 718b0ebed78bfa814ae47141b45a7deb
BLAKE2b-256 03ad2bdab90c13d22948c74945ee407377ed17a0f910ca6ddbbbdbc7fb0de7f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7b8a10200af13cbca4716fbef8676871f7c6a66acfb2363e368beed007f045b1
MD5 95d0d52e91a5f97f2601cb16342f7526
BLAKE2b-256 ad6f537ebe93f872163d9146c143f3f48ac40bf659960e2aad37ca9fdc84078a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f0e4ba04134eb2bfa64cc2a3a502930ee98afd77911a210b0d1ee1de39f37eb4
MD5 25a26a0577780bd824b9dc0a68c3bdb8
BLAKE2b-256 26f33da41475189e22e7f807618ffae8a989c5e98e0daeec2512d568bee7d2be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 26049122366c804924f1bfb1f5143f827db51a365fed45f08cdce2fb03bc9f52
MD5 a48e92a893604c4821f78ae4b8feef2d
BLAKE2b-256 4e9835ddf49ac3e27220837830f49df8e355aecd2d24bbd166aa25f327edc5c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3a2be30d10e5a6d8d4c69744ce151a525a71d11f56970bfb3a3b1cca187bec33
MD5 7a7158e04748300137e453741a86b662
BLAKE2b-256 50cc0471bd4a71762a08e971c6d43bf31667b60d3a361fa2114cf0d55c97dbe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 74.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d504a4a3bfaeec9d3c01fd79c2c9bc36a23fbc127e31d771cfa9ed32cc1ac25
MD5 8c4dcfb07f8a670badb979c3feb088fc
BLAKE2b-256 c777292708490937107eeebca5585a5f70f86f9897365a3b10e0ae359a3beca8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e77361c7274185f08f3c269f0674d9291264b7e102d258ba63d84260d9625e6
MD5 4e010b6323c2a0ddcb91bd804a7013f1
BLAKE2b-256 99f693ebeb2da94c41690749ac33c0c356bc209de283e87c0e3531d0b756b0ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-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/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8c2cca64a546aa3961ed21faf46aef3b3ca7d5271cae54724c93b6b72c9e5fce
MD5 4ace3325e6844eaab0ae3552b86108b9
BLAKE2b-256 7a9f37babd06d770657c264373245ae7db973e899d28c4468ec7a21002678c4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ea1fa44c28f1680a5b1d0fdb312dac611d1ff0ec280bf17929a586e0dffcde71
MD5 7928c3b9afa69afdd46cb901342fae06
BLAKE2b-256 5cd7021ebb9cd5395d0f614be548a4c0573a94d617d43948d837f5056044791f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-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/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3474621afbe7fedf8f6dc4bc634865d8ed3d1892d130e645a18f52b163d8e418
MD5 a64fa3504e036baf68731eadb36cb4f1
BLAKE2b-256 1df9e0e99e2981875507b23e1b60ec6c2f25b9b529bfa8eeeb90a6aa91889a7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ca7ef94f7a7f4ecf0ada751c267a4d7f58c51730c999f693ac8dee123f3786f4
MD5 2e058447e9d8497bbbd24c2fc0857250
BLAKE2b-256 3923274157b44f545e4a1c1fe9b0f4616dbf27b1cb4343b1034fab31035e59af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 84.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8e8adde54c237fe2c1aadf180d9fc019229f605ea97548b279b59a794fc30b3a
MD5 4ed498c0ae0c2613b9e47e5a9972e257
BLAKE2b-256 a212aeb088a19baf03e8df3b0d3f9421406a8e99712af8f41ba8a0649f03196e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cceb316d73889a6b55ba5eee1e77b137b7b66cf576e58c2bfc6803baddf6eab
MD5 9f8da087b55e461003fc9c3f1dac0379
BLAKE2b-256 9cc48d199fb135389c05df39e37ae30ae11e28893b9c058d8f3cbb716116d598

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14a594ad8e4fcf1a1d12e62f7d469b614cf25ee14e00ef7c0c19d1c714a2743f
MD5 a4b533e495bf2a7fa60cfb0434c27399
BLAKE2b-256 b91ef682b76cfe1a3098539b13fe90c2cdf823fb64743880e101256b86008538

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-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/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7534f231e7096453854601ce918b325c43a14c4dc3283e3d4ec98e0251960582
MD5 3439fa8b47420c0f1dc11cec28736ba4
BLAKE2b-256 37486f20456c096551e63edef0c7fe58172d9d59fd38332e017edc73a4896b0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 deb58c0a15f50d3bf4ddb375ad41246664f5fbe09432bb23718a5f544bf2d70e
MD5 f20802c74abe8de79749d7e257e87bf1
BLAKE2b-256 051892d28abf21aae682a95daa2282c488215813f292f9e1246e4a39ab3f01dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 79.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5ebf99d7aa491694146e077f8a203a07847fb69d2888366af8dcfa3e763dabc7
MD5 a63d5b619f0c1a2f6f93f0ed08e3b764
BLAKE2b-256 a43c080dc45398096820b381e95afe5f122e30e6bca0c273189e279bf83eee49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 96cbfdd1ead8898c583b6f5032f7ef6a8f6bb4092850b93beeb03d0ed3212740
MD5 a9feecebaecdc775895b8f33244b1c03
BLAKE2b-256 045284f336746ac129e317f4a46360abf5af06a854222fac3a802b120ce82da2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 79.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d6b24310a59bde0dc47cec8fa368751730b074e8b05d7c44b61e2fdc09f00ac
MD5 34b1282fcf3615cb06d9df29bf82c464
BLAKE2b-256 d859865308313c503976504b4b99a3fa073da898a68851531de9bb1cea0706b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa821c20d4afc85d4fe09d3f7b5c56878560c990ea9efb38bcc93dda8c7f5b9a
MD5 4be283e5a95d0b7b299406dd3a0182ed
BLAKE2b-256 1e4dd36fa7e37c6d1c5483c1715e2547d27afa49976b311b84ce5755edebbf54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7cb22538701581294c79924ac7eb8423b0efd794705f6434730aeb9099faa053
MD5 30d074d92bcede0e5bba7bcf653da20f
BLAKE2b-256 f681eb9ac09bdae443870b3418af5217e4e7accefb9cacfa3cbd7a58750e1406

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-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/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e9b59ad49a77003bf355ac5cfa1f0d31184044cb5b06b4a24a68f7c06570c43d
MD5 8e3063993c50657d8022d40538cfdc4d
BLAKE2b-256 42129be5deca1d2b67ee23915e1423264eb191417409caf01a44b4292b1252f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d5ed2220a4e444cc33c72d5239f67d96a628647655d9b83e54b299dc081b2ecb
MD5 ef099b57f8a4274bd6a5f83616d76d78
BLAKE2b-256 dd565cb079f0e8784062070e98588b37033c99cdb44f1b02bab2fdc4275a3d0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3d55c84600b949372570183caad6cd6a0b4338be87ab6a738c9198ee6ef6da1
MD5 5e3191e0356abbf64162e238d5669191
BLAKE2b-256 02d432c079afd7e3115f97a0fef360611b6cffe3fec1dc527dcc100b754e8f49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d80ed0455adf0a2d293ecb2f60b9afa3e270b40f7397ed931b8ffafca1ab5889
MD5 873dd03fc96af37e787ce317abe6d963
BLAKE2b-256 df94099edd88a4814ffc8d4bfebf738eca7c215a1c10a72a4682f2cd47e677f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e80679d366d4144858fcf450ca6481670d0ab51df31c957a08351d0ddce7daee
MD5 30c48b198a500cd24fa048f05375c9ef
BLAKE2b-256 df8befb7a3570f747a70ad5daeb54f23ddf122c6a277d59d49e84000e71343ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 08d875215b1e7301e8440898739156ba4111fe964d1ee66670e6b4e5897e559f
MD5 a1ac73d9701cf0e2bd617e9d4cbc84da
BLAKE2b-256 f2723bf5fcef7a9b9d0942b8cb5eb7f619ece91285c77ccc4f21f306ad3cf689

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15d7c5a6b25350186353596df06f45cb119083c1b4ee756feaa1263943905986
MD5 98eab901de3c3a5684857e488b041c36
BLAKE2b-256 2bb8c82f6116e997a147e6875357b2ae68164950de7e2ac21612fd42a27e0105

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-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/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b3197b30ad7720cb1d4de5c27d5e155a44fb11ae4b426ff452f82e4fa1dde82f
MD5 705ccb11b8a3fca0b8d90edd81e409cb
BLAKE2b-256 89fb516e05f59fb3275d3b835aad5960a0862b49b3ef7272d13f109c1fbd8304

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ad40a7d17e02e54a76deacc30aa4b00760a93ac77f5255fab87f7386185c4cee
MD5 df2dc42b39a3c0ec5785883b23d48134
BLAKE2b-256 af6b70a796ecf849a71b6f3f02cdd9b797be0509d5c9266e1e5826556c94eaf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 77.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 facc6ae3f33ccb167307978f2b11f7ef993bbb96f6a79a235a0a7063580ad359
MD5 d3395265e90c32ca81ce18727f4bd981
BLAKE2b-256 11435e0c5ebabedcae7e768116adba6653c3cde90d8e8250d218bcad77555156

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 70.5 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6926c940804894b3654f0bd58125879ff8af207640845330e4d4fd4dfc251483
MD5 b7b5e7658528e597d64bd4becd16b6c9
BLAKE2b-256 c02e472a070522669e09341aa3dab2f4b047ed702b32e6a2e057d393a260ad09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 77.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cec3eaa8a0067c2ac5cd2692f2679928760e2e7323ffa264973dadbfd193e86f
MD5 39c3153f74a28dec7f3572edb935d28c
BLAKE2b-256 d4a4da04795cae2a05ac198c11a2f1d02fc5658ee2a57f6041f1c6bcdb748ddb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 70.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2198ba8c9fbf7dc8fa5f2335a0753e056dfb3fec7784ad8eafc1d4d813439129
MD5 f8f29897225043a856861c53d0d169ee
BLAKE2b-256 e63050c41afe3e1198bd3e8aecb40073578c68ed28de8ea6820a6fb7e7f3acce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d738bcb5c42d98b326c59d9d6bb45ed84ca756713905c55d12dccacc02483e73
MD5 144946e4a80222a4011e1f33a5762f3d
BLAKE2b-256 0d35ca2e6acb6640c8d33904b34768a942d95685c3d9220fb8b3571980c4bee1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7ca857f41b642e0bfa02f467abb4c89049ce0747c02a2d172307cd2c0d97f33a
MD5 f4bd617e254d00302775b68f1f3bb825
BLAKE2b-256 7bd6ed38b2dcb5e6d8cc338bc955d8c0d50f2e54526c8439621ab7df0b6a17d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c2c4e1a85d77156bb2f612e3a4fe5ff7d04ac1e99f24f38d829a4cbbc2a9bf1
MD5 84ef836d43fd82cf1da56dc989d1e05d
BLAKE2b-256 fb02ed37144acfbd891a7ae1d3a0f23f4625db778c3c9e497e48c05e6ca206b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d58cd8c5b919d412250e6c4a422b8ab4accc72b76bf08be7fa764eca1c7cd212
MD5 0b5e0a417790d414cf1f75b466f41a09
BLAKE2b-256 8e3d1964fad0cc360993de0625dee5e7f8a1d1553b930841c48f9d6c6d998f80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4e1ca5a3c5c90ca35b00b6e889ef0272ac18e857d761905e18f61b2d20524cd8
MD5 1c7bf8278f7634686e427f747e368c43
BLAKE2b-256 7f0c249be9a36a3cac04454609e5047d0fb1f7ed5f715f93743bacb128d12cc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6abdccaf86d4fb58184b3d4b20411ab007a2d13dd0fdb1c49630296c134de749
MD5 14301d8ca4bb628dad9565743f01ce6f
BLAKE2b-256 05fbf44f41172bd94bfaf96eee23f13317cfbf16efcb802c406452b94d38e389

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 73.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d09b564b33c27bea374f8fe5d4c4fb32d259168f5edab9385084fe575c847d75
MD5 de538b72c1c15eabdda2bfa30b5ff635
BLAKE2b-256 8ed1f987e64362141964c605d732302639de341f8e23b332cebebf98b675a43d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd160fac1953b6a05a5cb2ebb5bfe108930d122e84571c8073752a1e328bba88
MD5 e961a71d564deb223b388704e65f0d2e
BLAKE2b-256 6547d020d63ec82f8589ac5dfe751b342dfc69e00bef619ea0183eee399a11c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: wrapt-1.13.3rc1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 33.6 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.10.0

File hashes

Hashes for wrapt-1.13.3rc1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5323ffe37d5a08066fe7baf95f77cf0ef3cbb619738c024b1bf1210a59b4ece0
MD5 365f284ff738bffcd0660f4e73086a33
BLAKE2b-256 58d91945c57e59fc2bfbe63b1e19c4442d3799da9c87b56ca351dfba23721485

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