Skip to main content

A fast and thorough lazy object proxy.

Project description

A fast and thorough lazy object proxy.

  • Free software: BSD 2-Clause License

Note that this is based on wrapt’s ObjectProxy with one big change: it calls a function the first time the proxy object is used, while wrapt.ObjectProxy just forwards the method calls to the target object.

In other words, you use lazy-object-proxy when you only have the object way later and you use wrapt.ObjectProxy when you want to override few methods (by subclassing) and forward everything else to the target object.

Example:

import lazy_object_proxy

def expensive_func():
    from time import sleep
    print('starting calculation')
    # just as example for a very slow computation
    sleep(2)
    print('finished calculation')
    # return the result of the calculation
    return 10

obj = lazy_object_proxy.Proxy(expensive_func)
# function is called only when object is actually used
print(obj)  # now expensive_func is called

print(obj)  # the result without calling the expensive_func

Installation

pip install lazy-object-proxy

Documentation

https://python-lazy-object-proxy.readthedocs.io/

Development

To run the all tests run:

tox

Acknowledgements

This project is based on some code from wrapt as you can see in the git history.

Changelog

1.4.3 (2019-10-26)

  • Added binary wheels for Python 3.8.

  • Fixed license metadata.

1.4.2 (2019-08-22)

  • Included a pyproject.toml to allow users install the sdist with old python/setuptools, as the setuptools-scm dep will be fetched by pip instead of setuptools. Fixes #30.

1.4.1 (2019-05-10)

  • Fixed wheels being built with -coverage cflags. No more issues about bogus cext.gcda files.

  • Removed useless C file from wheels.

  • Changed setup.py to use setuptools-scm.

1.4.0 (2019-05-05)

  • Fixed __mod__ for the slots backend. Contributed by Ran Benita in #28.

  • Dropped support for Python 2.6 and 3.3. Contributed by “hugovk” in #24.

1.3.1 (2017-05-05)

  • Fix broken release (sdist had a broken MANIFEST.in).

1.3.0 (2017-05-02)

  • Speed up arithmetic operations involving cext.Proxy subclasses.

1.2.2 (2016-04-14)

  • Added manylinux wheels.

  • Minor cleanup in readme.

1.2.1 (2015-08-18)

  • Fix a memory leak (the wrapped object would get bogus references). Contributed by Astrum Kuo in #10.

1.2.0 (2015-07-06)

  • Don’t instantiate the object when __repr__ is called. This aids with debugging (allows one to see exactly in what state the proxy is).

1.1.0 (2015-07-05)

  • Added support for pickling. The pickled value is going to be the wrapped object without any Proxy container.

  • Fixed a memory management issue in the C extension (reference cycles weren’t garbage collected due to improper handling in the C extension). Contributed by Alvin Chow in #8.

1.0.2 (2015-04-11)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lazy-object-proxy-1.4.3.tar.gz (34.9 kB view details)

Uploaded Source

Built Distributions

lazy_object_proxy-1.4.3-cp38-cp38-win_amd64.whl (21.0 kB view details)

Uploaded CPython 3.8Windows x86-64

lazy_object_proxy-1.4.3-cp38-cp38-win32.whl (18.6 kB view details)

Uploaded CPython 3.8Windows x86

lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl (58.6 kB view details)

Uploaded CPython 3.8

lazy_object_proxy-1.4.3-cp37-cp37m-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

lazy_object_proxy-1.4.3-cp37-cp37m-win32.whl (18.5 kB view details)

Uploaded CPython 3.7mWindows x86

lazy_object_proxy-1.4.3-cp37-cp37m-manylinux1_x86_64.whl (56.5 kB view details)

Uploaded CPython 3.7m

lazy_object_proxy-1.4.3-cp37-cp37m-macosx_10_13_x86_64.whl (19.0 kB view details)

Uploaded CPython 3.7mmacOS 10.13+ x86-64

lazy_object_proxy-1.4.3-cp36-cp36m-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

lazy_object_proxy-1.4.3-cp36-cp36m-win32.whl (18.5 kB view details)

Uploaded CPython 3.6mWindows x86

lazy_object_proxy-1.4.3-cp36-cp36m-manylinux1_x86_64.whl (55.6 kB view details)

Uploaded CPython 3.6m

lazy_object_proxy-1.4.3-cp35-cp35m-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

