Skip to main content

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 parse_batch

# Process multiple documents in parallel
documents = [html1, html2, html3]
soups = 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

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.10-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (624.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.10-cp314-cp314-win_amd64.whl (526.2 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.10-cp314-cp314-macosx_11_0_arm64.whl (558.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.10-cp314-cp314-macosx_10_12_x86_64.whl (581.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.10-cp313-cp313-win_amd64.whl (526.1 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.10-cp313-cp313-macosx_11_0_arm64.whl (558.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.10-cp313-cp313-macosx_10_12_x86_64.whl (581.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.10-cp312-cp312-win_amd64.whl (526.3 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.10-cp312-cp312-macosx_11_0_arm64.whl (558.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.10-cp312-cp312-macosx_10_12_x86_64.whl (581.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.10-cp311-cp311-win_amd64.whl (529.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.10-cp311-cp311-macosx_11_0_arm64.whl (561.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.10-cp311-cp311-macosx_10_12_x86_64.whl (577.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.10-cp310-cp310-win_amd64.whl (529.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.10.tar.gz
Algorithm Hash digest
SHA256 917f4aa5da9ccfa7b2cd2aad5e7b6992d77ecb872264aea7f47fbfb96db2bc85
MD5 92bbe7710d9aa59b935ac488df00e4bf
BLAKE2b-256 9b013297030f5dc2c9537b0c9e4dc4d51ee7cffa0782d5d474431faa8b9cb5ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 303f7e53688981a3ab7b5c590a806c7fa71c74ef78bc0ea0d19bf2368d442ff9
MD5 6ea41503b99556e559379409e2ffd1d2
BLAKE2b-256 8b01b4c6fb459d4af888a81589e2f88e9b6f3f8a9b21fe3968d38a9ae591de86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b8ed63a8c63c1f8d1a946973b0a17182fb1c58ac54052fc533f37bde297b22c
MD5 ff65ef8881737efe1126276fcb001bee
BLAKE2b-256 ac74ce694eab40c82b5d7a8df99ccd3644db09ecc6e4749b9798859956c561d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7923d45f3ec358ddbb6546b12af4a1249bb96aa65a56993e62b4df3f3ded273
MD5 a1420270e38b4bc6c2fa59229b50bfe9
BLAKE2b-256 3ddbeb5e2bf1532eb5af3b509c662e201aa4c86dd78b12d700114718bc416477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fc80eac8bd38e49fca8cd76e710f2740a9092e478d3a7a5b203ac69214f4c99
MD5 d439da30fbb1a1531b6258ed5a612f89
BLAKE2b-256 b05695ae96b8743aa32e57b0525fc454aaeb90dd9f85d8dd3bba6d16b6188f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb309d104bb8eaadab0c4909479548fa0e2e991a3399b10fe874a5b33d22f4c8
MD5 8f8d366f3a331e3abf1d53e3c7656a72
BLAKE2b-256 e74b38faeb5c9c2507d89a34f9dd98bddde9bacb1498e4ebe6eb8730bfe67689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 022c26605417286521217a8aca667ecafd036eb45a7518eba1c0f4a461d5e3c1
MD5 90b47290a6353190c5e614f2d548fe31
BLAKE2b-256 58a99fc07a69e67aec96467dff2d191edd32b3e4215bfbf5c27e7142f8af3d3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 48172dfab419d45e7bb8d06ba6936583af0e2e34f2c7f95b541ec9adbe98a830
MD5 bf74d97a4b6f54b77a47ef83a1adc9f2
BLAKE2b-256 ee590ebb3007082fc0f3304ee37aef5d577708fb1251fe9d962b63fb73cd8e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b2590bc970caede6aabadf170264bfba2b0b27c143f6070c50e0d2804031813
MD5 a24798d1204b8cbbeb8d86e5a22b8d5b
BLAKE2b-256 8e419eb87d4ae75c38b01c2539628c429df62e380742215d0afa550bd5145c01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6c3796ea1b00cdd7e81966da8f6aa2b5693b7eefd14727156d422fe9d7806f2
MD5 941a5cb78d9246f3c1266ccaea86b4e8
BLAKE2b-256 f5a48bbcbdbb02efd3b4af84785309e16181b9e275cc7f30cff2ab3a2baaedab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b55970098cd27ee7a76cfbff7729a9a7201f0c61095ab0b09a7c142d7f0ba3bc
MD5 51aa4bd83fcb78f11392d9b04c056465
BLAKE2b-256 9a1d5a57d1a24f9e6bc6c55fcfb85cf8997a6c9221900fafe62b0be6fe98ea06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2858be031a5b7860ca64c234597afdc9de063d2cf8049ca1038144702490c20a
MD5 96f06e79deb9927844247238ce543df6
BLAKE2b-256 fa23a8596e71d7ac220154b88bf146557aed31cc0f973f783b4f86ca6872598e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 edf8102917e07ddd5056a0a61ceb323514ee70d42655281e3e1360a4fecb6aa3
MD5 0666af32772ec796ab51ce9f43940774
BLAKE2b-256 e5d3779321bc4b24ea28fe991cae769bdc6e5469f8a63ca51188d6d6fab8c3d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6750941774b3f49b8d2c2035ee1f13d02f3e3290b925d1cbeb7de8b8cc50ade7
MD5 1ba2d848ffb06b62d915e26c0121e8ca
BLAKE2b-256 92a4d0a0e1ea01e72d56b5391d82494b7137e3b05372f8a4d09e53afdc109ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f49dc7bbf9e2845130664fb088b5e83a6264fce625360d4a7aebbb24c27c151
MD5 1494eeff4f30e3c884694ba400d1db6c
BLAKE2b-256 85a52d88d1b72f05e77787d145dd3dc2967b9b12a1075c8a1718fb5667304691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 080d177b2cb8334ca3db8a56c0b88fa48401992ca98eb74f8d0d4cb3445f5514
MD5 ed29045e9773543c5838a8cceff76ee6
BLAKE2b-256 7fb7081ad4bd968a72d55b52d62d1c46d9c875cc2ba8c89a3ea55c518afd957e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c0256cd9e543ae00cef930cf9029cebadb08442d5d383a04f7530f745afc7b1
MD5 62fa7706b119da42af23510a8babc432
BLAKE2b-256 9094e5ba1fe1fabb7562d585066ed5e321086831093b9baa4f9dbf67fd3b7516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 99a1bf6cdf28ba4d3f98dc08cf1e8a92bd48787a99a0c1be018053153db663a9
MD5 61db43fa2827c71fb417c5d6eb0d9953
BLAKE2b-256 c7c626d92571ef3357f88797d6f9f979ece8c8a3014bcd986f15a9cb12daaed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a282abb6e3cad22e36d5caaaf4f064553481b7472e8203d8d28f56587cbdfa4c
MD5 880da1df262e31c63ecf07e5c4fc2739
BLAKE2b-256 89c129bba91d0cb148cc9620522137917cf7d1abca681d28aae719e7ffa93e53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1f7025d2bf145be7fc5594119fe20cc018fa5fd2587b105ac337c5f4f063c7b
MD5 7b7969e243bc1619c8849e1424926885
BLAKE2b-256 9a52f20e90f6945acacfbf6c231d0c30129b1184ad7a69558bd86d44ab6ea112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc3179098d1511423fed533e39703b438c84e595533b987b8095f3dc20841d19
MD5 18c1f4eb40fba6095cff8122508be99f
BLAKE2b-256 ec023cbe5209bf293f3e1ad2fb0aaff42f04d1e08e6247979dea60cfb719b243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1835fa29ded9b4d8b15fc387661b959abbea4566182486629a8f3e633d620a0
MD5 3552fc5a7f268d4d0ddfb59a4756a2c2
BLAKE2b-256 02882e5709519f9b27c6263f4d8e9248b72329f69cc16b6e41e27b3f6decfe50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 944117c13fc743c494b537c7f8540148dab803428f76cbba0dfcffb166fa5cd7
MD5 f760ed20ea83a09e31dfb2f6461e69d3
BLAKE2b-256 037f14d1c87f58163222a2ca8e62ce78fdda7b9933e6414cdab2bfe2cd993172

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0240e77df7ea6187e6b0cdbfe0cbe8c0a99a7fcda6d16dff2e4952ad21fcd9f
MD5 21bb2432301f569a30b9328391291f26
BLAKE2b-256 d5fdaf04e7f0a87426842730695e6339cc219af3943aef35788f18b69e61e83b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f0ce5a005b5d961f2fb1b0fd96644b979d4c3f6572fc1305d37f0fcc738df10
MD5 8389ae273337a556474256c562a0eabe
BLAKE2b-256 e9d49798061be8d01ba9ff35bf50d34941a5d027d2d6509dc96f522e94876fa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1cb229de56d5b504038daac5a8d20795a6bad12683f0a21994752c644e849b5
MD5 206b69a24836e3403222e9727cfc7797
BLAKE2b-256 15e31602d0d4e4b4ccbb35e81579811f97d1ea8c138ea987cac13d1959c41359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e5da5cf6c6dcd50d8d18e808f7451a6cd65552c5771ae61fccbada4850c1a65
MD5 440b3f4cf1e1376ae60ce9f05ae78fe2
BLAKE2b-256 3736f188271c7a44a63d459d74f2dd8655dd66d15dec21ddf9015f43f3cfaa9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a8af3557f017a9df296150b56eef79bb8e30d5f828bf9189c5ea92c6266f81f
MD5 890451d327334bcd57b6693f1737949d
BLAKE2b-256 1a5f27c0bad0981208adeb2df5a2f8e94813d7d37aba1f38f2f36627d838f557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a405fd9d67927df9387b53dd5418a9261c0238266a1e1ee55d1232f5a42507d2
MD5 fc3e823fe06044dd0709e73cda08a769
BLAKE2b-256 daa0e20fe79248e2dc5b409666cb5f4215582f7b7333b9b3eb8e1e3473bff51a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e808774bc2ae2d97c3eb91a5bcf3cfb0a3b057930ccc277f68d80bf04386acb
MD5 693dc429becfede370a17c0e84939765
BLAKE2b-256 ffa498dd59c123c454ed4d15be6d6f2df5efd6d03bbc9f20f05cbedd833c556e

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.2.11

30 files

This release

0.2.10 This release

30 files

0.2.9

30 files

0.2.8

30 files

0.2.7

29 files

0.2.6

28 files

0.2.5

28 files

0.2.4

28 files

0.2.3

28 files

0.2.2

28 files

0.2.1

28 files

0.2.0

28 files

0.1.6

28 files

0.1.5

28 files

0.1.4

28 files

0.1.3

28 files

0.1.2

28 files

0.1.1

28 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page