docs |
|
|---|---|
tests |
|
package |
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
You can also install the in-development version with:
pip install https://github.com/ionelmc/python-lazy-object-proxy/archive/master.zip
Documentation
Development
To run all the tests run:
tox
Acknowledgements
This project is based on some code from wrapt as you can see in the git history.
Release files for lazy-object-proxy 1.12.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| lazy_object_proxy-1.12.0.tar.gz | 43.7 kB | Details |
Built distributions (wheels)
Total release size: 2.4 MB
Release files / lazy_object_proxy-1.12.0.tar.gz
| Download URL | lazy_object_proxy-1.12.0.tar.gz |
|---|---|
| Size | 43.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1f5a462d92fd0cfb82f1fab28b51bfb209fabbe6aabf7f0d51472c0c124c0c61
|
|
BLAKE2b-256 checksum How to use checksums |
08a269df9c6ba6d316cfd81fe2381e464db3e6de5db45f8c43c6a23504abf8cb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-pp39.pp310.pp311.graalpy311-none-any.whl
| Download URL | lazy_object_proxy-1.12.0-pp39.pp310.pp311.graalpy311-none-any.whl |
|---|---|
| Size | 15.1 kB |
| Tags | PyPy 3.10 PyPy 3.11 PyPy 3.9 graalpy311 |
|
SHA-256 checksum How to use checksums |
c3b2e0af1f7f77c4263759c4824316ce458fabe0fceadcd24ef8ca08b2d1e402
|
|
BLAKE2b-256 checksum How to use checksums |
41a0b91504515c1f9a299fc157967ffbd2f0321bce0516a3d5b89f6f4cad0355
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp314-cp314-win_amd64.whl
| Download URL | lazy_object_proxy-1.12.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 27.0 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7601ec171c7e8584f8ff3f4e440aa2eebf93e854f04639263875b8c2971f819f
|
|
BLAKE2b-256 checksum How to use checksums |
59979b410ed8fbc6e79c1ee8b13f8777a80137d4bc189caf2c6202358e66192c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 70.4 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
256262384ebd2a77b023ad02fbcc9326282bcfd16484d5531154b02bc304f4c5
|
|
BLAKE2b-256 checksum How to use checksums |
6f6a11ad7e349307c3ca4c0175db7a77d60ce42a41c60bcb11800aabd6a8acb8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 69.5 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
0a83c6f7a6b2bfc11ef3ed67f8cbe99f8ff500b05655d8e7df9aab993a6abc95
|
|
BLAKE2b-256 checksum How to use checksums |
12ac34cbfb433a10e28c7fd830f91c5a348462ba748413cbb950c7f259e67aa7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 71.0 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
fdc70d81235fc586b9e3d1aeef7d1553259b62ecaae9db2167a5d2550dcc391a
|
|
BLAKE2b-256 checksum How to use checksums |
068a7dcad19c685963c652624702f1a968ff10220b16bfcc442257038216bf55
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 71.1 kB |
| Tags | CPython 3.14 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
6763941dbf97eea6b90f5b06eb4da9418cc088fce0e3883f5816090f9afcde4a
|
|
BLAKE2b-256 checksum How to use checksums |
1ab6c5e0fa43535bb9c87880e0ba037cdb1c50e01850b0831e80eb4f4762f270
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | lazy_object_proxy-1.12.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 26.6 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c9defba70ab943f1df98a656247966d7729da2fe9c2d5d85346464bf320820a3
|
|
BLAKE2b-256 checksum How to use checksums |
ef3a277857b51ae419a1574557c0b12e0d06bf327b758ba94cafc664cb1e2f66
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313t-win_amd64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313t-win_amd64.whl |
|---|---|
| Size | 27.7 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
08c465fb5cd23527512f9bd7b4c7ba6cec33e28aad36fbbe46bf7b858f9f3f7f
|
|
BLAKE2b-256 checksum How to use checksums |
1940b4e48b2c38c69392ae702ae7afa7b6551e0ca5d38263198b7c79de8b3bdf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 79.5 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
a6b7ea5ea1ffe15059eb44bcbcb258f97bcb40e139b88152c40d07b1a1dfc9ac
|
|
BLAKE2b-256 checksum How to use checksums |
0bae29117275aac7d7d78ae4f5a4787f36ff33262499d486ac0bf3e0b97889f6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 80.8 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
717484c309df78cedf48396e420fa57fc8a2b1f06ea889df7248fdd156e58847
|
|
BLAKE2b-256 checksum How to use checksums |
121cd9c4aaa4c75da11eb7c22c43d7c90a53b4fca0e27784a5ab207768debea7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 82.9 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
8c40b3c9faee2e32bfce0df4ae63f4e73529766893258eca78548bac801c8f66
|
|
BLAKE2b-256 checksum How to use checksums |
4cb66c513693448dcb317d9d8c91d91f47addc09553613379e504435b4cc8b3e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 80.6 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
338ab2f132276203e404951205fe80c3fd59429b3a724e7b662b2eb539bb1be9
|
|
BLAKE2b-256 checksum How to use checksums |
609ef1c53e39bbebad2e8609c67d0830cc275f694d0ea23d78e8f6db526c12d3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313t-macosx_11_0_arm64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313t-macosx_11_0_arm64.whl |
|---|---|
| Size | 27.4 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
4a79b909aa16bde8ae606f06e6bbc9d3219d2e57fb3e0076e17879072b742c65
|
|
BLAKE2b-256 checksum How to use checksums |
2312cd2235463f3469fd6c62d41d92b7f120e8134f76e52421413a0ad16d493e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313-win_amd64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 26.6 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7b22c2bbfb155706b928ac4d74c1a63ac8552a55ba7fff4445155523ea4067e1
|
|
BLAKE2b-256 checksum How to use checksums |
c0678ec9abe15c4f8a4bcc6e65160a2c667240d025cbb6591b879bea55625263
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 70.7 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
75ba769017b944fcacbf6a80c18b2761a1795b03f8899acdad1f1c39db4409be
|
|
BLAKE2b-256 checksum How to use checksums |
588d25c20ff1a1a8426d9af2d0b6f29f6388005fc8cd10d6ee71f48bff86fdd0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 69.4 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
67f07ab742f1adfb3966c40f630baaa7902be4222a17941f3d85fd1dae5565ff
|
|
BLAKE2b-256 checksum How to use checksums |
e5471d20e626567b41de085cf4d4fb3661a56c159feaa73c825917b3b4d4f806
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 71.1 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
be9045646d83f6c2664c1330904b245ae2371b5c57a3195e4028aedc9f999655
|
|
BLAKE2b-256 checksum How to use checksums |
47b6919118e99d51c5e76e8bf5a27df406884921c0acf2c7b8a3b38d847ab3e9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 71.5 kB |
| Tags | CPython 3.13 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
81d1852fb30fab81696f93db1b1e55a5d1ff7940838191062f5f56987d5fcc3e
|
|
BLAKE2b-256 checksum How to use checksums |
9b52641870d309e5d1fb1ea7d462a818ca727e43bfa431d8c34b173eb090348c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | lazy_object_proxy-1.12.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 26.7 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
86fd61cb2ba249b9f436d789d1356deae69ad3231dc3c0f17293ac535162672e
|
|
BLAKE2b-256 checksum How to use checksums |
f426b74c791008841f8ad896c7f293415136c66cc27e7c7577de4ee68040c110
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp312-cp312-win_amd64.whl
| Download URL | lazy_object_proxy-1.12.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 26.6 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
53c7fd99eb156bbb82cbc5d5188891d8fdd805ba6c1e3b92b90092da2a837073
|
|
BLAKE2b-256 checksum How to use checksums |
5daaf02be9bbfb270e13ee608c2b28b8771f20a5f64356c6d9317b20043c6129
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 70.7 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
563d2ec8e4d4b68ee7848c5ab4d6057a6d703cb7963b342968bb8758dda33a23
|
|
BLAKE2b-256 checksum How to use checksums |
78be15f8f5a0b0b2e668e756a152257d26370132c97f2f1943329b08f057eff0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 69.3 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
c4fcbe74fb85df8ba7825fa05eddca764138da752904b378f0ae5ab33a36c308
|
|
BLAKE2b-256 checksum How to use checksums |
2b24e581ffed864cd33c1b445b5763d617448ebb880f48675fc9de0471a95cbc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 71.0 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
14e348185adbd03ec17d051e169ec45686dcd840a3779c9d4c10aabe2ca6e1c0
|
|
BLAKE2b-256 checksum How to use checksums |
1153857fc2827fc1e13fbdfc0ba2629a7d2579645a06192d5461809540b78913
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 71.5 kB |
| Tags | CPython 3.12 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
4ab2c584e3cc8be0dfca422e05ad30a9abe3555ce63e9ab7a559f62f8dbc6ff9
|
|
BLAKE2b-256 checksum How to use checksums |
5564314889b618075c2bfc19293ffa9153ce880ac6153aacfd0a52fcabf21a66
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | lazy_object_proxy-1.12.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 26.7 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
8ee0d6027b760a11cc18281e702c0309dd92da458a74b4c15025d7fc490deede
|
|
BLAKE2b-256 checksum How to use checksums |
0d1bb5f5bd6bda26f1e15cd3232b223892e4498e34ec70a7f4f11c401ac969f1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp311-cp311-win_amd64.whl
| Download URL | lazy_object_proxy-1.12.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 26.5 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
997b1d6e10ecc6fb6fe0f2c959791ae59599f41da61d652f6c903d1ee58b7370
|
|
BLAKE2b-256 checksum How to use checksums |
6a484b718c937004bf71cd82af3713874656bcb8d0cc78600bf33bb9619adc6c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 68.1 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
a61095f5d9d1a743e1e20ec6d6db6c2ca511961777257ebd9b288951b23b44fa
|
|
BLAKE2b-256 checksum How to use checksums |
cfd2b320325adbb2d119156f7c506a5fbfa37fcab15c26d13cf789a90a6de04e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 67.8 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
3605b632e82a1cbc32a1e5034278a64db555b3496e0795723ee697006b980508
|
|
BLAKE2b-256 checksum How to use checksums |
790e090bf070f7a0de44c61659cb7f74c2fe02309a77ca8c4b43adfe0b695f66
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 69.1 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
1192e8c2f1031a6ff453ee40213afa01ba765b3dc861302cd91dbdb2e2660b00
|
|
BLAKE2b-256 checksum How to use checksums |
3d4b5788e5e8bd01d19af71e50077ab020bc5cce67e935066cd65e1215a09ff9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 68.8 kB |
| Tags | CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
efff4375a8c52f55a145dc8487a2108c2140f0bec4151ab4e1843e52eb9987ad
|
|
BLAKE2b-256 checksum How to use checksums |
3a031bdc21d9a6df9ff72d70b2ff17d8609321bea4b0d3cffd2cea92fb2ef738
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | lazy_object_proxy-1.12.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 26.7 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1cf69cd1a6c7fe2dbcc3edaa017cf010f4192e53796538cc7d5e1fedbfa4bcff
|
|
BLAKE2b-256 checksum How to use checksums |
01b34684b1e128a87821e485f5a901b179790e6b5bc02f89b7ee19c23be36ef3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp310-cp310-win_amd64.whl
| Download URL | lazy_object_proxy-1.12.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 26.5 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
be5fe974e39ceb0d6c9db0663c0464669cf866b2851c73971409b9566e880eab
|
|
BLAKE2b-256 checksum How to use checksums |
611bc6b1865445576b2fc5fa0fbcfce1c05fee77d8979fd1aa653dd0f179aefc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 66.9 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
cc6e3614eca88b1c8a625fc0a47d0d745e7c3255b21dac0e30b3037c5e3deeb8
|
|
BLAKE2b-256 checksum How to use checksums |
7e6fb7368d301c15612fcc4cd00412b5d6ba55548bde09bdae71930e1a81f2ab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 66.7 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
029d2b355076710505c9545aef5ab3f750d89779310e26ddf2b7b23f6ea03cd8
|
|
BLAKE2b-256 checksum How to use checksums |
a3adb013840cc43971582ff1ceaf784d35d3a579650eb6cc348e5e6ed7e34d28
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 68.4 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
c1ca33565f698ac1aece152a10f432415d1a2aa9a42dfe23e5ba2bc255ab91f6
|
|
BLAKE2b-256 checksum How to use checksums |
da8f91fc00eeea46ee88b9df67f7c5388e60993341d2a406243d620b2fdfde57
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 67.6 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
d01c7819a410f7c255b20799b65d36b414379a30c6f1684c7bd7eb6777338c1b
|
|
BLAKE2b-256 checksum How to use checksums |
07d2b7189a0e095caedfea4d42e6b6949d2685c354263bdf18e19b21ca9b3cd6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | lazy_object_proxy-1.12.0-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 26.7 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
61d5e3310a4aa5792c2b599a7a78ccf8687292c8eb09cf187cca8f09cf6a7519
|
|
BLAKE2b-256 checksum How to use checksums |
d62bd5e8915038acbd6c6a9fcb8aaf923dc184222405d3710285a1fec6e262bc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp39-cp39-win_amd64.whl
| Download URL | lazy_object_proxy-1.12.0-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 26.4 kB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
424a8ab6695400845c39f13c685050eab69fa0bbac5790b201cd27375e5e41d7
|
|
BLAKE2b-256 checksum How to use checksums |
f9849646e640689cba3a5b46c62cf4281dfaf3d3e224b16d48d0a24acb1ab74b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 65.1 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3d3964fbd326578bcdfffd017ef101b6fb0484f34e731fe060ba9b8816498c36
|
|
BLAKE2b-256 checksum How to use checksums |
6896227207629436bf5690a32c38b8524fdb32228559e22ccb6b9cb149d8f217
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 64.9 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
15400b18893f345857b9e18b9bd87bd06aba84af6ed086187add70aeaa3f93f1
|
|
BLAKE2b-256 checksum How to use checksums |
87dfee5a4c0dba431ba8f77fb14388abb830d26617a15215f462d84251a91b40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | lazy_object_proxy-1.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 66.8 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
31020c84005d3daa4cc0fa5a310af2066efe6b0d82aeebf9ab199292652ff036
|
|
BLAKE2b-256 checksum How to use checksums |
b667b2a4ff7094f35d3dda1c7d0b3b629e8c1186b1a014370c6d20e02d4a23ce
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | lazy_object_proxy-1.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 66.3 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
800f32b00a47c27446a2b767df7538e6c66a3488632c402b4fb2224f9794f3c0
|
|
BLAKE2b-256 checksum How to use checksums |
6957f1d038b4792dd621e2fa92dfdb4f652eee7b1d6000fe6849fc2308c3472e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Release files / lazy_object_proxy-1.12.0-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | lazy_object_proxy-1.12.0-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 26.6 kB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
ae575ad9b674d0029fc077c5231b3bc6b433a3d1a62a8c363df96974b5534728
|
|
BLAKE2b-256 checksum How to use checksums |
fddcab1dcba92b576ed278f358f95edee30e835463e7976a219248a8635f757d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|