lazy_object_proxy-1.4.3-cp35-cp35m-win32.whl (18.5 kB view details)

Uploaded CPython 3.5mWindows x86

lazy_object_proxy-1.4.3-cp35-cp35m-manylinux1_x86_64.whl (55.3 kB view details)

Uploaded CPython 3.5m

lazy_object_proxy-1.4.3-cp34-cp34m-win_amd64.whl (18.7 kB view details)

Uploaded CPython 3.4mWindows x86-64

lazy_object_proxy-1.4.3-cp34-cp34m-win32.whl (17.1 kB view details)

Uploaded CPython 3.4mWindows x86

lazy_object_proxy-1.4.3-cp34-cp34m-manylinux1_x86_64.whl (55.0 kB view details)

Uploaded CPython 3.4m

lazy_object_proxy-1.4.3-cp27-cp27mu-manylinux1_x86_64.whl (54.3 kB view details)

Uploaded CPython 2.7mu

lazy_object_proxy-1.4.3-cp27-cp27m-win_amd64.whl (18.9 kB view details)

Uploaded CPython 2.7mWindows x86-64

lazy_object_proxy-1.4.3-cp27-cp27m-win32.whl (17.4 kB view details)

Uploaded CPython 2.7mWindows x86

lazy_object_proxy-1.4.3-cp27-cp27m-macosx_10_13_x86_64.whl (19.2 kB view details)

Uploaded CPython 2.7mmacOS 10.13+ x86-64

File details

Details for the file lazy-object-proxy-1.4.3.tar.gz.

File metadata

  • Download URL: lazy-object-proxy-1.4.3.tar.gz
  • Upload date:
  • Size: 34.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.8

File hashes

