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.

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.0.tar.gz (77.6 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.0-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

lazynet-0.8.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

lazynet-0.8.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

lazynet-0.8.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lazynet-0.8.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.8.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.8.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

lazynet-0.8.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lazynet-0.8.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.8.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.8.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

lazynet-0.8.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lazynet-0.8.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.8.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.8.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

lazynet-0.8.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lazynet-0.8.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.8.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.8.0-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lazynet-0.8.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.8.0.tar.gz.

File metadata

  • Download URL: lazynet-0.8.0.tar.gz
  • Upload date:
  • Size: 77.6 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.0.tar.gz
Algorithm Hash digest
SHA256 0fc59387c268c98d755f15a6e5eff0aa33521270237ef5bddb1713d6cd8b3387
MD5 2897c046af41ecddb1eb97ff375d88c9
BLAKE2b-256 33909918417c07bba3b1032d723a807855bf58fbaa89f0410558e7a2e33e315c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.8.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9c07799bf2403bb67a23435e179999c55e4f6c02cb02b12a0c37e19dff07e3ca
MD5 23572d2c586588a37b14fedb2f54c77d
BLAKE2b-256 938fd02983a9dca510a4a3968598470c8cbe9582de5e27e19846af4aad8aae1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c77139e875eb2ec5c3618ba1cc9698ace9cc03b7c58191f788e7945456c4775d
MD5 4d6ef835ed13145f8eb5cfdb241efac5
BLAKE2b-256 8b42c8eb9e1bb53e4265aa04d23c34650e375254238c75220d298288d697617d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f66df1ea324a4fe51ca19f0f8fccc7fab4129ba9ae908dc97d837ba6745dbb67
MD5 7dbad05beb4eff361b34aecfb8fa0a18
BLAKE2b-256 d7db730ae443eaeeec491f3169ee3722e12024ff12797539bb0189075361f20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d1cf75b65c2e59a74c6e1583f0160a6229af0ac42f1d3042dc433f67ccb61ff
MD5 bdb9c82017753409613b3c27c36b2755
BLAKE2b-256 92512c4dfe5db7f1d616827f964a870ee7853fe642dbfc23e505bba07f7de7ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74395d256b270995f94a0507f26ea2b5f26df384d7b7879dc520400d966594b5
MD5 9c30dee804839f661a439ffbb89c1656
BLAKE2b-256 66bad07163a80642cfb2478951682ee16db27b488ba7086920f67d57030388e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eab6b6e3520ba115a8cf0365ae72457fce82f32363988d5597fb72a001e3abb1
MD5 04688363ed7271c8bead2c60e377a674
BLAKE2b-256 51ea113ff16dbdd9d47586abc23467aa301781e8406529e5764e2ccef02aa687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 276be44fc4fba18ad592ebab79fed88e11a2e7c15c072db9884f9e755228d01d
MD5 f7150d0eec0130cd337b6e71a89065e4
BLAKE2b-256 b00d647f0c0395355c055d398dc82ff0b2c1ece1102723454569ec48e0bb2ff2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.8.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6f9714fb8326cfe8e3e3dc2a24b49b1387117fd0efae2cc73b49616b6fed9af7
MD5 d154f384f72fe2d47e6a9099e74855ee
BLAKE2b-256 99b9a62f505ea342699d678602dcbe745432bc4d22fc1dd1c628e57131c88d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 211f6d8fd3f557b38cad9d01f4e19452774ffb2148823b3b5034947a05fcf5ab
MD5 559a976350d700b6df75fdf91ca40659
BLAKE2b-256 214a4e4af93d672c5c6af073a1145558db22cbcb757251194103b30d8dde0cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1fbf7b7ad157f58f842308d020154cbedc4efb7d25f5818ea97d0d834de1289
MD5 10236487cf749fa40ab160f67d5d0425
BLAKE2b-256 fbfcfef6626fdac6b461346beb3669d962c3960df3b932328e49b82dee734439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e94a26668e3e4dce401bf255c79be19c06a73478d220619e23f204a3d144a3fc
MD5 b9234318b5dd5ad8707b2c5b3e7e54f3
BLAKE2b-256 021335fcc88fc917abc9b163d317ff6116ae70129aec6faa8649a4d810bf35e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31d4fe8644ab57da6943d15eb8fd1326d0275dd80997c5324a18ed4e6e3b34c8
MD5 109bd05688bf4b1e81ee9e61a19ca3ab
BLAKE2b-256 56ba17064d343bb944ba30c61d184ad87612040e5ffdc75033c84a47196f2550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d039f80b9bc0cc3c94f66a8db3f9111dc878dac00f951d680711dd5a27833d1
MD5 81bf99e7a2d3b631feb21a611b8426e4
BLAKE2b-256 1a559f530175a76becb9b9f6895ac43110d6a5f16bd63163342168fce219c76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d7b931a8c088f8ed86bc4fea2321b3bbc4cdfb5dbd08761d73a6b393a7efc0f6
MD5 2083602e43d130fdca0d0a037a23d3aa
BLAKE2b-256 170cf06254617a76b7bf0e75d64a6548816add41a9beee4da1b94e29973c1ce9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.8.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 16971e7d2e5db0abddc77f9abe890eee8d61f4ee43cbb61d9cb5c811e0913114
MD5 9f1eabb3e0e243e9b84ef3f6987a997a
BLAKE2b-256 2d5ac9241a53019d9cc6cfcaf42b29ee595a5c2275607e8a582f72ce0d86087e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b640dd2e11d6c20025e9741927989761c2a0fbc767ef7ce31c986b6c0de5d2b
MD5 1d55693f899e7092bf5f46518b7d422c
BLAKE2b-256 89f809b0a700780053ff70766d1b0055d47c080e4902da781c5be44dbdc59402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3782a20fbbca112b3b01dde67a8df05b668ff187e8cd827ba89ec24d0ed0e757
MD5 43716420a21793adf801ec607d2bce69
BLAKE2b-256 71f4be5a25d9b5c4a1aa0ddbb4e0a01b1c97f178801b87460c7bd91c45abf989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41d26cb35bf1d6cd7c6551fa1a6205b8060c8e818a206ccedbcd88cd721daa4a
MD5 818079ec4af351d5e49df60b15f3e875
BLAKE2b-256 0b37df67d4c212e87176be5f2390e7de9e0a30078f0f3c458c1768e317c6e723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 218fa193f77cdf1e7577c133994d6233d8d378330517bc216dc92608cd8ca601
MD5 5e07d9644420fe3cd31d4a03bd82066f
BLAKE2b-256 088c2028c3bd061bcfa1effd39ddf73b9fddd5aa9336be09cb93f7a52eb5c69d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c22f9d562c4b2e07c94536867ca339a9fa9058c39a5ef68a18f742b945806cee
MD5 12caba5eaa51a6f5992eb4d7943cf1c6
BLAKE2b-256 dbb2a22fce02ac1e974315987a516ff603529f8d574bc704960e757f24de4345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56af0936a59616808014fa47e8d731234a7555fb59215dcec202640667e905f5
MD5 30352eeb7c21aa7db202ab32f51a7fd0
BLAKE2b-256 da8def5d7b3f20693191ae6ba4bf78e966eae919852a156348735d5f5e4e73ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.8.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5e12396cfab708fc059b7c84bcd9842fc993a3df7bcd235b1f75ef5f1abaa9d4
MD5 5b5de8869524f3087d09c480865dd5de
BLAKE2b-256 e2da8b76b21cdce12d35ad26f9cabbd982c167a16953a643fc79f1c4c053d2a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4142c8bab2a73bf7780e5397398c4aafa8c958bb4c52b75459c0eba0f537cc4
MD5 f6bd26c7fd3ed844cecdb057b2a90ed0
BLAKE2b-256 35ab5dab852cda5d1865ca470945b27e43070a3411ced3227e0d78d40ae99d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a910ea33056775d6754c39dab72cd2c9917b7ee7814c60233abc2cd8d6bf0e2e
MD5 6559f1b7f01e7f40202d0b920f806d32
BLAKE2b-256 d8a24e20436ef1ac155c0c52a651498265ba44646c2ff2ca2662f1ecde6cbecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8284435bb84811668d4c650d321fc9078b838f0474019d7f50ee795d523fa7a4
MD5 ad00c3d70afc3189e1fdab12b4fc9d54
BLAKE2b-256 a714d99f3c680dcb850bd77c025593c6e906c8ee81900242d4edb0f6a00d35ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9c927fba2e7a38c6eeb07bcd9745cc48814e7f0a6910d9ac3ae47f2f35567bb
MD5 6515639e761c7a296b66e71c4574a1b3
BLAKE2b-256 bf37a09bc1811589d5dc5e3cad97a804d52b7d2fed6e51ba06ca3cd10c41266a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 503677b6fdeb0f79074324917a6278034c4cf0313ae0f8a3325291636f4d090a
MD5 3a03c85a629a695b72e6e202f5c7eb98
BLAKE2b-256 a97548a50c4cde70bff07a0404f092bd392f9b8bc2be2e6a2c0911fe63503eca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3b728c9ac1abe2635c808a80ceeb204546296d19f5108b89684acbb44e5ca76
MD5 3f1ed86014361451ca261512fce77330
BLAKE2b-256 6e7f1264a58fbf9a56e3fdd1846f8efe3365860e3237b8e3c7926ec8c59ec93b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.8.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 53c1163e6fbfb61f7ffb8b14fdebf43da2cee49fb64bb2bdfa11cadc7120a9a4
MD5 7a9e4a6adf047cd36c8932a7a6109574
BLAKE2b-256 fd487150ef2d9457691b1da90e29e725d73363cc13943be502bafe041c32f8bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1eaf1e1e56e7835997406790ce6136e6ef678bfa201badb469d07b7d80ae37d
MD5 1e7b83def1b14868cb7684903a8705e5
BLAKE2b-256 af62eee24c5e53833ece44380faa4097ed1c947570d18d68d3b4e74fa7f0378e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e04ed949e299b737d45e0dc79c5a9c389fb31b8854a02a22fe9381720e13e187
MD5 f78fb9c2e27b935a89868dce04b36ead
BLAKE2b-256 c06f9b3805ea1120bef8e17d76dadf9705ee824ed85f427549511ec5116892cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 501762d991ec5c7c309437b04d884948a6d10580c02bcd16a7aa93ea5030d0dc
MD5 9f77f532856dead4c9937bd77b630679
BLAKE2b-256 0923ca776cf55fb170c0b2c17c73460939b105abc8e90b7bed8cade1482b64fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9820d1b44ac02379eb0191edccbe1c2d2add4e97ba5100463af849711061057e
MD5 224c8afd64c1c9ca6d42b534736a3809
BLAKE2b-256 c4292d25fcb8a738760c294f5b8b0383be6270d3087a4f87985f0d17642e3839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e87fc2883de70c6a0a244817f9d4c49e546f74ae541150a317505e5f93936eb
MD5 3797fb3e317910e48eab98e937bb199a
BLAKE2b-256 2eb97747204023601adaafb96de5c3ccba789b40346730e2251e271eafe25fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5aa7b6bcd53192b65424620cfc72e76ee47e29182e0917ec319604da3735bb82
MD5 ab4bb0784b88aa9c4cae0705e83f2a50
BLAKE2b-256 95c7964c0c10cc0e0e73dd1114de24e6bbc7a0d056761fcee9a22955e9457d9c

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