Skip to main content

High-performance HTML parsing library for Python

Project description

fast-scrape

PyPI Python License

8x faster HTML parsing than BeautifulSoup4. Rust-powered with 3000x faster CSS selector queries.

Installation

pip install fast-scrape
Alternative package managers
# uv (recommended - 10-100x faster)
uv pip install fast-scrape

# Poetry
poetry add fast-scrape

# Pipenv
pipenv install fast-scrape

[!IMPORTANT] Requires Python 3.10 or later.

Quick start

from scrape_rs import Soup

soup = Soup("<html><body><div class='content'>Hello, World!</div></body></html>")

div = soup.find("div")
print(div.text)  # Hello, World!

Usage

Find elements
from scrape_rs import Soup

soup = Soup(html)

# Find first element by tag
div = soup.find("div")

# Find all elements
divs = soup.find_all("div")

# CSS selectors
for el in soup.select("div.content > p"):
    print(el.text)
Element properties
element = soup.find("a")

text = element.text          # Get text content
html = element.inner_html    # Get inner HTML
href = element.get("href")   # Get attribute
Batch processing
from scrape_rs import Soup

# Process multiple documents in parallel
documents = [html1, html2, html3]
soups = Soup.parse_batch(documents)

for soup in soups:
    print(soup.find("title").text)

[!TIP] Use parse_batch() for processing multiple documents. Uses all CPU cores automatically.

Type hints

Full IDE support with type stubs:

from scrape_rs import Soup, Tag

def extract_links(soup: Soup) -> list[str]:
    return [a.get("href") for a in soup.select("a[href]")]

Performance

Massive performance improvements across all operations:

Parse speed comparison
File size fast-scrape BeautifulSoup4 lxml Speedup
1 KB 11 µs 0.23 ms 0.31 ms 20-28x faster
100 KB 2.96 ms 31.4 ms 28.2 ms 9.5-10.6x faster
1 MB 15.5 ms 1247 ms 1032 ms 66-80x faster

Throughput: 64 MB/s on 1MB files — handles large documents efficiently.

Query performance
Operation fast-scrape BeautifulSoup4 Speedup
find("div") 208 ns 16 µs 77x
find(".class") 20 ns 797 µs 40,000x
find("#id") 20 ns 799 µs 40,000x
select("div > p") 24.7 µs 4.361 ms 176x

CSS selectors dominate: Class and ID selectors run in nanoseconds vs microseconds.

Memory efficiency (100MB HTML)
Library Memory Efficiency
fast-scrape 145 MB 1x baseline
lxml 2,100 MB 14.5x larger
BeautifulSoup4 3,200 MB 22x larger

Result: 14-22x more memory-efficient than Python competitors.

Architecture optimizations:

  • SIMD-accelerated class matching — 2-10x faster selector execution
  • Zero-copy serialization — 50-70% memory reduction in HTML output
  • Batch processing — Parallel parsing uses all CPU cores automatically

Parsing & Selection (Servo browser engine):

Streaming Parser (Cloudflare):

  • lol_html — High-performance streaming HTML parser with constant-memory event-driven API

Related packages

Platform Package
Rust scrape-core
Node.js @fast-scrape/node
WASM @fast-scrape/wasm

License

MIT OR Apache-2.0

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

