Skip to main content

Lazy-evaluated, asynchronous HTTP requests powered by Rust

Project description

lazynet

Are you lazy? Do you need to make lots of HTTP requests?

Well, look no further. lazynet is for you!

lazynet performs lazy-evaluated, asynchronous HTTP requests. It is ideal for making many HTTP requests for data at rest, fast and efficiently in a functional manner.

It uses Rust's async runtime (tokio + reqwest) under the hood. It also hides this complexity from you, keeping you in a synchronous mindset.

Usage

Suppose you are lazily reading IDs from a flat file, to be used in HTTP requests:

def lazy_ids():
    with open('file.txt') as fin:
        for line in fin:
            yield line.strip()

You create a url using each individual ID:

def my_url(id):
    return f'http://localhost/object/{id}'

Now you can make the HTTP request lazily using Python generators:

import lazynet

urls = (my_url(id) for id in lazy_ids())
responses = lazynet.get(urls)  # responses is a generator

for response in responses:  # nothing is evaluated until this loop
    print(response.status)

Performance

2015-2023: An initial implementation <=0.4.0 was written in pure python and achieved 1300 requests per second on a single core.

2024: Rewrote the core logic in Rust, getting ~7000 requests per second on a single core.

2025: Vibecoded to perfection, getting ~11k requests per second on a single core. Also added multi-core support, tested on a 16 core AM5 cpu (32 HT cores), getting a whopping ~360k requests per second.

All performance tests are performed against a local nginx server. On Macos you will hit file limits long before the performance bottleneck.

macOS nginx setup

Config: /opt/homebrew/etc/nginx/nginx.conf

worker_rlimit_nofile 65535;
events {
    worker_connections 16384;
}
nginx -t                        # Test config
brew services restart nginx     # Restart
tail -f /opt/homebrew/var/log/nginx/error.log

History

2015: The original concept was explored here

2019: lazynet was revisited and developed further over 3 days in a hackathon as a proof of concept.

2023: Updated to use current asyncio interface. Removed Tornado as a dependency.

2024: Rewritten in Rust using PyO3 for maximum performance.

2025: Brought up to BETA standards and will be put into a production service.

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

lazynet-0.8.1.tar.gz (77.9 kB view details)

Uploaded Source

Built Distributions

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

lazynet-0.8.1-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

lazynet-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

lazynet-0.8.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

lazynet-0.8.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lazynet-0.8.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lazynet-0.8.1-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lazynet-0.8.1-cp314-cp314-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lazynet-0.8.1-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

lazynet-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

lazynet-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lazynet-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lazynet-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lazynet-0.8.1-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lazynet-0.8.1-cp313-cp313-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lazynet-0.8.1-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

lazynet-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

lazynet-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lazynet-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lazynet-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lazynet-0.8.1-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lazynet-0.8.1-cp312-cp312-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lazynet-0.8.1-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

lazynet-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

lazynet-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lazynet-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lazynet-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lazynet-0.8.1-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lazynet-0.8.1-cp311-cp311-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lazynet-0.8.1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

lazynet-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

lazynet-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lazynet-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lazynet-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lazynet-0.8.1-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lazynet-0.8.1-cp310-cp310-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file lazynet-0.8.1.tar.gz.

File metadata

  • Download URL: lazynet-0.8.1.tar.gz
  • Upload date:
  • Size: 77.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazynet-0.8.1.tar.gz
