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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lazynet-0.6.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.6.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.6.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lazynet-0.6.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.6.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.6.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lazynet-0.6.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.6.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.6.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lazynet-0.6.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.6.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.6.0-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lazynet-0.6.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.6.0.tar.gz.

File metadata

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

File hashes

Hashes for lazynet-0.6.0.tar.gz
Algorithm Hash digest
SHA256 5b4bcb66d9ce4bfce9a66804e20c23c0d18d1ea89da0f68f78f1dc39ddb3b248
MD5 1edaf3b3193d1d905389d3aff1712879
BLAKE2b-256 7cc0ec33ff21232f72fd08dc0595929c66262332c5a7c9799ff6f5e38baace8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.6.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.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1ad3718ec08ae2902a9efc380d71a56e0459556dc52d63de5746048e90f5dac8
MD5 76f622d8058813f6fe74544da7c1de94
BLAKE2b-256 8a22eb52f37cb45b6c40666a2c168c9912c8cc456ac0f4785641c0960a2f5f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77e32765dd0893c4a59c1afaf5b32274009955f02551d7a4d1d97f1940ab6f1e
MD5 f735edc42f14c82a8d9a04f5bf26bf53
BLAKE2b-256 916e20b6b9477bb225c498f1127fd085fc4412db9d275b97ec84aeed4352d2a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de898f2bf31f6043903db1830c01217ba3e545012dd9fb5d73af42b82a57dd66
MD5 69abd34f8197740160b5dca19ed86431
BLAKE2b-256 59324ca80466711cd4bd14d732e95f19cd05df75f87767cbdf0e0a44c7e94406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dcebb2974b66151847c53cdf22d2a7d0d78bacd7ae934fa63a565c06d09e092
MD5 ad7c6f8d40a0b6813098090aa51bb469
BLAKE2b-256 5b8b7f5c59928f0177bf585d64a6c1e0863d63be1f264e379b6d6dd922b78deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc6b3ab3a703416dcb868138b560cb795a0772640d716ee0e3b66b8061ff0c42
MD5 7b6a22b2312670504cc63e1a458cf10e
BLAKE2b-256 e786989028712601d45db8218ee4599bfc3e73a65cc70c0fbea809906c010510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90e6e634ae07f673d00590d51dc4212e1b6b308b10e22f9ec9413adbd049802a
MD5 b3a4c3d3d1d7b0b928b2c6fd087caa1b
BLAKE2b-256 335ea21a6e4a89fd649c7ebf576b5f02101030b96011053a1509516d5fae0d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9ff995350d2ccbe65d327f007244183ea606e04a8c7316969416b949c4fbc2a
MD5 66b9a8b51feffc4694de7a78d071f53f
BLAKE2b-256 265e8be70036d41b37005e66700911ab7a85cafbe8e2b6ea6ec495bc0ddbbd04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.6.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.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 066ca29f18e8c5e3e86014ca321fb83d4c95ba0946246aca9f2ed0527e5eb1d2
MD5 bc5025e7f9d1d190e9a9f408fefb8d88
BLAKE2b-256 9aaaefcb24559ac537acb61c474d74e9ad3877f61e486dc786a259d510baa649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c846b5ba82252529112913386bbdcca0d0772fce88c575f35ab59c326c613a03
MD5 b7b9c963ca978f3207e911de8232ca61
BLAKE2b-256 0651c35e878455d269b889020d0e0aa4c7b27f8b1a252f37ae4fb919cb12b2ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d58c177d6fc20dc6d20189c445989562ef87db02bb44ef897f441287010aed9
MD5 44a8ce9999990ee3852c5cec9e388c36
BLAKE2b-256 2cb5e4319b9a515df930f74a903753cb2ea74da300e7104d8ebcf5b0bd4b89be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4da2b5c3c99f8037ce21c84d482db82720efc1b4db6625afdf6a28902367b789
MD5 0fb31204227c4bcf2e9d061bcd52ded8
BLAKE2b-256 d2680700c9e0f73576cfb724a08e0bad7283969053593beedd2dadac19bb9651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4ccad29f4a609650093e0f2e84359de56f9e52528475fbb117720b1cdcf5d7a
MD5 c9e00660907371f57d1fbf76df1635ac
BLAKE2b-256 8c5b8cbe5e27387f8cf8a3ee60801856692dd0ee7ebdb91b717453c1217d7b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 752fb80455b60601324760abdad8b022bf6149cdf1c5db4e2f0b6e3b79b3d158
MD5 992b82e387cdb0ee60d331eea724f71f
BLAKE2b-256 8052aafff4b43a9dacfe18273f538714e2f594c9d3c86a1c79cea73a47f36637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83a5d6799b6dad0212116b25ddf942c0b9d8d02f33ed5b1bb0677ac856d3b2cf
MD5 d45c27a2bfd3d0afb3a94842c7a180b6
BLAKE2b-256 d42c9be78caaa718fd02c9a130314434d66531a50646461fa26e9263a272aac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.6.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.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0435e41a9c8760d1f119f6120a4999af9d4d3087a06f6bf15ecf1fd7822d24e1
MD5 74c62a772ee032142908fee4b2d20461
BLAKE2b-256 6dae221831707dc2a6a8081a8dbe5f2d62d38ed252b7fd0366b11932ee078419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da2a72907b15ae785df14857dbebf1b57c3b82e5f0b03e09ea1ad08aa56626a5
MD5 ee3afec0bd11f465aa3c945e75968822
BLAKE2b-256 23b06bed86cabc678ade3506fd672f97cca77e2e3ba2104cc21b6d28fcd16e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd654c22b13791bcd432ebcbfd058bdf49b4819666564a2047f49b802e94214a
MD5 38149a498157991ad7261569ef722e2a
BLAKE2b-256 7420de2fd79328a04175f06d8f43d926db14ec351abda7e45d3389845f51683b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88206807937d6dbd404c4e1db6790607e9a543082b9aaa6fc468b8e8b1551c53
MD5 1762f737e89b83764e67d89ac6436365
BLAKE2b-256 c87ec39dc771e40f8301aaf9a675375dfe6ec1762bb475d18937781959babd4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a912ca0978d0c5e645a4df67712fbaae147424435c2a9103699985b6ba9cfbcc
MD5 1fded3ee72d2ce2fcd5affa770624bd7
BLAKE2b-256 fc7bc2a1ce41b8325d982f1eb3b069bf07669f88723c4780fd7567ba94cd35eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24dfe1d20a204aeabb9f52d35a4dcf5262db9ec45d51d0675b69f112ce725fb8
MD5 8c03eddab29757d03e728e0a3f5d8e4e
BLAKE2b-256 6f8c6345aa9ec136863e3ad98f12e9aa70575ce9535116a7f58834294bbca577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1755d97aa13692a2cf651462d145bb3e62db7dbf2b1e8d4b3a3a67b884cab78e
MD5 15ca783304d68911bc8152b2cd03a14f
BLAKE2b-256 b3ff825e1c96e4001e8af93cb9788b913bf5ffc11b8a24e4678d1349296d3c95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lazynet-0.6.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.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8368830915bf2fc4d9c1976b501a047749cc9147405b064a60bd13a0b5971de3
MD5 00ce54f1aa0090b0748f48dd96c15d7b
BLAKE2b-256 c341a91f2fe45495e11fc390e484310adee855673e0aea533f5fcce0923186ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cbfeb7899ae257cdc5c8003884cba31b5803840e2286cd8cdfee5dad6b0ff24
MD5 4fa5208a2c837e8976049655460574ce
BLAKE2b-256 e4d8016da782b8dec76f67d1490e665572cfc7366a2121615e8bc96c2967e7c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4088db6e084585af92e0d4c72842d55f65fc2b1e66a2db710d8e1ce41cb2eb5d
MD5 98dbe212a7e26414fa5921d87a9015e8
BLAKE2b-256 0277cf0f5a894738831d19c41ad693f6eec04efbb162079eedd46d966d3e50b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7366ba7c89eef9a9b7f34cd4549ff55128907367b0713393c66baab1ed8f467b
MD5 b756d0138f8ec050ed3089dfc420c36e
BLAKE2b-256 04f1285624526c94a9047ba70a22878ba9069fd5e145ea54b885472e9d6738e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daf346f1ddea6c135f5c76f1e29ecd56f2bae651e3ebea1ceb7e621c14d7cf3b
MD5 2aa7027281acc7168917cced16a4918a
BLAKE2b-256 7ddce76dedc05d2eb75f2321d4ee9a9d3bd3d5142b1d43bddffb481910d1ac4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67537bd9be63c4aea1744bdbfec4eadbeb9fad4848a61960adb314fdc4dc9e78
MD5 809ebf970ae59f65472ecdabcd86165c
BLAKE2b-256 9ebb6276b083dfa832035d2f5bc23a0c487a643c85b3632124382c0af693509b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lazynet-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66c4f8230e904687f8486ef8b490478b1916ebb0cf08d4d6c8019e13e7d452d1
MD5 f57140d5b57aade28f4ff6733c972bbd
BLAKE2b-256 b4128691750ab15b02c48ba0fd9948f7191a25086266163b7d883be9f0427af4

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