fast_scrape-0.2.8.tar.gz (131.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fast_scrape-0.2.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (632.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.8-cp314-cp314-win_amd64.whl (526.9 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.8-cp314-cp314-macosx_11_0_arm64.whl (559.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.8-cp314-cp314-macosx_10_12_x86_64.whl (583.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.8-cp313-cp313-win_amd64.whl (526.8 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.8-cp313-cp313-macosx_11_0_arm64.whl (559.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.8-cp313-cp313-macosx_10_12_x86_64.whl (582.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.8-cp312-cp312-win_amd64.whl (526.9 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.8-cp312-cp312-macosx_11_0_arm64.whl (558.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.8-cp312-cp312-macosx_10_12_x86_64.whl (582.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.8-cp311-cp311-win_amd64.whl (530.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.8-cp311-cp311-macosx_11_0_arm64.whl (561.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.8-cp311-cp311-macosx_10_12_x86_64.whl (579.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.8-cp310-cp310-win_amd64.whl (530.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (631.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file fast_scrape-0.2.8.tar.gz.

File metadata

  • Download URL: fast_scrape-0.2.8.tar.gz
  • Upload date:
  • Size: 131.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fast_scrape-0.2.8.tar.gz
Algorithm Hash digest
SHA256 06c3184f98f9da3f056f82aa63d7df9186225685c241b01f4d0e4ac672b60634
MD5 753d3ff643b4d58c19d3288f4b1e68a3
BLAKE2b-256 a87af2959bcb0350cbf7baecc9af40e0ceb87fd2d424a810b07a932087754aee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8.tar.gz:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 630e410eafe630cbb21aed4e6f3d447a2cf2133027b5388fd5a3cca30fe125be
MD5 ec895aa8618af7a3d87088cc04380aec
BLAKE2b-256 ac2b5ab64bc55906dd12a1d09f72b1d4a51aebc07fd463c6ae7a113f57da3ab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee0c851f97bd95c4178ccadabc12e79a9b40d9444f705bbca1cab739c7910a77
MD5 35b80e540edbece9139401147ff10049
BLAKE2b-256 e86317ec0b6825a2942a8182adebc6af7e50b3b1cae764c81a2fa2f44279f648

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ea7e3aea8733ada231172f1ab31e392330a5514e2b3458b10645ad6757e1d1b
MD5 a8df8d7fa28e89aeecd56297d2b353ef
BLAKE2b-256 c8a93e3487c78ed00a1182d53e1a29ceca7de308af09d821ed4f82b7cb822129

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05531c668877c0645261e0828716072beb55b1166cc010dbf53a3aa4f2923646
MD5 d48ac8c2844936d4cb9432bb291b324f
BLAKE2b-256 b89858e26aa19a271d86e80920f933acd07ff00b6dc6d69990e4615f57c7d37f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0328839cf40184ed2c7dae1818c1cdfbfd7a598b50b1e2dcf153e4b1d790e75f
MD5 8a0549dc4751786388f6284058f1b5e2
BLAKE2b-256 1cb5a4fc23f62632c65bb02391540c9e63fd6162338e14631d0710e4579ba9e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89577acb5352781c029e756ee038613fa31ec33e4a2db2b7942e41025384e993
MD5 d77613fcb604bdf1c81a4a6a1cadb643
BLAKE2b-256 5623b9ce774c123d6b745741eb2f53329c57625d216401883296a30ffeee89d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fast_scrape-0.2.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 526.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fast_scrape-0.2.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f33e979321c1bea556413f02f840fae7ceddff94655382e4fc1c46bfa8a1a329
MD5 a1ae21434edad41f54d8d573a27d66b7
BLAKE2b-256 af57d206c0bbe6df12f4fadfa528073a27bedc88f175c484c5e7130c2cf03e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp314-cp314-win_amd64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8448d42ff24a5b8ff1c3fc8b65b0ebaeb0e8d235263c69c5b39aef24541052c
MD5 3aade34ff57fd8568e8242f6b694e241
BLAKE2b-256 259762c81d437ce0cd1169499829fdfae4bc4b42d4f5072ac0d3474b9c4ba4a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ea5de0ade2aa23449f0ace8babe616b965c97e003c54fdf7a498bc46e9749da
MD5 926c0cbf020202832ebc8fa1462dbc59
BLAKE2b-256 131e32a0a474dd4199265d957d8a53a6e091102f7be87db4759eb35b4b247551

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 055f1b92765b81a1d22ffc9418d295376d7f8e6816c6007504ed29357c6b61c9
MD5 9876aa4c6fd9a3463a7757bca88a532d
BLAKE2b-256 ba8b36780e7bc7db4613d6bd06991a386b64898f7a1c161df817fe280a597f1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62bf96921426304f303b38870546530beeba816efcf9220b95ec03846a18854e
MD5 1b2568d54079ac5e3703a437560381ab
BLAKE2b-256 b76ce30f9d1384ddb83f977ae7eccbfb5d1d6ebdbb5e6872521e73ce3b246470

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fast_scrape-0.2.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 526.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fast_scrape-0.2.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cbc1dfa7186ad7399e4784227eb5d5b5476484dec1c69a5d29491a2cb164edb1
MD5 347ae3e85db42ab0d96fe73138bb447d
BLAKE2b-256 68563cd66e7005c1f7c26ad75990f8cd995fe13a369e0b469a9f97aacbd5891f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp313-cp313-win_amd64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b8c3ff48fbcc69eee44392b20a4b8a0cf145968b8a342af1449bc6c3136503e
MD5 a6a035cef976b5d9e9cb7be36bd836b5
BLAKE2b-256 d751e6f02fb8bdafaa0e753abb86bd7314988aacde076fcdb2c1d2bd32feb6fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e01166db11b7cf02884b3943de8d10e13be8b5ffa699b95e716d00c07cf9f35e
MD5 7029581abfbf7ceff8e7b7be6daa6122
BLAKE2b-256 9a0f646f3a5d71a7bc35959807c0212b4bcca5eb785d54dbd443ebb1145367d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f64dc80288dbc0a3f89a02e15b82fe1c5e6aa73aa822c9648906f3718a4b7054
MD5 eb1fe547fd0877baabdfd28810f4c832
BLAKE2b-256 d485b50e527c474fd251f1bfc6a2599ca8f6de3a6a116402e56d339b71775a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31913260dcc6e30635359f792a60f6b8812ca8b689da722d121811590dbabd95
MD5 950f5e7028c4aa293f2d3339ef34db0f
BLAKE2b-256 edc5f36bff1e548a2e50c49b1fbd4a501c241d792cbf49c484dc9fa521897e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fast_scrape-0.2.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 526.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fast_scrape-0.2.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6c3c0e886e2cd19ce8e3571981947cc9c8dcc2ff97718a71b1963ce3630fb898
MD5 ceda88ebdf669c3448e763110506bf63
BLAKE2b-256 7d88d28ef09ccd2d7553a5c6a2d7e6ab77db0cc42c6c904352f6c9312191d61a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp312-cp312-win_amd64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd67690430c9f23bdbe1d3c2c21083d419d17ef216bfc25501ea5dc9639c457b
MD5 6d27941bc39f5726be3179322b6b3058
BLAKE2b-256 ad1e9426f131ac82dbc92bf832b2de24143454e31dbdd1e13ad7fa4e57b79531

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc048df522c8c28420246bc80280e8fc90985729687161129c302b30d9ff9e0a
MD5 ac639eeee011c3bdddbb95db806be5d2
BLAKE2b-256 7fc7490a258dd441b9397d0f8e4b0a6121885d4ce0dda4c5f930e37d026b8e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1091a9e7d53a6bf3b3c45527023cfb75bcd519b28ac21d9ed5e0b226af3cf261
MD5 454ca86ae1df2fa86c004df0b5525bda
BLAKE2b-256 920788327ec31820446a6b557b8560c4844370a546a6cb6310a6554e88c86865

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f6d4046b0a1759f49970312288079570582a84100e56b5e4c94c3f8404da59c
MD5 b8f64b81c00d9c031a6a9ae3a22e3b4e
BLAKE2b-256 e1b111042fa61321b7223dbaa0d5ddf92a3daec29f320da49293cb6e0a72f38e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fast_scrape-0.2.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 530.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fast_scrape-0.2.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f33aefa16c6726e2d78773c9f12c715f6fae0d69775cb8bbffb813d87cb0515a
MD5 6a797a60148ccb9317a721a5e441c5f0
BLAKE2b-256 e28d24306751c36e3cfded923abde8bf40b988fc61244fe3ab31505fae4d505b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp311-cp311-win_amd64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 156e20be5c9711c0959df6ed63cd983c421993e32266a156c128aebe2350f442
MD5 bf7ff516ab02f1ab6f2f3272c6d759e6
BLAKE2b-256 e47a2dfe4d9037edd7028de530b9ee7de03848a2ce7e45081b07d4108bd0ec7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f890de7436be48de0488c68b7411cfce1e91b45941e128fa6c1342c02545536
MD5 b437225debf99bb9a263331f6374c040
BLAKE2b-256 5cacde76f57d6d5008b1f1c84718c778f8189e5110dae98de5cc464b42e9a506

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49e86d6fad6539453f023b24351f2ff8d24f839cefbefc1259b08e8537244366
MD5 18848fcdafcb450b9c07093596974ca8
BLAKE2b-256 315d67f965ac1e460b2993629d8e45f40c9aed9caca808a71c03a532d400610e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bb800b956331fd9195aa7d40c039f9d28a9ee3aa2665caa152670c18613ae7d
MD5 96fb122d01ebbd347db347bd09fd02df
BLAKE2b-256 195da238d46878e8084cdec38c818a81279febc6eb9091cb2f10c3eeae64ca03

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fast_scrape-0.2.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 530.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fast_scrape-0.2.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ccf2c565e1e7628e6718948393175f5106dff9458a53ef0777e375acb5c70465
MD5 3f54b76b4c68f07660135eec2897def9
BLAKE2b-256 a958daf9107d786edb259b03a22c3eb8cea2926218ca4504d304ec8f91d36a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp310-cp310-win_amd64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53f18aeeb2e171162d548d1d238197c7351559af6d4bd3769a7468a982e02114
MD5 a226b9d2a531616bdfbdcdba5db05d53
BLAKE2b-256 17b6b925e8b2450980e300e44f694d5b4906196a5b3acef428e8cb2f55b9edfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fast_scrape-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf29e095ad2fa231d7f8d9c354ea0cca0771cb367f13a2b327c85e04c364a6ae
MD5 a4eab30240b24031c1ddae9f3ef374ce
BLAKE2b-256 d0a75a390bc1214aa4b3a75ccad459f44af37c7e044157869917375f66c03937

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on bug-ops/scrape-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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