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.7.0.tar.gz (73.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.7.0-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

lazynet-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

lazynet-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

lazynet-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lazynet-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lazynet-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lazynet-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lazynet-0.7.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

lazynet-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

lazynet-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lazynet-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lazynet-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lazynet-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lazynet-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lazynet-0.7.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

lazynet-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

lazynet-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lazynet-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lazynet-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lazynet-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lazynet-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lazynet-0.7.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

lazynet-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

lazynet-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lazynet-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lazynet-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lazynet-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lazynet-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lazynet-0.7.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

lazynet-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

lazynet-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lazynet-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lazynet-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lazynet-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lazynet-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: lazynet-0.7.0.tar.gz
  • Upload date:
  • Size: 73.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.7.0.tar.gz
Algorithm Hash digest
SHA256 86935b8f9b5e7752fe5e984d338534104e4668d276deb94c2e52c29de13f1a57
MD5 0aacf9d3bbf78f9432b231d7bc71792c
BLAKE2b-256 c57a606f73dd43032d20b89c37ed8dce05807be498bd6f5e7a1b3a45823085de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f28887625a3dccadc09b60ebedeac44d5c8922ad1673b500d286f7bdd1e2de86
MD5 94edfbd7a955dd6a4e61287948cf96a5
BLAKE2b-256 543fef49dcf31f2b4e0c56671d78ec896710d5332ef27ae2823c35d0c18890c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca76f0b33e4d1c7c722384bffaa954ea49a15415145f155b060f1c347c5b1e32
MD5 959a14878f3b8e95f466c3d0345babdd
BLAKE2b-256 6519b97538e4ecff4a96e90dc4d4c33baa49831aecf1d196fb0f2c26f9a5291c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c372bf196c02395e16b3b486063dc1e50ddfbea58ef8f34bfceb9e242328c769
MD5 763cefa15d2f4753cda04537f2ef18a6
BLAKE2b-256 4a30e573e9432189792b9a3c85c2f01c25976dc80e5b81104e88d93d1666680e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46fc9f88abcc2bff67a020caf6c119cb6769ae2488ca4423caf9cf28b6aaaf1f
MD5 58388a63683400b096a9fa15821ada41
BLAKE2b-256 a30dd8cbf0c1c254300ed5f140ab8f51017f078f249ae72eb9eb637206d50c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82eb8c7f0ea9a706c148a1ee54aecee01b419ba7ebc39ccf150bf89aa5acd6c7
MD5 6240c6196d936dd48daa28fa63656f7b
BLAKE2b-256 ba14089667ab631984b023d6e5cb59c58efc331024920b5a22805bb05bbd323c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7e420b92172b3127a99ca20fb488358ce0d326077f721c5686c7c24da23afa6
MD5 bd8f5f97e5bc3d6c4611529ef4c82164
BLAKE2b-256 a5f600b3c7f8710bdf78826c1895d0e119e6b4c71f2052fb7d0147c7ae97db4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67ea573363ee51bb448d6f14e28ac8c9109999026bd003e48150a27d66c3ca50
MD5 6c7da1717335761443e19f29f35c8db0
BLAKE2b-256 ecab18687244920fa11efc8b4e71f09618e4ac7bda81d9a01192ec1709c2745f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 76050695cd8b0e2a5c64fd88db4501c7ac5d69866d205d71934595c287b4066d
MD5 2fc50447a3bcd603f63011fcc6fb8efc
BLAKE2b-256 434644358c5994a22e95f953893bcbbea5f14b312998ca230d9775f1da82636c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bf605f31dccd7a6cb30d540a5935f84a7d32b753754ff674ec94ee69df58fc5
MD5 48bacb8f8acdeb5841d13244a91ae56a
BLAKE2b-256 ee86a846214a47d47f064099dd474dee54d6b07510b01571ff39db3911accf2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1b7bd68ab2a07fd282bf4516e18007fcb9aad1b3952cf62b928be457bd7b3a0
MD5 d54e9440428d34110e19679b20fa51bd
BLAKE2b-256 c1bbae38367c862c7780d2b7459a1f50bb6b59bde058fd0073e2e276e1603c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c40dd2e2a04badf0171362e9ee0ce5143800d763e241460a79d8bcef55663cd5
MD5 b16e524a0aec033411567365fc4a18aa
BLAKE2b-256 fa4395a8f418676ab048a543aa1023c2440a3ef32dbecea34450f01bdd4924f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cec6f502b1e0297eb4a08727e8796afdf33ca462c6f0752e0a2002a30b8ca6aa
MD5 ce8d1435b1ea10419fdc580c9727e6b9
BLAKE2b-256 58d3e62558c1a1f52b07a8a1f19479ccfa19b9b7387a4ea4f681ca66d9f32236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d36c60e694427f42221ad7f9f1a26bb26a50a77f2ac54db7e4601e13882ed57d
MD5 3a76c1fe32a933b14b58fa1ac33e6e03
BLAKE2b-256 58e0dd7351aa8ed2fc26a6bbd396db5b9e0897846ce279a278707b723f1c93a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb4b80f4bdb564b47ad13d2dcbba9f48b86aaaa0513c5c964a56b77a706067aa
MD5 4eaac25484a5eb1a3b23dafb82a80222
BLAKE2b-256 09df2f83c0b63616148bbe20c9b0e371890eea84354dc2281d75b8ecad36a64f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c932991301d7f45081bae661866fb6290ca35bc44b8392571f7ad70b1c89a2aa
MD5 fc5613ba18c0e4957a61fac23c896f77
BLAKE2b-256 bb283177a166d6ba5f6e4a4f6db74cd895448a2fe00f54f55682a7025b6ac816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 574a4d155debcec95bab0f1d0fa8ca2f167aa7e6bfd407a16e70a209e5b72699
MD5 36ec2577347e516455d9acf65f7a8cc9
BLAKE2b-256 93d7ddac22358059beb997c7c4bf7c92ed8fa2eb72042b621f2a0f13dad6ac34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85d46e70e2d52f8bf5b300d90edacd4e652aba218d584d6b732ba8dd91bc1a17
MD5 019b9a2a87594b8c27a8c2a0a9b0cfca
BLAKE2b-256 56e8819ceb5d9d5044f074c506e5b290d52453f8434f25796ce2b0a0bf18ad6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 151a07621365eddfa0685316c99906bf5492109a9bd4df0ec0abc8fbc6ea146c
MD5 7174f1e670f4243a6e798e52e67cc3c2
BLAKE2b-256 ebddfaf2990dc03c5a132a47644650d778f9337a9d83804ea1a265b056030ce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 288f36b799b3958be4dda7249c484782e74362d0cf0d40b318a542a737f3a6bb
MD5 a5bc6a33508301a945b3217b21448f7e
BLAKE2b-256 d71333eef4c2f5728fd9f1aae471a032f5df24bc81de6de1ceb1cd59efe8ca03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 030360b2ece0904f4516f32553b117897a162d7d01b86731f47422c52505b866
MD5 0b70cb3879abba2c5a00a94f2a7b874b
BLAKE2b-256 8bd7a7d7dbdb55a0ce5d5c84889b61cc262cf77e51e98a3560efe7c54144f196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1736ab7dfb5422e3fe8ce82af3911cbd40d319d3a6cc6b21abbd29a093216af4
MD5 2e5dd1ed6f7670e5c4c0442f32438df6
BLAKE2b-256 368932cc1cfea4abfede6d75dfaabe263784344d2b9fa6336c271f31e1b61791

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f789b795c1a2dfc2a587cb3e342ca2dc6cf9810389d53776069c5cce3ffd791a
MD5 5de1dfd011a93a5e052a618b8923bdec
BLAKE2b-256 1f7c6d98408398d3acac08f39ff9e0ae8ae66c436b780ef47ab37c5d40cce695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5081fc5b75cc9ee2b8433b40bd4f3deea67b67f1cdd25c06740c5cac65f4d2c3
MD5 4dd5a351bccc539601eb90c593fb8c40
BLAKE2b-256 a93690713bb1714c6661ee14306431294dc380f8f72b066e1489abb358478e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e56ff894a0ac1ab78823cacdafe7fd476337d8278719811caaa9c89bbf537c3
MD5 9d908214f6fa05c9497a0dda86b4f5fc
BLAKE2b-256 78aeaccd0fcf0b66f75f89833f6f72e52592647e6bc1ccfdb799ec957bf20d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc7eda0e90afd7027200b2ae25dd17dcc07094ff7946f57bf428919116d66cee
MD5 b5925547db96482ed9315d1b718bb437
BLAKE2b-256 bc28e2f5f76b0656fce02197ce4ec5b085796361189e8c372589abbc688a9d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5bba7de350857b3568a989b8a12c38f0bf38ad1be3b60616726b5e913fd1433
MD5 bb5a6e267e8dca4455e14106df87ee64
BLAKE2b-256 f2ce566c93eb7de2ca15dafbeeb357789d15ba08d9173d7b1ed4867639430aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2778d571a8065b45a8710bdd1bd25334cf17557c97d37b758e20bf4ecc9b9ba4
MD5 7d1fe58b574abff12603a38fb3af18c9
BLAKE2b-256 95e4743d258e1e0f97baa1bb635e80c69c409202953a8fbcc916b7240d9e5ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5be900714cfa489bc894d0b70e3629453fe415f54e152f69b25a2eeb3a2e40c5
MD5 f61d98fa97d20f7ddeb5a0a0b9c7c91a
BLAKE2b-256 591b3874e96187109034d1c47ded40bc996421530ef3f023db06ea1142d5ace3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 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.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8c0cf87388d8b2f551f80e72d5bc52b67d0b4f76e47f7d6b0f5902f752cce15
MD5 3f6a9f1b3aa55248e751e8a5a1a52a52
BLAKE2b-256 857f6ba7c37275429e7a6fdc379c7097fda5e4f26a3c4f58d5aecb6bc9a94423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf4a6b3fbf9122f65ffa991a416d62453b53a3206708977636b7c54f5537afee
MD5 e3142af35ddf5a1ce28af5ac2c6dea0e
BLAKE2b-256 9314bc311104726bb8d891f1ba813a648f8e3b0e3cb8065c81c53a9ec0d6ddd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f45472ce253eabd0c916a6e67fd48beb7f47d68f751ad0d39b53823ce8b524ba
MD5 6e98801e5e94d34555ba597e91568bcd
BLAKE2b-256 60c2057dccdb39c5d9358a14881adfb9f1934fb4e09d960a3cd1beb9063030a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91ec429f353b1f880dd0e6e51dfec9b88314d9441199380e3387d92b259acb7d
MD5 8d4ecd041b356dd280796c9996f6f08b
BLAKE2b-256 82005e05836a6f42dd582ff323001c1477b326163b48e9da3f6fc03b9ee29624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9272b50bdd82dd09680bc57644543637638de16a1266423c6c2c6fe32028e103
MD5 028b3db124aa3bbfe1cf8961e76f6aca
BLAKE2b-256 1b79df1bc40cbf1aa3410e516aa57ffd32c2569f6f07607c232f621acacfa039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c6ab1d12fd2fad352f4730b3d874013545d18528dbfae60fc9654a255ad793a
MD5 592f91e9b0714100b2bb1a83ea4c41db
BLAKE2b-256 d923e3c774ace79c373306ce239789ab3f11b77fafffbac6604d40aa44e34fea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20fdc91d4542efcd68779ce7d5873468bc18501cf8848c95515bbd4c2ae9952e
MD5 bea988dfc731c3f106ba2f59d202f52c
BLAKE2b-256 93e35e6111110393a66250595c7d17e50b7566ed913930e02ed80f22f79f8b1e

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