Skip to main content

Lazy-evaluated, asynchronous HTTP requests powered by Rust

Project description

lazynet

PyPI version CI License: MIT

Lazy-evaluated, asynchronous HTTP requests powered by Rust.

Pass in a generator of URLs, get back a generator of responses. Requests execute concurrently when responses are consumed.

Features

  • Lazy evaluation - Requests only execute when you iterate over responses
  • High concurrency - Configurable limit (default: 1000 concurrent requests)
  • Connection pooling - Client class for reusing connections across batches
  • Fast - Rust async runtime (tokio + reqwest) for maximum throughput
  • Simple API - Synchronous Python interface, async complexity hidden

Installation

pip install lazynet

Quick Start

import lazynet

# Generator of URLs
urls = (f"https://api.example.com/item/{i}" for i in range(100))

# Lazy iteration - requests execute as you consume
for response in lazynet.get(urls):
    print(response.status, response.text[:50])
    if response.json:  # Auto-parsed JSON
        print(response.json["key"])

API Reference

lazynet.get(urls, concurrency_limit=1000, timeout_secs=30)

Make HTTP GET requests lazily.

Parameters:

  • urls - Iterable of URL strings
  • concurrency_limit - Maximum concurrent requests (default: 1000)
  • timeout_secs - Request timeout in seconds (default: 30)

Returns: Iterator of Response objects

# Basic usage
for response in lazynet.get(urls):
    process(response)

# With options
for response in lazynet.get(urls, concurrency_limit=100, timeout_secs=60):
    process(response)

lazynet.Client(timeout_secs=30)

Reusable HTTP client for connection pooling across multiple request batches.

client = lazynet.Client(timeout_secs=30)

for batch in url_batches:
    for response in client.get(batch, concurrency_limit=500):
        process(response)

Response

Response object returned for each request.

Attributes:

  • request - Original URL string
  • status - HTTP status code (int)
  • reason - Status reason phrase (e.g., "OK", "Not Found")
  • text - Response body as string
  • json - Auto-parsed JSON (dict/list) or None if not valid JSON
  • error - Error message if request failed, otherwise None
for response in lazynet.get(urls):
    if response.error:
        print(f"Failed: {response.request} - {response.error}")
    elif response.status == 200:
        data = response.json or response.text
        print(f"Success: {data}")

Performance

lazynet achieves high throughput by using Rust's async runtime (tokio) with the reqwest HTTP client. On localhost benchmarks:

  • 360,000+ requests/second peak throughput
  • ~11,000 requests/second single-core estimate

Actual performance depends on network latency, server response time, and system resources.

License