Hashes for lazy-object-proxy-1.4.3.tar.gz
Algorithm Hash digest
SHA256 f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0
MD5 5c64c06affcd2a7c6ddc848af4280cca
BLAKE2b-256 073fa3d687f83c7d44970f70ff0400677746c8860b11f0c08f6b4e07205f0cdc

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 21.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 59f79fef100b09564bc2df42ea2d8d21a64fdcda64979c0fa3db7bdaabaf6239
MD5 b86068b2d65c5418eef2a92f4b8afbeb
BLAKE2b-256 99982d0036d357a82737a2cb14541d957c71f90e792ae623768ca6acd483d49a

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 18.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5541cada25cd173702dbd99f8e22434105456314462326f06dba3e180f203dfd
MD5 7b3a7282b8d23e21eb26d81f735cfd40
BLAKE2b-256 a07956c3bd646f81ddf3202b42aee3498c4a9e50856923ceb556b4d202247232

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 58.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a6ae12d08c0bf9909ce12385803a543bfe99b95fe01e752536a60af2b7797c62
MD5 8c89bb232d800f7c3f9e3e268df7236e
BLAKE2b-256 348c74acd0ad5a0518be9e0f3b4d022e84da0c1d9b78972afce73259ac85d78b

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 20.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9254f4358b9b541e3441b007a0ea0764b9d056afdeafc1a5569eee1cc6c1b9ea
MD5 a067215a6bbdfb53e02df2cba900f247
BLAKE2b-256 595bb72328980e6681df90c933c11adbb434a48f27b6a5770109d6cce4abdc56

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9b15f3f4c0f35727d3a0fba4b770b3c4ebbb1fa907dbcc046a1d2799f3edd142
MD5 af2f8ed198b536f557c204e3c0460297
BLAKE2b-256 bb86408d30bd2d3a04f05a2a824fd33c6bfd97ab5f8c28cac93d96977a8dba51

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 56.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d74bb8693bf9cf75ac3b47a54d716bbb1a92648d5f781fc799347cfc95952383
MD5 aa853020906f82dd28a265999e97e769
BLAKE2b-256 23f869df5a663b59512eb9f9b84e7f203c48c7a933e460316e9ebf4db2871ae0

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1be7e4c9f96948003609aa6c974ae59830a6baecc5376c25c92d7d697e684c08
MD5 56478bf5484d2e1943cf31e7222914c1
BLAKE2b-256 e244044dc5610d868cd4e9329549c07e8366c0b0aace410d2502a131c46576de

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 20.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8d859b89baf8ef7f8bc6b00aa20316483d67f0b1cbf422f5b4dc56701c8f2ffb
MD5 5059cc2135aea9fd56e8d3e1c101b520
BLAKE2b-256 aefe98f7c4717f1581eefc19eac54d430e4e47722d9b0dc5a7e485c3e42a5ff2

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 cb2c7c57005a6804ab66f106ceb8482da55f5314b7fcb06551db1edae4ad1531
MD5 4705e9f4400e84788337b15d28d05837
BLAKE2b-256 6618c6d97231c7db3be49ef2166d8f5a09d4d47c00f1e0b2c1fec8395d68c794

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 55.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 97bb5884f6f1cdce0099f86b907aa41c970c3c672ac8b9c8352789e103cf3156
MD5 83b8df1b0e7e29bc5d2596b95673f0dd
BLAKE2b-256 0bddb1e3407e9e6913cf178e506cd0dee818e58694d9a5cd1984e3f6a8b9a10f

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 20.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 194d092e6f246b906e8f70884e620e459fc54db3259e60cf69a4d66c3fda3449
MD5 eabdd67f16b3d0af5972e0c5dbc33790
BLAKE2b-256 126e787fcc5a95fef222a1728174965bf0a6700ee66ce9d1a03a65916c5815b2

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp35-cp35m-win32.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ca0a928a3ddbc5725be2dd1cf895ec0a254798915fb3a36af0964a0a4149e3db
MD5 d98b15be776a3f7ded73f9902602b3a8
BLAKE2b-256 8d80736bd708ea9b30e82079f0079d5c32aaf1d78514535c6375118758f8a655

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 55.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 48dab84ebd4831077b150572aec802f303117c8cc5c871e182447281ebf3ac50
MD5 ae34372cd843a08c865cdb22a62c502c
BLAKE2b-256 54d94288a0101a8860515aa2a76c3c5c3ffe7c7777b68ddffd2c7703a35e866e

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 18.7 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 eba7011090323c1dadf18b3b689845fd96a61ba0a1dfbd7f24b921398affc357
MD5 195013cf236000fa518393ecf224b13c
BLAKE2b-256 8d20ede497613c94e177b5808c23338bdc9c7055e5a8655aa17926c3fac2c78a

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp34-cp34m-win32.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 9651375199045a358eb6741df3e02a651e0330be090b3bc79f6d0de31a80ec3e
MD5 3ac045e45fab5c0f37f7599347e7a0ad
BLAKE2b-256 62ce6eca207b558906255d3af90b1186d1c6ada487532f2a36bbfa0b2a61cfb4

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 55.0 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d945239a5639b3ff35b70a88c5f2f491913eb94871780ebfabb2568bd58afc5a
MD5 7b1b08fa0c8ef251ef03d9b9cffe9c26
BLAKE2b-256 8e0ea88dd088c4a9c3e4bc35b03433257588520ea63cfefc29088fef66adf7d4

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 54.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0c4b206227a8097f05c4dbdd323c50edf81f15db3b8dc064d08c62d37e1a504d
MD5 49f44f28c479da6b3a87894573157a23
BLAKE2b-256 9b1ca01cbc29f2f737a797e4abdd5a9436e52449b8f439fa0221806966c25530

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4677f594e474c91da97f489fea5b7daa17b5517190899cf213697e48d3902f5a
MD5 48efb4e843136ab1cd326e112f6bda40
BLAKE2b-256 7d095ccee8bb130cd8039070c0a73ecd3622a7a6d4e0ff5d943c39ee4d9c5d6c

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp27-cp27m-win32.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 efa1909120ce98bbb3777e8b6f92237f5d5c8ea6758efea36a473e1d38f7d3e4
MD5 269708f7416a9b469b4d3f67702cfc67
BLAKE2b-256 ef12cde9399367241f5b0dd26c5f3e490d1a61972891fa4167370d40f058e7c0

See more details on using hashes here.

File details

Details for the file lazy_object_proxy-1.4.3-cp27-cp27m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: lazy_object_proxy-1.4.3-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for lazy_object_proxy-1.4.3-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a2238e9d1bb71a56cd710611a1614d1194dc10a175c1e08d75e1a7bcc250d442
MD5 238623baf7cebbe874aefb946aaf395d
BLAKE2b-256 fcceea737925391ee9045d890db35d3e98bb9bf198f15f66030cac39479ef82f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page