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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (631.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.7-cp314-cp314-win_amd64.whl (527.8 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.7-cp314-cp314-macosx_10_12_x86_64.whl (582.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.7-cp313-cp313-win_amd64.whl (527.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.7-cp313-cp313-macosx_11_0_arm64.whl (559.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.7-cp313-cp313-macosx_10_12_x86_64.whl (582.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.7-cp312-cp312-win_amd64.whl (527.8 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.7-cp312-cp312-macosx_11_0_arm64.whl (559.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.7-cp312-cp312-macosx_10_12_x86_64.whl (582.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.7-cp311-cp311-win_amd64.whl (529.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.7-cp311-cp311-macosx_11_0_arm64.whl (559.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.7-cp311-cp311-macosx_10_12_x86_64.whl (583.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.7-cp310-cp310-win_amd64.whl (529.6 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.2.7.tar.gz
  • Upload date:
  • Size: 131.1 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.7.tar.gz
Algorithm Hash digest
SHA256 220cc188b5b43367b65e8e82910ba44e5a545e878c130e3fffc88f2ce1ba675d
MD5 097358c3e80a33b7dd085bc8cc8cd4f9
BLAKE2b-256 521a891b346e4eb6ad151e1f0da379d43ee7a863dc9b0af86fad91facb210b97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 737e02662280c20d153965e3606c15670524bcf3228a9571c4e72a352496277c
MD5 9af8ce76aacba5c548fd889bf5c4134d
BLAKE2b-256 a241f5a0ce1b91f226f6c4109609f39255942e9711f4d41b7b5a37ec6f33ae1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dcff962dcc7f9c4841bd314eb7e3d04c7577e076ebaa06eddef62db97615efa
MD5 e4e993923bfe874d56caa1a81bcc0f9a
BLAKE2b-256 435e7627ba6f91de27697685be607c688cccb304e5cfd0455201f81cc36e119e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6296589d1dfde4d83f13e0583dbf2ed0a959ad2a4eaf2035d73b758dfecbe15
MD5 1461b6e5755bedad19e7c85bb64c574e
BLAKE2b-256 bf395126e318c8069ac656c68ca8c0a476b903c5ca91dbc072891bd76a913b99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d0f9f73cb38367440c349e2e4ee0ec389932f433b26805ccff8cca46cf340bd
MD5 870dd6eb092d3719b7887e222338e0fc
BLAKE2b-256 ea357d14ac64b962d3b1080407137dd4d86bb9f19e5dbd028937a6111946738c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 527.8 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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 12ee202c88b57da4ddfd5bb9c823971177429a036a6d6ba8d4fc826c685c18b6
MD5 d125761e4bbd37b7390dd47f8da983d7
BLAKE2b-256 b6c2026f6858adad0a8fa1d77db1ee10b543cde6de5e837d50e238f4b3a5cb43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71e975926f2fcc04e211b77a24f78536b5edda2075e39c7e3224fea3824c2771
MD5 984711fab73c1e68553f087fa526f23c
BLAKE2b-256 f87d4634ba14876cda248a7102563bfb97dd33170a079295b95ce7ebce458891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf70a6a27f4338fafcec135e97994ee09b255409167432ea32124fa6a7bef22c
MD5 adfd6bacb0f8ba5808b018fe3a570da8
BLAKE2b-256 23ead25ed8fc8fe912af64fecf3f10656d146043e84aac9a413bb767c35fb457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc8647ba7a1c2fe0cb14a4a00f56a9dae5e02ac6f025882d0d4024219e69b4b5
MD5 414f0ac7acc0e9d629aca5bfbb9c9853
BLAKE2b-256 ff909e14b30615353698f50b643882140ada3e7970d3319ab55bb6a40dfb0f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21706d849654f5d639f210243b2e15f50f4ec2cbcbdd81d5a921de12b2df9f07
MD5 9b64aa51eab54dda302eec0b2c506abb
BLAKE2b-256 ff04e1255d09a65d72965eb6c34f423f1547f1fce16113277d13c5a09fcae447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e31bc1956acd6a0ae55e8ca8f4c83b16e4dfcde0cc160531bd6e3c2fa27bd94
MD5 891944be4deba7d63d83c4994ef83e3c
BLAKE2b-256 05c820c2c222faa40f364c02681d9e9e21a8d164920cf506ae0234825b619f0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 527.9 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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ebb8a369f9b2fe1986be7f2576065c46a209c2e5143e274f2ffc3a097114a6ea
MD5 e18eb0485a7e428a62dac2ade876d334
BLAKE2b-256 e87f5de7b28137305fe1cfc74a42e3ef360bdd2c9ac21dfdc584675787291e8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd1e5892a97e991ff2b075d36f645bb3ac082e22a5a13cb97525b2118137f2d2
MD5 eb26454bc2eb10fc25e5c7463a3258c7
BLAKE2b-256 037c3b44a2de0c3e0e8e708b0a74b718a5b57cf0c51b778e997c6ec2866b8602

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 455d720aa2a592ea35a638d1c6575558d14ca6d3fdd75d44cf10e29e27b81b93
MD5 29ce049b16e2b1d6780e79720d5c7880
BLAKE2b-256 662f0bb5cd552cc03193ff52ae2bcb18b4eb25a759f812057a1f20658b0e57c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caa0d0d184307d5db4a0528a9637b267a927cb3f7426c3cf0942f25088726097
MD5 4bb849733784f228e944b9f72991a714
BLAKE2b-256 00c6f3fdb35f3d7aba43655bf47dc594b975dfc9684dad1d256444a2435eaec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fcab905dedd2a003f66ea8e630b45a213d7ffa7428a7c527c91305b4a7f08997
MD5 f13cf23700866f5578f910955b8d8aa1
BLAKE2b-256 db4d0a20cba07ac57679af57f5b89c0e6f4f9061821015057a337e57e6b1c668

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 527.8 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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c90d0164145daaa4316b236f0239fa77853e5d7fabe56830adbcc81c5f66af54
MD5 71b2c9658421fbdf2be97f9b6859e390
BLAKE2b-256 c02acd19d585baddc36299c6f66b3dbd10ca071a461a060ce20dbad3d8af264a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fd3d60592094deadb95c4c82bd4d5fbb167801b98116522215c2f664775b510
MD5 71749b1509315bc68beb734070526bc1
BLAKE2b-256 21aa98e3c7222746cb4203236fd3f53a1a0ede514bbb1fe369edefc085b496a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 288a9da370a33bb3d3e2883ce287c0696c5a634b55c5981c08c4417815592b3e
MD5 2bcfa45e68b345db02e6a8723ef7a37c
BLAKE2b-256 e127d0ad674e95e6b3e75f951599754c45da6581663edfa031971cc049d150ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69939f11fcd0af928280260350afb46a5970d8c80b257c29150aefc60d01caf2
MD5 f5fcec7d33c108ba010661c8cc40cb60
BLAKE2b-256 8904bd1b2bb6a4d433f1045713d2c65c131621f8d569aba4d06d2887c441dc34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72758f26351fb57c3e990f2643780c808c57771bbbbb0560252a1bd52fe4300b
MD5 5d56a2e0183cb1224eb19b7c02b39810
BLAKE2b-256 81d0a0765215cfc2a91c1480917a29396d77a78335593c62441ffe51a4e2b15c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 529.5 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 590a31a2bd1d4d08f9bce27ccfe24392f66a752d0752635987a7d7465a940708
MD5 3e9ab175374e84652bc663adf42ec7c8
BLAKE2b-256 d48b4271e1e58476b59e453e361f8b46f6db60b7ceaed43f15b80bc6acbfd154

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75e28f9f589bc59ec77b70a0a18d36b14a2919923dec0f9b13c1c45f0742f591
MD5 41352c31c5c27f59efaafac979d68ee4
BLAKE2b-256 39c9cf86f7c88356faccae10cedf335cb8bb1706cf87f3b6f99add7b88f91c20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cb5b60bf9021f7fc5cabffb08beccdddaecc094a229a4290bfc625152e4f1c5
MD5 a5f47d7d7f502a7cc2e598bdb9269276
BLAKE2b-256 1e605f756c212dae0fc368179a7f8ff22e455ca305d7565a724a3f8582d9d2a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 637c40f545a5962860c0dd1839c4f97835f172536ceae38f927b0cc224602515
MD5 47d6bc9cfee8854ed4f8a7bc02ec24ee
BLAKE2b-256 324944d3afb2fd7f8d7184e57a80c735703be0c829d5dea2b937866b8ba46e95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 648551d20ec8911f4ae3e2e0f1e086cb4b44d95c19e2ef7fcbec7d186313cbbc
MD5 01234b14cbc5b6ef0982d932aba0162e
BLAKE2b-256 bc98d0c3f67909e86c5911a11cfdc1002940fbd30b8bfb69de7ef1356b5f7266

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 529.6 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bb4e5812681f952ce8175c57c586852517bf646ae11e0c511243f64df811e126
MD5 93157cc7451f50ee55c0e96c15b37d86
BLAKE2b-256 5265dd3e5f62b502d6fc560fd52dd459ce993021df9e6325c2c85ecb7abd50c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8058e44af4792369e24d57f53e8de59148d8ba2e2ad067afbf0353839af2ba29
MD5 84c807d70feef61c7442a12a32027df6
BLAKE2b-256 319e4b0ccb3d091f7ff12c1d931543f4d43b595d98099a1250b02220cf7dd174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36aeecf8953556bc00d778c476d3bba3634f0b350fb16fb61c402f857ebc4cb1
MD5 ed61b25799b9a182a19e332b2f235718
BLAKE2b-256 bd4a89d844a575d611db577bb781c00d125d840bae567fdff86cbb49f19dc945

See more details on using hashes here.

Provenance

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