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.4.tar.gz (127.6 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.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (648.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.4-cp314-cp314-win_amd64.whl (547.0 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (647.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.4-cp314-cp314-macosx_11_0_arm64.whl (577.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl (597.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.4-cp313-cp313-win_amd64.whl (547.1 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (647.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (577.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl (597.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.4-cp312-cp312-win_amd64.whl (547.3 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (648.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (647.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (578.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl (597.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.4-cp311-cp311-win_amd64.whl (549.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (648.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (578.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl (599.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.4-cp310-cp310-win_amd64.whl (549.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (648.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.4.tar.gz
Algorithm Hash digest
SHA256 72482c19a38ce94ec556437d431e2e1be430c4457f10d0e3ad8ea1fc5d05d70e
MD5 589ce7eeac6728a27e52c0ee7262eb76
BLAKE2b-256 35db833e0a65c1b0fe8d1a401ddcf7f673b7db09e1cce3a76940490c3a1fa8b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4.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.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06c8f6587d9bd94ec63643095ec9f19a7a4fe6c8c1b8922dcd7774abc615f731
MD5 1ebc67814cb65b33608b9053cd767937
BLAKE2b-256 b00bc63bc89b6f37508efc85fde92e7de5de40db4536a40368260ed671400073

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3eebb52cfcc8322bc1d9f0be8b711b9b95d63a19e34481f88b8d9868d916b194
MD5 0252386fe9125da2a61dd9aabac2e978
BLAKE2b-256 9c4cb56065db77809a3cd99c85105f38d9c1126210aab7c70316ea4f2663a0d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31b188cf20a120676d2ae0869f0e5a51593c9758bbe4b27b67fabb123c2c1e58
MD5 6fddf6c94432dab1cf5592a1ad2fb0c4
BLAKE2b-256 bc95f094360fc52a6ea1190c916684f1884062fd23ed98e333dc207e66951b58

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for fast_scrape-0.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 984d28b410d76e5b807e00c9253f812a7f461ea085c901d5b1bdd87fdf40dd6a
MD5 e565d559e176b3970a0fe9f3e4a17fbb
BLAKE2b-256 6f0e17c124c3b5f4ceffc53a81c7b265743a48f490344152ea55ebd5d378813d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f171762b1a3d6714526594f4f2ea1fe6d46df5ee0ebee553c76cc025e40dd2d8
MD5 b2c3951df5d001c32a1fc848cd8fff18
BLAKE2b-256 8c5c0ec31c246238e35af50cb72222a7b2cd68af5c3f77f35aacd84e054db160

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a2a7138df8b2d1d6dfa2b5a906bd922e19053f5d1a488080250d1bdfaab6cc4
MD5 4fb0dc42591676ca49ffb9ede9d6a40a
BLAKE2b-256 d5aa81612f265cf78399c373c61a51d228a7cf5738f2f46c47a1c88ec59c436f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eb1efa996d280e82f88dd3893e7a9aa35b0c2c63f9e4cc416e10a6adbca9d68
MD5 069a1965d4f312a8c13ce257b2b86299
BLAKE2b-256 48bc021fb88f4368539afa1a4bed9c34f454f97832831e5ff29e5ed99f298b25

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f10f48bef5a7e1f187028fce85bc429dda6d1c86607f5bde42a54060a6bc5e78
MD5 cd0a7b4377bd0f236a94f10abd3a94ca
BLAKE2b-256 6147d81f35e67e9d8796c72a3f9beb7c2072d4bb6973a8d7d135702e3de27687

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18b5007bd838b03778acb589a9e0b03ea0976740775de82948e3e53b3ab18492
MD5 678bbc8248c448bd1ffc371d41dec0dc
BLAKE2b-256 f3d96803a38d32eefb681effbefcbb1110e6e74548c435534d6ad77b27a53e32

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-cp313-cp313t-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.4-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for fast_scrape-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1fd01ed174ef711d6cf1621141543865d3a3f1cffffaceeb548160421ae3fabe
MD5 4a910c47928407d00df336c159281e5e
BLAKE2b-256 9c23cfb3fb6d161ee705acff165881e6b51c88c4b1ba097d8706853dc219e2d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a291266053d547c8c16615551a9a249730ef684440459ac98d713ad0b9171d14
MD5 078e3b950867d4a8b3495e91a213bfed
BLAKE2b-256 b2783b727a4144630449be5a9e767ce73922f92372d1b55d73736485549ee1a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1abbc53e047619557a6edac82d79a822be6be1a40195946c46feb9b15571b660
MD5 abd85e1624ecef862c58cc74dad75689
BLAKE2b-256 26e8280106195952ab3ba66a4c6f421021e24fd5f0228424d8c4e032592d140f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9388c276ee2d2f2b6685fc4fb9170bfa070ef459bd2165676bd19d24e9e5f07
MD5 dfb8fb0bb1d95e2fb9eabf7734377be3
BLAKE2b-256 c97720b0d94332b07650c8cf404c53a835528e0e0954b593dac237376f7cdcd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d17e9089ba8eeed5f5eccdf02047a3ebd5408c502aa721121e56b91bd82d911
MD5 e7867affabe71b228c1335b355618d90
BLAKE2b-256 e8fab0f44338125525c7294eaf2bc034e1b96d9dce62376f2d4e8202b07ff921

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for fast_scrape-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 282cff90592aa7bba8f2d7d79868166eee67bfe7d2f8dc3a769d55ee7dc2c08e
MD5 8fa213581e672c2fcb202d35b0e0bf25
BLAKE2b-256 a51d56729b05a35ff144d2df1d65c845ef702d43b618520e5795901219605f41

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14350ebbca8c6753b556cae9bf0a189c6f994270fc7028b35edc8a03d75b6ca0
MD5 d1b0356efb9e7e126d304707fa3689b9
BLAKE2b-256 35c4281dd465d0ec5212b954a8e852c23daaedcef2f55eed7141d7067b44236c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d5a2da4357d1b6e72fdae81959416ab7b15c73496d6e6d76e219f13f7257ca6
MD5 73057c5ce2db27d6e6ce92cb2d2c4b47
BLAKE2b-256 196f2b0b6882c222cfe3ded5b7f7892d4cf2e72efd1c25821b8827e0c6aca164

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 603a65ab925adb033960dc4d6e26f5f92c30165fccdcaeea4564b897907b0db6
MD5 1823bba4a7a8333cd64426bc0495f0fc
BLAKE2b-256 7575755de32a29d9175a4265375eaea9718e935595e02c4960fbb0200016b7ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29a10b843278173ccf6c99fb7052836210dcda73784aaa815017da74bb5da19a
MD5 1ba0e265adae54ebdf61515afb9d28f2
BLAKE2b-256 37c6779b2b83e44f84ae7fc972070f1157c024fe5c39243ae4a09514255ad28a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for fast_scrape-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d940760b1b9b116c9ed6a392b1a88c4cebc2926a38e21b133be494bdbb6d4cf3
MD5 0491c5cd8f819e679e8a0c89e53c2a51
BLAKE2b-256 9d0d21166add1c526bbd8c75a424103ddaddfa59e5e1587f5305caba1001988b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b73c4daa72d66cfb950829c5d28653001932d055b8fde7a4cab457b1f5b6aba8
MD5 4120b4459f533c8924492871b6a687a2
BLAKE2b-256 1fb0f156847c04f64f578490d2e5b322872eedfd3f2ef1739b676ff883290889

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 166aac351ba0ac92d90f9ee60a86f8c1a7f60f853ab29b915c8b71eb1698966f
MD5 c31a41e9bd577b762f4e9fc023dc8bf6
BLAKE2b-256 5d255afd22175b8d34e619243f9f131e8c25697d19d07164673b3134de217fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8d4aad19b9b6eb889da148cddd1bb6875c5a00c4ba07d0559b7f19e3c00c585
MD5 b8b55ebe394d0534c93f05a6fb94649f
BLAKE2b-256 2671c2dd78b1b24e021b2b223fcba547e96306ca5031636e0c3f5165f189de6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e647aba83bd40c286890afbaa2789e7954afc7cb66e21328793f7e3d67635ed8
MD5 903ed36ace48e925b88211641334a202
BLAKE2b-256 df083404755b08bf813e14ef60f98ca4d273635fe65245af0a1a128d3efda777

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for fast_scrape-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f043ae4951b3cc5f4d6302806d257a208743cd97afd12a58b0bba7a4bf6ddf7
MD5 ad973f29b67c8f6cd47c6078c243f23f
BLAKE2b-256 c7f597838d7456e61f4f6792deff16e3ea20e545acfd13dac8b53037c22a8fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8d264337ada800c926379d9b0cf260c6de95a5dfe62602a7b55463dd7bfa0f3
MD5 2ba85e6df9094e9b0780cbc03564258e
BLAKE2b-256 7d4c4cd96748dd48796de1a1908d3a15eaaf09598686041eed8ec6dfa6cc9212

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a05ebb0750da3f3eebc3f63602c8ca9ac1a85bc944084b243eca83551019f9ed
MD5 724441e5e955db7b9f5bb73f6637b90b
BLAKE2b-256 b1e0afc1b3af23eb6f8d4bb6cb2449c46e02406b5d8ba49ff09487136a431fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.4-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