Async streaming Python bindings for lol_html, a low-output-latency HTML rewriter
Project description
lol-html-py
Async streaming Python bindings for lol_html, the low-output-latency HTML
rewriter from Cloudflare. Built on PyO3 and Tokio, integrates with
asyncio via pyo3-async-runtimes.
Why
lol_html is designed for streaming: it can begin emitting output before
the full input has been received. Exposing that property to Python requires
more than a thin FFI wrapper: per-chunk round trips across the PyO3 boundary
will dominate runtime for small chunks. This package solves that by running
the rewriter on a long-lived Tokio task, coalescing output in Rust, and
crossing the FFI boundary only at channel endpoints with symmetric
backpressure on both input and output. The chunk sizes that control the
properties are all configurable.
Install
pip install lol-html-py
Usage
import asyncio
from lol_html import AsyncRewriter
async def main():
rw = AsyncRewriter()
async def produce():
await rw.feed(b"<html><script>bad()</script><p>ok</p></html>")
rw.close()
async def consume():
out = bytearray()
async for chunk in rw:
out += chunk
return bytes(out)
_, result = await asyncio.gather(produce(), consume())
print(result)
asyncio.run(main())
Configuration
To control the latency/throughput trade-off we can vary the I/O and flushing parameters. These have sensible defaults and can be overridden per instance and via environment variables.
| Constructor arg | Env var | Default | Meaning |
|---|---|---|---|
input_capacity |
LOL_HTML_INPUT_CAPACITY |
8 |
Bounded input channel depth (producer backpressure) |
output_capacity |
LOL_HTML_OUTPUT_CAPACITY |
8 |
Bounded output channel depth (consumer backpressure) |
flush_threshold |
LOL_HTML_FLUSH_THRESHOLD |
16384 |
Bytes accumulated before flushing to the output channel |
flush_every_chunk |
LOL_HTML_FLUSH_EVERY_CHUNK |
false |
Force a flush after every input chunk, regardless of buffer size |
Note that environment variables are read at library load time via a Rust constructor. Per-instance constructor arguments always take priority over env vars.
Operating points
| Goal | flush_threshold |
flush_every_chunk |
|---|---|---|
| SSE / per-token streaming | 1 |
True |
| General low-latency streaming | 4096–16384 |
False |
| High-throughput batch | 65536+ |
False |
| Single output blob at end | 0 |
False |
flush_threshold=0 disables size-based flushing entirely; output emits only
at end-of-stream or per-chunk forced flush.
Architecture
Python producer ──feed()──▶ [input channel, bounded] ──▶ parser task
│
├─ HtmlRewriter.write()
├─ sink coalesces into Vec
└─ flush ──▶ [output channel, bounded]
│
Python consumer ◀────┘ (async for)
- The parser task runs on a shared multi-threaded Tokio runtime.
- FFI crossings happen only at channel enqueue/dequeue points.
- Backpressure is symmetric: slow consumer → full output channel → parser
blocks → full input channel →
feed()awaits. - Cancellation via
cancel()orDroptriggers aCancellationTokenthat unblocks every select arm, ensuring clean shutdown.
Performance
Benchmarks are split across two harnesses to isolate parse cost from PyO3 FFI + asyncio cost:
just bench-compare # Run both back-to-back for direct comparison
just bench-native # Pure Rust baseline
just bench-python # Python async pipeline
On a 110 KB HTML payload (medium in the bench suite):
| Scenario | Config | Native Rust | Python bindings | Python / Native |
|---|---|---|---|---|
null_copy |
memcpy ceiling | ~58,000 MB/s | — | — |
| SSE / per-chunk flush | chunk=256, thresh=1, flush_every_chunk=T |
158 MB/s | 4 MB/s | 2.5% |
| General streaming | chunk=4096, thresh=16384 |
165 MB/s | 71 MB/s | 43% |
| High-throughput batch | chunk=65536, thresh=65536 |
158 MB/s | 113 MB/s | 72% |
The gap between native and Python comes from crossing the FFI boundary, sending
data over Tokio channels, asyncio scheduling, and allocating a PyBytes object
for each output chunk. Most of that cost is per FFI crossing, not per byte —
so it compounds when you do many small crossings (SSE: 860 round-trips per
document) and amortizes when you do few (batch: 2 round-trips per document).
How input chunk size affects throughput
In the native Rust bench, feeding the payload in 256-byte writes or 64 KB writes both measure ~164 MB/s — chunk size doesn't affect native performance.
In the Python bench, 256-byte chunks run at ~5.7 MB/s; 16 KB chunks run at
~113 MB/s. That's a 20× difference, and it's entirely FFI overhead: each
await rw.feed(chunk) crosses into Rust, sends on a channel, and returns an
awaitable. At 256 bytes per call you're doing ~430 of those round-trips per
document; at 16 KB you're doing ~7.
If you're feeding the rewriter from an HTTP response or a file read, chunks are
already ≥ 4 KB by default and this isn't something you need to think about.
If you're feeding it from a source that produces tiny writes (a tokenizer,
an SSE stream with small events), buffer them in Python before calling feed().
How flush policy affects throughput
With flush_every_chunk=True and flush_threshold=1, the bench runs at ~4 MB/s
instead of ~71 MB/s at the same chunk size — roughly 17× slower. Every input
chunk causes one output channel send, one PyBytes allocation, and one GIL
reacquisition on the Python side.
With the defaults (threshold 16 KB, no per-chunk flush) the rewriter batches output until it has ~16 KB to send, which is usually one or two sends for a document this size.
Pick eager flushing when you specifically need to forward each input chunk's output before the next one arrives — server-sent events, incremental rendering, anything the downstream consumer treats as a real-time stream. Otherwise the default will be faster.
In the Rust bench the same eager flushing costs essentially nothing (SSE and batch both take ~695 μs), because on the Rust side a "flush" is a buffer clear, not an FFI crossing. The entire cost of eager mode is the Python integration.
Is 113 MB/s good?
Compared to raw memcpy (~58,000 MB/s), native lol_html is 355× slower. That reflects the work of tokenizing HTML and matching element handlers — lol_html isn't memory-bound, it's CPU-bound on parse logic. The Python bindings achieve ~70% of native throughput in the batch configuration, so the async layer is taking a meaningful but not dominant share of total time when you're not forcing per-chunk flushes.
Development
Build from source, with uv:
uv sync
or with pip:
git clone https://github.com/lmmx/lol-html
cd lol-html
pip install maturin
maturin develop --release
License
MIT © Louis Maddox
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lol_html_py-0.1.2.tar.gz.
File metadata
- Download URL: lol_html_py-0.1.2.tar.gz
- Upload date:
- Size: 44.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d143b95f044cc521abf47cd869dff32b132069433926c629785085afb109a8d
|
|
| MD5 |
3a41746b0f1c8f17a75fe38dac819517
|
|
| BLAKE2b-256 |
36052bc41d3f186c16a8c350e0d3a5768b7874494336b978aa23b81a35f7c395
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 845.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d48b539492596233afabfc6e2aab876f3343dde45a73d3a58b8d4cad9478e2f9
|
|
| MD5 |
fb76840a061d3ea4ab6aab3af8847d3d
|
|
| BLAKE2b-256 |
db9100b9db97c03e4778a20dd4e1aa6924b441e4a186e2f88a7654194a8fc8ca
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 873.6 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11a5d7c5b53229ee8356669cb090584bfaf03e6e635b4dd8fa727d3db0af91c9
|
|
| MD5 |
e1ee1c5982bbcd7a04cdcaa752b81c71
|
|
| BLAKE2b-256 |
ee37ca56bf04c2f2895f91c0da4bffcf61415735c86e21a6c36b7d626fd8730d
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 897.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95e9a295d1552200b7d4d9459a0be8b2e40cf1d2afe051a186b857a84fe05951
|
|
| MD5 |
c738c4df2431af089ddb9b1c4649156c
|
|
| BLAKE2b-256 |
11220bbaed62a840b25746e51595dbc6495f0cd667e714b0202cf02c351cc269
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 789.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba738c0c010199d1e4945b300d8ea9dae2f175966c93c682d920745027cd2f0f
|
|
| MD5 |
b991e15dac9e5575347f6bef2f79a4e9
|
|
| BLAKE2b-256 |
5014909fd339679cde268a9c175bb769d7a20a53bb168883a5eb843fdc72a4f5
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 628.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
779f7c9c859a5736ba846ad34f7d7cd1c484eb12d6d7131487ae749dbd26159a
|
|
| MD5 |
a72b43473de9eefd46d9f394c42aa793
|
|
| BLAKE2b-256 |
1f9a0fe7636ee6ef2accee558bb3b61eac756d5d1798eda23f42bf99be79ce34
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 691.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2167bfbf5b2bf37ce7c904086752ce6b2eebf6e6c3632feb58970ed03e56a7d
|
|
| MD5 |
c5966c8a958a6e762becd7ce44d78bf2
|
|
| BLAKE2b-256 |
2c1bb9776cefa859b0756ee4956617ece51d8bd14c763e2aec83376a944fd523
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 690.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4764d369556f55910f0fae875499572ce23ffe3375e8b766db0e878b7a93c4a6
|
|
| MD5 |
e039810ad4bad8ca18d50677b3b981f3
|
|
| BLAKE2b-256 |
427e2bcc09fdfb6651e6946ea1b8e22e5e2900b9f4aa1d4c81872b62cfc6c944
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 619.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d34be7b3a95786bfd30f2153bc33f7d9ee7e9c2c9526441a86366b5777a1234
|
|
| MD5 |
e3fc2246ab3556dc39a3a95253dfafe6
|
|
| BLAKE2b-256 |
e04aa50409823c8d8e200124256f6f402ecbf7506747fde56c5171402b61c6dd
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 611.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c16054b1dfa89951ff4771ce8c861978b2a8c5e6f584bd6b2c37c28edf59fc49
|
|
| MD5 |
3cc7fccdbfd2505a3ccae90fa866b614
|
|
| BLAKE2b-256 |
49d9be8146ded96d399d7038c158234b6cfcfc9137ccd39bc23b0cf34d42bd73
|
File details
Details for the file lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 665.0 kB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3da2902a2ce686d0199bea87096045d4b6dda21f6dd30bcf08ecc04d13577368
|
|
| MD5 |
e4a8b6135a75a08019a21e957881d768
|
|
| BLAKE2b-256 |
291244db9617950bd64428b302609a8f91f287fe54b3bf8ddfa5626f1d14b488
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 844.6 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae95a578e798734f1f6e6cfbe754179a87b9956628e5cefaac51cd1df6c47447
|
|
| MD5 |
2dddd0e7ad962af71b2a3f4f30719f95
|
|
| BLAKE2b-256 |
27f4699505afa0f990cd650552dd9d793e1961bd949b88ca88d731126070edfe
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 872.4 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6ce9e5d0d584b5926110e36e58f17629ca35a46c899b06f54ede11d44074d23
|
|
| MD5 |
1678278d571694a28cbbc35a60a4fc8e
|
|
| BLAKE2b-256 |
e8f2852359f22e3b48c1a83809a6bcbec980ba7930b3a6e7db93f0fa866d0e9a
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 895.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18bbbfbb85fd84b0ec46e82f231587e5eec5ea0a4a1c451325b99dc90722ccd7
|
|
| MD5 |
6533a9ba8ac85933cecc011281b06df0
|
|
| BLAKE2b-256 |
04e091a853a3d8559377a4dd1a39d8f5ce26f26c293df9834932cc3e1fc280bc
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 786.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8648545851ee902408779ba31abbbc3085e291928357407e083a5beca4f13e0e
|
|
| MD5 |
b6733f402b3bc028eca8c359ec6c310c
|
|
| BLAKE2b-256 |
444c4089061ea1ca61db0480516e152c02b075a0f59b89a4b47ca3176a2c9228
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 690.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e3f17006ccc6dd4262e121f24b5e7220beec1c2cba84a6c2fbf3ceb2b41df32
|
|
| MD5 |
46eb11a8270a6f6dc73a69632874037f
|
|
| BLAKE2b-256 |
c669e1745fa243202ffb9ea39c803328d9a2fb3c77a08fac29e88a2775593a55
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 688.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13274622a76623c76d0fe19b8949cd1d234df16fc5cfb7bb0dc168660e803393
|
|
| MD5 |
3159351c88d7b6f1639a456b084a9929
|
|
| BLAKE2b-256 |
aa3001c8cb6f9decda8dd45282ab27bfc6a0cc877a6192d7e42267ec0a3a4c96
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 617.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83204cbf87967bbf82f2dd71fc0ca3e5fd85817dd9eda04282989513449a8877
|
|
| MD5 |
cbdd5d1906d31ca8d7dfcf26e2b722a6
|
|
| BLAKE2b-256 |
c374ae28c8fc13423a40abc32600a3d775d411daf6aae7dddeac304e5be5c20b
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 609.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15600aeb12e0b9e1e5e5718776b42afd4ef9c9aa6ab02a58140d9ce6ef7173b1
|
|
| MD5 |
cc9920944992ce5ab539dfa15c870e43
|
|
| BLAKE2b-256 |
9fe9264b9307a4ccc2a7fab210b4808f0117fa3b370d696481e6d14254a80014
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 507.7 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b05f42b381b19de1bcc2d723e72b8e7d1afd27decb209d216b18be2cb9d7c081
|
|
| MD5 |
92777bfdca5122be09cd92bf87968b1c
|
|
| BLAKE2b-256 |
3d8514fe1b5d9fa396111b3f1b0ccf37abdcf6950be5fdb6dd6299ce12cfd9eb
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-win32.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-win32.whl
- Upload date:
- Size: 494.0 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0773e7050d73cf3a9ef25d3f5c338216c14cc3a17a9ba9e77fd72191cf77361c
|
|
| MD5 |
6c04dd6b907ba92cb41a4128f30bb3a0
|
|
| BLAKE2b-256 |
52efe411351781ed8bdc1f0aaafb4c7c7722cdcfb2240209c46f6359c41eae0b
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 846.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b8f7aa276ebc9d669402ea2381d6a13344bbe0f366ca893d07a95ebd67802c8
|
|
| MD5 |
664547f63dee29be7105b5433899d0b9
|
|
| BLAKE2b-256 |
1946b634deaf17194588b8b7eebaed6e95ece6c8819e4596f340686fdc37efb4
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 874.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e18d801f2621b007a2b97f90b22e86887ac4021435ed6a626282f41a56fd3ea
|
|
| MD5 |
21136d5528c8d49fe5ea789edfcbd417
|
|
| BLAKE2b-256 |
52b5c066a905e02696fb222ad97c5f57c75fbc68b62c985f935f742cc7c5a23a
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 898.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09c262c3c2c2ed9ecdb42bf6f8838bb8d857ecee1433fb57831facf84f016909
|
|
| MD5 |
aad424ef99d86436f76ddd54563e6b08
|
|
| BLAKE2b-256 |
debed7bc26710d284269358d7bf73d7d340e03505b6efc11cad3c7dea4c11b00
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 789.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
836fbd7655454cb272fbf88d48b0e5ce48b9ae12c8d795a3471c56913e33d5f0
|
|
| MD5 |
2805828f20e084ff83bb6099610a79f9
|
|
| BLAKE2b-256 |
f6d47b7f0321cfa5d0f84be1e286cf28fc92f182a5d125780b839baf6884bc3c
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 629.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
882a5e9b5a2c7be81c200e98d890ceefda74304f138034b2deed75e46d5bc34b
|
|
| MD5 |
30215d9051a939dc8cee2c0af6b9cfe4
|
|
| BLAKE2b-256 |
2e8298406c294dc770edf72b9d890dd1732ca8220820ffdd68c2a05bd4d05b42
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 692.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ab2ee896ff70e4522b7f976c5eb346fc77694fb234e2373eb197ea6a79af8b8
|
|
| MD5 |
5d7a4eb78b7ed4c7bed165d29d4e0c27
|
|
| BLAKE2b-256 |
be6758598f7c9bca934f02d7073ecebdbfd45b4b7b4f6713411b09e803bd2407
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 691.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38fb938dd6f1ffda189e4221be8ec1da8ccaff54e5e5614a9e819bce6138df7e
|
|
| MD5 |
0b69dbc87f4d6deb856ed732b49402eb
|
|
| BLAKE2b-256 |
d68a5137a5a5eb275aa853ee7218f2be5d70c51f4a6062564989ac8bb5a6105b
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 620.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
000c5cf15d9d48e8448b445c1a846855e7e37728adddcb89af3a935db072ab41
|
|
| MD5 |
0ad9a2f512627f3ff4631d2ecd27cedd
|
|
| BLAKE2b-256 |
f8f6af4e26df845adfdd796592c01beeb904e3db1b7a80f7fcbef4c18adb4cb5
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 611.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f330d2c66fe6ab2a56da57094ec6eab28173603652d4a393267e5b7081208b94
|
|
| MD5 |
f884f81b26a4090a3bbb8bfca6e4db26
|
|
| BLAKE2b-256 |
43b5975aa18e333f8f553185739441a476d92af58925b6a7352a625aefb18d93
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 665.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6158398e1201a0a547ec648e77b429033ff1bb70070363aa3c4ff2be47a38092
|
|
| MD5 |
0dada89c7cd242d1f47e14f3b62553c9
|
|
| BLAKE2b-256 |
7138ca32e41e74ed9e81e117f56b18f142625f110817dfff84572b3df09113eb
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 556.9 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4b8b9937fa2d5a0b7f8e46b579abd76502e1bf801446d5296e9b85a60981d13
|
|
| MD5 |
2654178b902b1f3349260993597c332d
|
|
| BLAKE2b-256 |
bc31a252eac2f4f39be255d6fd20130c60b4960200625118d5fa2042af39316e
|
File details
Details for the file lol_html_py-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 581.9 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dae1a63c4b183cbc6c57425bacc4d770f23da40d18da0f42f2523a76aba52c3d
|
|
| MD5 |
6d55aa8369449119bc16b6bcba31970d
|
|
| BLAKE2b-256 |
407191e9f92bb5887dd170644c1ab623e4c9f1c2bc81d76df5e6105fc143b363
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 847.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0c76fa021a506facd8d9eb75c254869b62df1f876c31cbd7658211375d60cf4
|
|
| MD5 |
dfec3028564d2105b9dd05752e2f9555
|
|
| BLAKE2b-256 |
7f4db36113ef1b74ea3593e137a479869c4a3ef19af1fa105921d799c1330c55
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 872.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
934f6a4a0aa61abd89147d774f2ef7ae45fbfe02f45c27bcef585beab7b5636d
|
|
| MD5 |
d0ac4eef82a6028ca25ab396121f521f
|
|
| BLAKE2b-256 |
a9996b48262ebadfa6578ec1a5ce1c4ac707dcf375a5f75b6f9d0304db3247ce
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 895.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb3e4126261e8cd3af9b911e0e5303ec115c01bb8e0a7fb353c929a3b5f37f4c
|
|
| MD5 |
2fcb4df9b91e89dcfbce6bb2d4007d05
|
|
| BLAKE2b-256 |
c2844a0057f0c4b76254cd3cae5e3248a9feeff9164bd106783d252940ffe39c
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 789.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
498f4ad305c5870ee0ce66503c952fab68f1823ce530c89fa637f0fc55d99b0e
|
|
| MD5 |
3c1705325ae0098e320bf381b403d9db
|
|
| BLAKE2b-256 |
e6099d5d3393097908c7c48c8060be4f5725bc70fc8ccefb23f81a7012da17b1
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 693.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67c74727b41e4d07f245c6ab49faab2ebf754e2fba46baa4dd0474125085f6a8
|
|
| MD5 |
985386c636befbe054740ef9b12031eb
|
|
| BLAKE2b-256 |
9f1719d49b7f291968d5fb19328bf38c4391d169a8f1e850238c5d7b0bcdffc2
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 690.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e41fb5767017a6976a70639a2b794c4d6f8d3bf8f36c65963e6f39cc7709b63e
|
|
| MD5 |
7c31312d643c063ba892d66a7dce86f6
|
|
| BLAKE2b-256 |
edd1ee7e834bd4986ce23564db9f4d1c7e001ed3a0f5c24fa0b3cc16a09be36e
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 617.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60dbd45999e1e264e6d370d35a34751829d357f03a0259b0db6ff533f185fc15
|
|
| MD5 |
decf49ecb76070413d4dfc0d05dbb0d4
|
|
| BLAKE2b-256 |
60dd08660a2c96e11cd9aa4d89c6cdf0397d8f44c71259dc6acf44d910e3af3d
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 612.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c39a1d77c4a3ee7898f457022661ec7b3351ed6cf72805d75a9bff07d10d12d9
|
|
| MD5 |
92707f0967a87233ce1f5c38c1c06024
|
|
| BLAKE2b-256 |
12a5e40cc7f9e4efaf5134c9035366b10ed315a22da3e9ca0572cae459e39afd
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 510.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf42623be344343d4809cb0562f97dbbf3624da10b65b6c4746fdc67334a928a
|
|
| MD5 |
11212832ae30f659c0d2f90d62ebe20e
|
|
| BLAKE2b-256 |
8a10124348f29aa04cc95b19a3401425fdb5bf2d78a82164e262b457c98bd73e
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 849.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae9be23dd312c0232ca7082613fd6f767229722b9316470ac2a03ee8cd381de5
|
|
| MD5 |
754282b7bc8d1e15c9ce2c8b124bc902
|
|
| BLAKE2b-256 |
e59b638ff47a7b865b6ac343b791fe07bdba58375027b8a74fb15d7191039dae
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 874.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2067b6ca51319f8dd482cff92788149a72c3d2c8c7a0f140ff13d7bc4f180d66
|
|
| MD5 |
01d68c8fffde6dd0852dab5aea0722a1
|
|
| BLAKE2b-256 |
b05124f5af4d61c57a0ca3002a41e75449a011c1370333199a27806db1c36244
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 898.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f31191ed36be67b228264d571954fa6a6585175c21fb0fb03ec3f1f27ba1a711
|
|
| MD5 |
3b32c4633f2d85b74b2e11a64ad5d083
|
|
| BLAKE2b-256 |
f905890cf58ec6417cbf374d71446e00a61b71b4bc6bf1d3492957e6ef920f22
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 792.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bed5e879416a5c666fce1f229a028ba3e58c221d8941a7d6e4ac69284172a8b4
|
|
| MD5 |
725ee9078a92536e380f473f3bfd40e0
|
|
| BLAKE2b-256 |
5495134a54db7be2263a2d1af7e178d0e3ae4b4c7f4a382034e1f67e85baed08
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 632.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f3ab3e196cf19a0a80b74ef4940df466130a27ff120327e0d80595a20bdecc5
|
|
| MD5 |
4b52d6c987d7e907b9198748f2bdba59
|
|
| BLAKE2b-256 |
bce025c360788c2823d7e395ea559e0723f2a4441fcf148c21886638426fd55b
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 694.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c1b22876484d589f83f08d18856f47b43ed9d69323182d4bd2338052a217731
|
|
| MD5 |
74e14b050c69daa89cc1d176c3d1bf55
|
|
| BLAKE2b-256 |
a43126317a2bf2cdd67410554cfd80134fe98fb0109efabd7863cc717cf4b3f1
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 692.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3737320b4feaf0bc466c41b9f9e80296c06b25f2a834da280197a10e8a420281
|
|
| MD5 |
e757bbc78a4c19788d8a8df0b0355319
|
|
| BLAKE2b-256 |
f3d39ecc27b167bb112bd57b4a3385629b92ad389112e0f50c658a87a9be5276
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 620.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6178e8527ed182796548e6baa4d4ce4eea10e1719a504ec39dcfdf9ab1d56cc
|
|
| MD5 |
5fb29a3d47c33a870d69190e40475598
|
|
| BLAKE2b-256 |
8e858fd0323940db723de611851aef6f4e81b61459759d9286fb6375b0079492
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 614.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
166c09b4ed8a6dd8a0ee15826f608408e1a3ddd5f7ac7eb1b9b4dfe4bae53505
|
|
| MD5 |
5866543f41cdc4d01ee99179c905cf11
|
|
| BLAKE2b-256 |
4ce7298327be88f174161b742a562a64373dc9b244763f93f0631d058aa1460e
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 665.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65f69fdab817cc29b3461d54750acd068aad62ac1db9c687d18380f36ef5e245
|
|
| MD5 |
78efbca4b041be91319445a23d5adb3e
|
|
| BLAKE2b-256 |
15b30d461ac6c9bab93745e5834763fbd97cde9ef0e27bd05d8477d894fc26d2
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 556.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
732a878a954e225100724c8062869167866090556f10d4bd89afaf6bee9b1ed4
|
|
| MD5 |
bf0f3d862185f032c2a0afd53eb84c9b
|
|
| BLAKE2b-256 |
35e11c731027cad6522d0ccbb08dc682ab51fa255c5004f858922de10ea4887a
|
File details
Details for the file lol_html_py-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 581.7 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ede9f470271253bea4a68842887f98977be21dec39fa66f0426afe08fcf5d2d0
|
|
| MD5 |
24a0e5f6bb10b6ed316cb24c1c8b1afa
|
|
| BLAKE2b-256 |
c78eb0424d31bd1ac20e2530aaca84ce587471f265f3a9452c0ea97480b709c5
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 510.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a89e232bf3dae80aa4f4c5c3d5b261461bb49334b06c02c59975cc69b1084d1
|
|
| MD5 |
23eadb4563116e921b1d4c55065f10c5
|
|
| BLAKE2b-256 |
2cb89326f757769447646e5de2d6b119ff0e29ba529a149abfbc886191284f2c
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 848.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7b20ecef3081dd1930ad1366029744b1a7d416e0d7a3a7cba941872f64c0945
|
|
| MD5 |
d2c06ce6946d32555ab0330b83abc48d
|
|
| BLAKE2b-256 |
5deef7f53a8b76386b83f570e21ff6206740a304e49fb86a05de4b64dc2d3697
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 874.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30ea6ec33727cc28fd7a206d62996819cb3ad6817c6fe04bbb1a8ea5bfab6491
|
|
| MD5 |
dd11541c557ba4412c515ad177402ba8
|
|
| BLAKE2b-256 |
bfc10bdd23b5efe08880f4b240ba9e32f61369fa3e1a8e070386a00d951c4170
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 898.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23c8044d502f33bd275743fec76843afb60a23efd6d24d10577cc716dad901d8
|
|
| MD5 |
2a807187762fbae6dcde44d93bf35c9f
|
|
| BLAKE2b-256 |
3a253686e584a5f3d22318c96e304f9f4fea5ca0bed1604c7ff4a5baea1b3c77
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 792.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c7fe0fcaa74dd26851ee809445e841a555093ca402e953408f245af68331f70
|
|
| MD5 |
9013e7940e5ef044758628b7551706be
|
|
| BLAKE2b-256 |
63f8950aa2c78e4624be0267607dd2acbe21a0dff7ed0b4af0469c7db2111bfa
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 632.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5b5be577f7a6bfc9c244618ee15632bc30064f1e65d65dcafdd742eef50fedc
|
|
| MD5 |
7113a3558dad459751a38bd847115182
|
|
| BLAKE2b-256 |
e0f8bf742dfa3c53debdb7ce3bda8fefb248146b40176ca16231d02bc28d7c6b
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 694.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5c17d7ca6337a5f39c5a7ac87bc1c1367f0af33cd810690c8f855ab1834022e
|
|
| MD5 |
8db184387ad846c830b4973df29e5e07
|
|
| BLAKE2b-256 |
fbfe052f5523cd74bf1075927f6e4f5871306aeeeefd6f5844c0e56b61ad9ff2
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 692.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
805d48c90b8661f5f8f372e38f1d5ef3c0df38bf72b7cc3299bce4f1f5bb35ee
|
|
| MD5 |
82646d816a48b484e5ccd4f2b2938a10
|
|
| BLAKE2b-256 |
77d362385a59be2481a8d944186e40d35e5efd5bb179492980deaeb2336b9546
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 620.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff56c4847d3b05a940fb06f7d928b7b2e1fc20addbd96ee326e91df1f5610610
|
|
| MD5 |
cec54c76f34bea7af4fa6e8ea018555f
|
|
| BLAKE2b-256 |
704667d8ef847d6e730a7804d42c2e28424202f78d1b687e7e487d40710c0bde
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 614.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d64497cf9a5eb82375def5fb9f8afb99b4a9ebb6c2a5bac5732e72e7b7aaa2b8
|
|
| MD5 |
c8f5a852391186d73d9a6f8afe613209
|
|
| BLAKE2b-256 |
f0718ab310341ab6c16309e07fad6c89c5eda11189d7c3d97f62f64bb33c9419
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 665.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
942cec9d3f835c0ec6ecc10c061e7f0033e8c369a8b4e8265ad98fa2af0ecce0
|
|
| MD5 |
eca1418cc93572894712a9c6d74c43f9
|
|
| BLAKE2b-256 |
ff181865210591535493f5d6497c5bf1e65d5397965688b0312b8aea4c05882c
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 556.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d42389b7d02c8dfdd3d9683824c4140229e4e1f15d021a60314a359f35f42a8c
|
|
| MD5 |
1b2f46deafeb512d63a60f6d498f3f83
|
|
| BLAKE2b-256 |
451ab54fc19d97c322fdccae44ca6dec9db5701d44897b78d50906aeb173025d
|
File details
Details for the file lol_html_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 581.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c05a79e68b422df4100389af4cb899e4d199c97df87e871d89d20e864a2e8253
|
|
| MD5 |
72f71962d443dfc7a921c28571f8db73
|
|
| BLAKE2b-256 |
7bce32b4bff7d444bb9e65cb874dd34a792f978479a0cffa2e59469a389996da
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 506.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ad706dfaa866338509717d9a4c5761b4a59dd324a985ffe6389986865b59e59
|
|
| MD5 |
13428f2bc770024657b7438d8944dfda
|
|
| BLAKE2b-256 |
abc7aac81cdea468d71926c8042c04b53dccc9ae16020681a2bd6fba243c60e9
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 844.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4caff82d91bf27f69d2d2a2fd0e1c1fd9b4aea24530a9cd37e01c1b3f9216704
|
|
| MD5 |
eb2d1af08f123a4a85a57d1c535cecbe
|
|
| BLAKE2b-256 |
3a65565f1210db9f3cc52dbd8e4802c5814558d0fd98e7506176ee27a0eaa4b5
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 872.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a5aa35f9947c5e58249944bb57c7d0e15962d0ec911e1d24814e61966e9c43b
|
|
| MD5 |
62a31ba6721fa20129bdd89104f3b70e
|
|
| BLAKE2b-256 |
3767f16aa77221ef58f42c63eccc1157a02100a8094efddc652a3a1b727dfde5
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 896.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efb30e1683c05b4fbb96d8f987308d731e69429260f532035e91e944fdddd4b2
|
|
| MD5 |
757acb54ac89b8a261e7d62857b9ff5e
|
|
| BLAKE2b-256 |
e30c85fb1c319eb6357c9d69548d08a3cae7780789375a9fe0d8d46300f3079f
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 788.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb7aee00f95515c78efedff1cf772877d0d617786926728ff93eae43f98693bb
|
|
| MD5 |
01a1bec86c24a6a2c0f96e6c956ac582
|
|
| BLAKE2b-256 |
0f8c5a8cb4541d3b2fa75669b4b11adc8b6a8afce4fc8fa94c1df144fcd4f566
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 628.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92ff7482f1cceff4372c3170f6d5483c1a3c493aa8ee43ab3abf6aa9fd8c5191
|
|
| MD5 |
75e2a5ec66ecc7b2c5fa8c099d283fd6
|
|
| BLAKE2b-256 |
409ae1496c7f66ac170176ac5a31f23df7d6237732d1155749ac5b4590358bad
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 691.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9b49a153c5042a86c9e5a679712249617207fb2831693b628e54a5d838a7931
|
|
| MD5 |
658c9b0af429d6f52495c8d00aa913c9
|
|
| BLAKE2b-256 |
30df1ba646ccfb0edd0bb62bc83687c9644b575a13445fe58428c797ccb7ec8c
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 689.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bdcadf7d36bcc247fa731e2e582f9c8d488e351ce1ef7ef6f23f9687fbcce10
|
|
| MD5 |
6f8ef65edcd53ba76c3988acef073745
|
|
| BLAKE2b-256 |
7b546730b66bd1692f5f3c74afaa6c1f1f28d3e33e8c75183d199a449490dda3
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 618.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5ec61c4c9c5793dde067ed113e85b38d5550d1d9230232d4d80fae2c46da965
|
|
| MD5 |
c5eb521e9a82c087f0e633cf0bfff2f5
|
|
| BLAKE2b-256 |
b19e423096fd850e48d9f02905f9adc218201f41f617434f70c022dee30b1e35
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 610.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bd3b4513164a3f234d6180a93da3b04c74af3a3541930b755e75ecff6a29de8
|
|
| MD5 |
eeef3222fefca74f56c8a156d5373640
|
|
| BLAKE2b-256 |
d68e37f3484293ba96b37caa32df03438ea4c94d3deec4cb4f5bf02a9d7921d7
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 664.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
129777671672ae94a28145cbff7edc42c1491e2df737b5e5ecbdef9888d67918
|
|
| MD5 |
cdd0589f7b87f85e1a1f7861812bec2c
|
|
| BLAKE2b-256 |
49f9022b348f2153634d54578af634bc4a27b14e8272e8ffbea1c2417f95b760
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 557.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3bfb2e149b64f0b001582a0dc64624e7805dec11cf561c921e863fa8ac1644f
|
|
| MD5 |
7f991a58086a9bc639be25ee10b1a88b
|
|
| BLAKE2b-256 |
f5a8518eac2ec3c534a0a164f376bd6bda7c6021afb4494686323ad7b622cdd2
|
File details
Details for the file lol_html_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 581.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b02739da3c6b006d1daddf6919de01caa6db2d7f401771f2449a8aae29343695
|
|
| MD5 |
327c763e88ad954c7b1451fd9bddc5a2
|
|
| BLAKE2b-256 |
f7fad64c25e57e8ebb5e74187286eae59e8b096bf39174e1f766678814f98ca4
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 506.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0d79da48e3ee26a82b4965d0ad6ddc9e05633c7f17b0d684c41d223ed484e86
|
|
| MD5 |
8a25ec6ce097f07ade95c76f70a77f17
|
|
| BLAKE2b-256 |
0cb29f8bf534ea70065f41544724d8192e0972793ec9ffbdefea566e25844cda
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 844.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50d6521b8eb571b41e079228dc51643cf55b958fbe59f0c9ddd2626185afda5c
|
|
| MD5 |
3985b4eaccb641af8eb19a1551046169
|
|
| BLAKE2b-256 |
85d58be3502444b10ba8460fef1bb1f5414d29301566e7d755875e8a2f3ce944
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 872.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
316e3a63e6ee30dee2a808a7da3ea81dc2a24385be357f93d7a763efcbeffe17
|
|
| MD5 |
1399197f6ebf28fe920fefc1a240fe20
|
|
| BLAKE2b-256 |
e57bab607a65dd2bdbc45c3400b1d38d6941522d072d3ae2c67b2d95704a615b
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 896.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d4f8b1039f644a10266257cfdc2303d1949e821e37eada78e5cf55c135b9c54
|
|
| MD5 |
d1b76b968a424f458aa8fcfb9008084c
|
|
| BLAKE2b-256 |
3339edfd9e5c3883c241b99fbaec3705c50f5fa21a67e728842042952d825fb6
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 788.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96551d3a48b5c5cc1928377b2d56ecd9b10a49d623069a9e34db289024b43fce
|
|
| MD5 |
eb552ed48e95e70b7d454f141ca022ca
|
|
| BLAKE2b-256 |
67c20c63e16efbe7ca3c5b85e33a9abeca4e07677429f8242f63f83886e2e630
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 628.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
444ec1df9c9a8d1db25452be9a2ccbff0ec3e8bb84a686de92b1d44bdf9e1e33
|
|
| MD5 |
10dbdf5f773b01eb1bf454f21bb55b5b
|
|
| BLAKE2b-256 |
638688930487da787c538e4eab9bf7d250ee9a2dd167d39617daf053904fe21e
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 690.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c4f44414ffa20d0e9186d8b05f7a6c05025712bcc148a88f3566c5f151f5656
|
|
| MD5 |
56feb3d8cd28eb3eb8503a55bdfef594
|
|
| BLAKE2b-256 |
5bf4738d7bed58a54a339550046f10a755efec4c74150a3ec7afb1897ef820f2
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 689.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59320aa73f6d30fa690f00376c0e8b22a20ebf3b9580657be301fc574df9da69
|
|
| MD5 |
99142bcfab5d86b95bb403d6266a4b4c
|
|
| BLAKE2b-256 |
e3e37b0b22c20ca5a46c3c935ce8e5aa13b01b176c0017ec657d29c2371dc46a
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 618.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
140f520e097765148501d9cab64b8dec6450b56b818f50cf2a2973f738ba907f
|
|
| MD5 |
f6261cb7578221313ab9a5d613b5f44d
|
|
| BLAKE2b-256 |
eb8d549450f1367f511b3bab95f4d48824ad9f15dd44e54913323043a10f7348
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 610.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9ca698351b308ec2df95604c69a8dc1fb606e9efe210fb647967d9daa5938f2
|
|
| MD5 |
7e29da6a1403787cb87e83542e67d71f
|
|
| BLAKE2b-256 |
2faf8f8b08be67eb803dcce09bddd841c5d3efac7dd4cd2d443c62657b1ca0af
|
File details
Details for the file lol_html_py-0.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 664.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9496e386fbfe301e4776bf1bad5a00817d706ab9d09870ae2cff3b333137c98e
|
|
| MD5 |
3f7a7c4e52db1cf75f3ef805bb0fef7f
|
|
| BLAKE2b-256 |
2153e8b9e5e3d36b22aa1a33298b77293afc881f450954fbd1761560a2f264f2
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 845.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb444cac4ded68b93b1e896caed5061a3744f7a353e145d17b7d70e40b101bd7
|
|
| MD5 |
d0b1bf6d0431a802e34e6a12a5d1ab10
|
|
| BLAKE2b-256 |
630bf63dcc861bb7dc8b48858c48b47f68301a4ccf9343fcd2d4eac4b05125dc
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 873.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea1a7401db2d27bb9d9cb0a042429f02c4788dadfc1c3d3cfa0378879b05d16f
|
|
| MD5 |
40b8f24412dc96f7e1498c1b98a0cfff
|
|
| BLAKE2b-256 |
93ee70dc5ee67a8be7b95456db4f76df4f2c2a868dfc050b902aedebaca2b1ad
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 897.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5236e517586eb208869e0237aaa9c2ac29476c0f065a4e7e3348f321b83097bf
|
|
| MD5 |
e5105717f5150c9b80971673800d6d75
|
|
| BLAKE2b-256 |
7a1ceda6281d8b4032ba88bd91ca7c4b02f8933c18442aab626155dc7984477f
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 789.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c292ff23dcf983fec285059bc2ec754e0317f835ca80ee10e07e9e4a792463fd
|
|
| MD5 |
03b58fb30ca78c96767848ef4eabf8a5
|
|
| BLAKE2b-256 |
7a2a0ce3793e2c16b9f470754932ab9355be4f41d5bd8e26230bac6181e92b84
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 629.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
479278cd648f454714fc6cefd01170184a2cbe86f544b5bf4af39960ff99fdc8
|
|
| MD5 |
80df66dbf9e38b60305b6a2a69530ad2
|
|
| BLAKE2b-256 |
4836361438aa0539081e9175a900ebc980a848f5972aea432536da24dc49e636
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 692.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df9ac90c2d3ebc08fb6232962af500e2c29153b9f790226a9c51d5de9d3fc130
|
|
| MD5 |
a88a3b9edf63f2b5666f544340164875
|
|
| BLAKE2b-256 |
d07f6dc5e84398a3d173e4829e0e5423a1e86032c1f1f349e8dae46dffe9011d
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 691.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc8e7ee9f2643e9454d2d2df8ab578e717f1cd75eb8d1e57649fc8e1e78041e1
|
|
| MD5 |
272e727dd444b189784c977aec482e35
|
|
| BLAKE2b-256 |
f374d2650a51b1f2e1e061e588cf995b9e1593d4f038ea5e594109ac47b50c4b
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 619.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e46b97abc7e128211e7c4c2e77d1aaf81b61c084686bc2f799fc6c1259bd8b0
|
|
| MD5 |
e0abb58c6a79146a60f3279a35f33258
|
|
| BLAKE2b-256 |
169e4fb890d919e5dcc4a28b4ad41e3be5952355f2be034ac59d1c68e9ffe127
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 611.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8f49f84cff6fb97079b4fbe4d1ca3368e695d23a9401d7857343b1d0dc41b35
|
|
| MD5 |
699f81ca4311ab379497555307582d1d
|
|
| BLAKE2b-256 |
96546dda4d8385e3daa1edeeaece428d518fead7ee8dabe79811ba8a8bf04da1
|
File details
Details for the file lol_html_py-0.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: lol_html_py-0.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 665.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c255cab708bf5ed140a4ca1bdd0bb1cfd9a3977300d158f31547e10897030b7d
|
|
| MD5 |
66f0cd4119a2d48f133aad5fcd3614b6
|
|
| BLAKE2b-256 |
baf3e3d9c0b64e682615dee4f6186edb24f16947a335c2853dadd8580c4520ee
|