Algorithm Hash digest
SHA256 b519d8a5bd5e4b0e599a40e8f13f11b446e4adf2876535706dc4000c433b0172
MD5 7959f091349e3753cdba6cd410255783
BLAKE2b-256 e711f97b704d98cfdd1cffa25e7a67c06cf573b555ca4c727d4cb285a0a92fe4

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: lazynet-0.8.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazynet-0.8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1010aa3e7b1039ef1bad1e8fe5375efaf0cda535707c493b05770afd9ae926f1
MD5 da1d3c61abf84c1b64edefcc569bb270
BLAKE2b-256 6a8062308e59405d85ce9bc7c490288f7f99029873609a93032d2a2c6313bf9f

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5dbcc3cebd8ef6ad8743f5058a7c988eb6bd167b112cab840ce8b2164baa4de
MD5 5ecd5c11c9669e06f68527a85b5e8654
BLAKE2b-256 36050afdbdb5df25c37e4aa58eb9f14e74c37d5874eec6f43f59e27b955aa05f

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 303e6e4509f7a16d1b2761d207bf22722554d1dd16e7ca3256c4ac6ee6122dae
MD5 640767ed619684b5e701c0ee79fef81c
BLAKE2b-256 415eb4dea12e3d5ed9ef1e081298dc0afffc65c044369c62a4d7b507df75da05

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13d4a778b53c52d8721ac94e6e5371594d34174ececeb70e1d3d1f93198dc322
MD5 f10b113960f195765a53eba3fdeba3eb
BLAKE2b-256 2749a2ad8d13c62dd03c62e28e1a4d2ab74a1a3fb94b0e645749a2ad4502ebe9

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1430d5d5579a4e0c8c3d381cd79fb042dd2c4c2f13874af39c3d3abbf55aee19
MD5 45d7e64382c2dc7f35c9e6407fa94ffc
BLAKE2b-256 542896f49fd43b3e6806a36bb02dedb57825c65231d3fe31d70800d5ef5b8762

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e76ea4b96c0c3cd9aac6a54d298b8ecc998ab53d0e9ad2fcc68ff6367574e21b
MD5 456c54df8eae8ea0ea1c13deb5389d13
BLAKE2b-256 d564d10fb9267c6af83d64036cd890d4362b42ecc32dc68d340e6f5767de649a

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 545ddad33f9ff72e9acfc99ccb82ba02835d48821502cb20d1d9046a4ca13e96
MD5 e8c7f38db517b4c2c2f4cab9da855908
BLAKE2b-256 7057b3416d4d2b0c96d9ec58f2f00beef6778c4ee9948c6130406a32651ffc26

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lazynet-0.8.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazynet-0.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f4108bd5dfd13f7face33a6f1cbcc33c7ede2b9228c7dcacc9ff7a541013e446
MD5 a6b3b3d38f24dabe78c35336988f5f36
BLAKE2b-256 17cf4b897fc83094513ce51d061e63cfd887d308b69f61a992c8434019c6247a

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c632582fbc4f19ef48f69ef14dce6930eda852bdbbd58a5705d1fdd7566056b
MD5 7a92d6e4ddf5830e31c0cc4ac5b2875a
BLAKE2b-256 fd046d00613bbec39a74156b5fa31438a32c8a1f74bffd81415022aac83efb4f

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6306803ad0a056d911a876047c89c0c0f935de13679e081143658770e59e772a
MD5 2bd4dfd1fb226af6a3089a080fd8eb1a
BLAKE2b-256 90814446ab21287cb9b027d960af07026d383997dbbc248d3a58536c4d658c84

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f93fff583e168327d8f3bbd168c35372ec8a39688e002a6173653ee4b9fe945
MD5 1f39ac56a8760b8711ab507511f3ee7f
BLAKE2b-256 6f5512e5991f6ba4fe43316133202d3ce69a1ed2ec86228f9d7cda6063dd134a

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 820db45c14d2436861aefb6fbb8c85f74f454ec397eef25e2b882e419dbdf8da
MD5 3a855700012221b89050c6a4190bc83a
BLAKE2b-256 53c9f5ed5f2edbb2554df999532d3eb693438bee556f429a8ecd1562ccaaf449

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d37233f619ce1dba032dfa9be1db4734f701e666879b00edc8da47932923dae5
MD5 b21eef0acb1c073e7f16c322b32b1016
BLAKE2b-256 8f395c60f7a2f9ae6fbece5a74f172c638151ee2d32061c2492fa77f3eeff693

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f75305deb73823c08064cf4b83cf6347b69464f4c17ea3b0217d6748bd59079
MD5 963b4499ca9658d5f01e4ce78b519a28
BLAKE2b-256 a0e8ec7c7804fedf5049848aaa323f6e37c0d6dd112961510618814dad613e78

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lazynet-0.8.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazynet-0.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df706ef654635b91489d51889112756888cb2fd764a96ee4b9b21c0c041ade8b
MD5 01b04a35f5bd3365c6549c99ee27ce4e
BLAKE2b-256 fa15c31b556361b203e8f3c7bfe20b7b7472b378d584a7c6a6e4835c0e681b9e

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 395ac0f2c6c9d71af6e3a25705c4739b075fa3322a80825b53582174f4d57b1f
MD5 d64a4318ad1a3c29e807c38a23d278ab
BLAKE2b-256 836de111047ec673081e227310cb8b2c8c4806b2482879e3a524da846cd52a17

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cc90dcc681fd2e5e917c49bbb701f5328a04b511f1353ff4e9e59e5fe9ce528
MD5 3345ea36d19f2a1eaa62823846324d2f
BLAKE2b-256 27f5f2de43324f6ec0a12265ebcf7291f25ad0690f1917226536a3ea96f5d909

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1306e655ef6ab78e7bf47837297f3e5594582ce881fdea9a61dde7c820fb2f8d
MD5 7d0854a4e811e6ba0c961403d3cedfb4
BLAKE2b-256 85da16a0414a47cf3c0fcf1f09d22be791370587cd0fefc503f9dce5987f34a4

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e69f8145d3268ab8f8911732f84667298dd3b431d8bc11880c42f3459f02e5c
MD5 ddf3fc9191609015fce49d7bd51086f2
BLAKE2b-256 76fc8ab7aa46faa8a351549409a30a8292ddcf697e800eb729faa6f3c16eb1ca

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d58111e9d38d392221e2b3f3593087092286fd98deff58c5834e927de789d31a
MD5 9ac0ca084b92a23fcc479f9c5fc67ee1
BLAKE2b-256 3fe06a2309fb2dd145fcac3925f8a1334425c49c8b16c5ff69c8feebfaa5b292

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 555bff06644cad614a273054f1535ddc5a4414c60f9e2238e710c51f907a376d
MD5 8da5776855437d841d51937e29e69a72
BLAKE2b-256 741e70321f5ca1582ad528e8f71914c0f2366dc2a0688ddd57c856893ebc15a5

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lazynet-0.8.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazynet-0.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 204b363ea675711964c3ce17943a76863192ff2665f5ecdfcdb51ded98c13373
MD5 5a1b033756f3c28b011640befa61156c
BLAKE2b-256 4334741ff0e5f5de0ecbda07e5f4e25346b48e970171bed1743fea135f8c792e

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de93cc9219f3bf0587ad6d5df5b59adecb96b73b0f053ebd8b97f8e53c104526
MD5 8502970497d437d50209bfcef967a7bb
BLAKE2b-256 809167693b023d496f6742233ab6e7452c87d407a9a8223f45c2e19ac60db56c

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6fabf754242abe98ba0c79d7275fb7c401ac37a13807583c6f9336c0669acb1
MD5 d2b3e716efe8bbc7e83aeb51681fa95f
BLAKE2b-256 3f3c0ca0b16c979c137582709d107446111c01a4e8684bf8201863c4ab7a8dc7

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47b4ffb61c3ac26c6cfea0f2581a02b06c9fd954cde240894f4dfb2f724b5ef9
MD5 c42df3b61092708a6e237a5ec85c4587
BLAKE2b-256 7c3c700ddaa61d0592f6a39dac7e5e51b5c3b0a10fd5dec9cdd367b93713ca31

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25fba1af868a576f26388a4ce9aca4c6c8ec3cf85d11589305f90fc17b20da22
MD5 dda622903e6ca365578c371c9717f63c
BLAKE2b-256 d9779297c2b3d9fdd957c3c31d4e9dc4d70d42c06dfaf03f9db07965717f57a1

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe458986ef0d0f238d6b4dbe44ad2257f21a72681ba5927084114b80297bbc69
MD5 d42bb8577527650c4d85ffe92dac72c4
BLAKE2b-256 d3d9359a8c32eda3b0fc49f8a1ae30a033c126e172ca201914d7ed107a6ea7c1

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 169628906c7fc6a3f4124f614ccd2c21bb9b317fccaa1e4ba5dcae41857a423f
MD5 67b22841578f90f68a1bd2a7a8fbffc1
BLAKE2b-256 2240acb70a9344f4e29fba8dfb7c35e781c2a80d53703e8edfc6f10ed4bb8aae

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lazynet-0.8.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazynet-0.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6995424fa07fa2af68c9bd56eba430cd6e403af880bb26f29bd792191b4347e
MD5 0681316b72c6c98c428d5e29a6ddf0c9
BLAKE2b-256 7f26125dcc1bc8759fb124ba12dbb10373bb6b9ad664ce440c25a4528b8b95b6

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 985453a90754daf4e99a11a2c71b6561676547bbd29fcc85e6928aed1644d0de
MD5 17de29b16484a46f98e0d1db75ce1069
BLAKE2b-256 c287bf586dc9b20e13c7f7871eb2ba00fcd5a9bcbf4d55f5404ed21670b35a0e

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c55004421a79eb45af09bc1315fcd959483d3c6b09d7a86b4346309c5076c19
MD5 76bf2a77d1bcd367059c372fc6ede2c3
BLAKE2b-256 ebe2722b16a9f4f619d55bb2360bc48533bd090fbabebf4fd4c0a431db95dd33

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbae6fab989025a0f9bdf87ae4828a3794c3b73cd59d089fdc01160d1a76ba9b
MD5 af5abd615f8eefc46ac0f1a79f80ebad
BLAKE2b-256 b54be8222cef91905c50ad4c6ec900e9e6ef2b083de841d481ef7400794aa4f3

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 681374e3699bb899c91b83786aa4e7699bc1c003ea89e6f2dbce4f1d85fc6d0a
MD5 2966527b2144799c250f7c3fddea9c24
BLAKE2b-256 98960685e8c20a4da1a7bf97c4e0932742b3329158dbec9e2a6a1c2d7a7f3c6e

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 588cf4c6ea4abe446b1dafbbea826caf8dbda0b1485b641d55f74a3d9d99c55d
MD5 5b165b10866d66932a06b23a6c9a1c90
BLAKE2b-256 82916bd63b53b892ea8d0f12711f61cf9906778225125455d9f0e6f0451f37d1

See more details on using hashes here.

File details

Details for the file lazynet-0.8.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lazynet-0.8.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 baef1bfd32d72d93fcdf592f1176d972afc4d005c6c079b87975a15533bc38b8
MD5 5b1ec34a45f03504bb3531e1caf8398f
BLAKE2b-256 2d5ce64cbcf859da2cd6c186df754d31e2e0caf424d985ec758599c47cd4d1be

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