MIT

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.5.0.tar.gz (72.0 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.5.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

lazynet-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lazynet-0.5.0-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.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

lazynet-0.5.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

lazynet-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lazynet-0.5.0-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.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

lazynet-0.5.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

lazynet-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lazynet-0.5.0-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.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

lazynet-0.5.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

lazynet-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lazynet-0.5.0-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.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

lazynet-0.5.0-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.5.0.tar.gz.

File metadata

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

File hashes

Hashes for lazynet-0.5.0.tar.gz
Algorithm Hash digest
SHA256 418a6f04b16258c77c271e0effc3f9b2131312481384e313d546cb031f9e71af
MD5 3c49cbb57496cda509be515aa3a903d5
BLAKE2b-256 09b7f2032d4a7a15fe7577b7057c03d3146dccc4cae84846f8627686a56f256c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dbef946f06b5a906ad4f9e6f3fe36c0848e9dc95717616c7dec419b9fe5f74b4
MD5 35c1c42c36ca7dbb6085206650dfd13e
BLAKE2b-256 8a3852731b2302f05926efc57f82b26811e93b8c2f929eeb2b15e9e2f7099fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13a148332087ae59246f28b2fe44ac01d943a0ce6b4be1a64063f52b6f585a7d
MD5 9b25f514d2f79962f0cda889958106ff
BLAKE2b-256 846b241b32da40e730443162243f8ce2230c1ac93d5af7e707fe0e7d69d6b730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f56d429e3985878b1bd2c04db81c9cbf7827d7f9dae096b7c5858e263500bcb
MD5 d8f27c9680ef282a8a6e689ff554ca2c
BLAKE2b-256 1d65a696171418f601012e5a3170aa729184e3d323c3c59cb9fa464ee7d8ebf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcba68fa35e20eba3c9190bcb8ca30b5d0270b67061f608894268c865a08d72d
MD5 9e7bc9ed569bc7a5568916a06efd2383
BLAKE2b-256 5617a29edbbe0a29efd27881c6529e871473fa11c4c85067af7aebb906f1c873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6518c1e3a633b9b67c3a43ca73087aafe38ee5562c5fea60c7a6f7a68047e85
MD5 f23bc03934506dcf3a300e696a29debe
BLAKE2b-256 19f84469a3c664757f549a9c7930f9f71d0195dede1fdc7686b065c7d5677199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f09ab311672c645de2c72b72619927b5091242c0008cbf3c561cadc61e22a40
MD5 9ee957a7179aab6a4162eb080bf1e717
BLAKE2b-256 7fcbb8117d3b534e1d878a60f27adb87bfaa75cc57e8f8040e58eb7d3c0a2549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd4e91389301302807aaeb132b97f9f31b8093bfb488e4a978c5d5adc7147766
MD5 4ae7c01d12d009a163514d6aec88e0b3
BLAKE2b-256 6ac8a15187c68e7b0b1e315aa2b8ddb610f6c66752fae7a3de97869cc87deef9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 76194499fda8476fd8b8fef2a5c7cfaef95a61733b0f8ca9db64f77a3b27ec83
MD5 577b3be7cc9ac637f371cd4712a1f986
BLAKE2b-256 1dcaa116b595c3a41e87ecd2c9e2f1cbb39786258f61a6a8df912b066fa24bf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baf158424d54d3d35679bc662e31e620307f1d7feb10663d202bec10c83e46c9
MD5 b589a526c82aac3b46f5e99c6465fcef
BLAKE2b-256 13a374fe894efe6b7c836c35459e2398188069598b385565f60c40a761d12108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20085214e6c98f20c0d1686843441519cdef81b641e9f3c619d469f30992dddd
MD5 2b26fcc8ac680cbf8d5830ce5205ebca
BLAKE2b-256 60498a5563cd76621694fe0139dfc8ac7fe6513471549ad6e9fd7772d01e8622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43aa67b29a4f0112d978a4ec701f2b6a4a166be8071537f67403fe1814b347c9
MD5 51206ff7d9f60663cb1a7277bb16bf8c
BLAKE2b-256 24cc2ab377b450f46c71dc9b16ba4ed36c23d763fc05ecfdc30c158de13efc9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb9b0e8f967e8cf4554741c628016df2dcdbcefb4e653ccaf0f5b0e3f47c1d52
MD5 4e16e7e210c5d0a775434173f84acf83
BLAKE2b-256 efb26f06f218f2a808b287fc0e00bfb7affc2be1af750b54729747adfbf15574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a03f39c979618f72eb519581e4df3b9aa944c3dd851d9ffb05c6a550a5e2f78
MD5 c1f488957c6c66aae7bbe2892da41469
BLAKE2b-256 e512bf6ef93a03714be11c9e0e8fa97f704dd3fc036cd85744b6a235ebde41d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b01c6d915b9ca28bea00e3e9afa1d2866593e362858d795cf99e1bc992b01390
MD5 c6dfda253603e5cbd627a2e9e5e790af
BLAKE2b-256 4f41224ded27282ea347dda1503b3b377435dbbac4666ea5a111a403d6fa8db0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5979899f901ff8fd87e3399ef3e45c6803a39c9617377306356a0f544406d7df
MD5 34723e4a194981bf8ff3469453d538d6
BLAKE2b-256 66f9f620137950d6e29a1a353c03cbf81946fcbe324a64c945e17cbc3f600de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21d25e5f4d9629ed1da753d19cf462a2f57716fb967a48cb4cd46ca27fccfd6e
MD5 fe7ad748683fc220e169e68da874de08
BLAKE2b-256 a8c153f458af7aec6567c6f28ce0a33b6d23f10af41f4b90b40367d94c00e316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e499ce69737f4c288153ef857f28c44b93a72643b7ac60e9572b946ef83c4ae3
MD5 188d39b7ff5048e9e49efbbd309b6c92
BLAKE2b-256 25d64a4713fa075f5ba1a7c2ee6b4fb2531b0ace0976173d305a470d36687373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1052ea5d595bc32dcdd8091e01b144d65d8acfff118e8a4c6c5b67446c59d57f
MD5 88025b03acd98adbb0c05ad405133b47
BLAKE2b-256 03e510d3403f394b5163e34acb2d21f8360de1da147174514b4f5a640dabf081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d918d7862937e55afbae58b3c5dab7a366ffc771e0d0fc44919a47bcbc3184e
MD5 959825a5d5ae5daedaf519d34b38e111
BLAKE2b-256 3158f0af9fce8325fb6ebd9d922858b3fc1d89bf8700b4dabc219e985ee0167f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a9425961feb201dd477a86d5fe98c88381f7bc79460569c849659a260358782
MD5 8ff7d1c791505d08d097845078b67c93
BLAKE2b-256 500acdc48a6b5766f81e2f5f89ae44e8dc6f138f4cb411d87066aa6e764bce0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4164edd62fa66bf49c7d27c82203beb19578ff0b6c9bba9ddc81ec107a1e03c
MD5 5cb379685b03b6f887ff65cf77b1541a
BLAKE2b-256 5d851a4cfaa0c70c8bd52754cad5727d0a9ad5b480c9d91576cba841d7305cf3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bb0c11b5e950f270823d016759a06b68add17e23c02436aa73a675ee52567406
MD5 4dc85e31f7af9fa30b120259db03b308
BLAKE2b-256 41ba793934e816d300d92ba3431bf27412b95157d3ef8ff433a4beb9d0399519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9b4ab0f41201e5f3db3a81dd1dba4c011b93b50e9914e8aaf4790df76cc515c
MD5 d2cb0e6fafd1dfa83514deefd4040f2e
BLAKE2b-256 1abc99893d61138edcf0b76f7b24aa91eb6d9c74b890b0ea4c0bae58fd3f7625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f8bd21cf85d5a15ab16816e2491c6b5cd8afdcc818dcc4fce752a416ae52a8e
MD5 a1caa4d08115c0167693e1bf035b2741
BLAKE2b-256 4cd48a5dc2e91e9912715c5a0b4fce5a17a48e64fe5fe7553553624706c9227e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 380331707e828243106a158c00469a30e4a357924f60c8102e51163566ae8489
MD5 418293121b874c07de3d0de4cd911d25
BLAKE2b-256 765168265a60063afa0abda87956948111e2f475863eac300505ae1d4bd42110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdad859eda238ecc6fc22d10e0e6bc46ed9875a8f102c9426fcbde1ec54c6f86
MD5 bb9d7baef000c9a130f0699b87ceefcd
BLAKE2b-256 c4e595f4edfca6cf64f96f98641c49d83077f00edb0bc8e5e9445bba26d8f3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3db42a481ae41a59f99b813580f6906280bc46481afeccc0aa932b7864ff7ba
MD5 0c62f9820affa71919104ca92f45531c
BLAKE2b-256 bdda1f1889c89420dec13e5061d5469b097c0f3980782ad346acbb58847c234e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ac3b20b92df7f24fa1b9f16ee9e0e5cab543275f646c4badfe265e1940e6652
MD5 f8c6fe6b4c7ab3d469403273ceb2af0b
BLAKE2b-256 5b12f57ece80e60a1d28a50fcfb3b97f7445f0d0c7652bd66614508e7e677c2c

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