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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.1-cp314-cp314-win_amd64.whl (528.5 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (562.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (581.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.1-cp313-cp313-win_amd64.whl (528.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (562.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (581.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.1-cp312-cp312-win_amd64.whl (528.7 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (562.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (582.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.1-cp311-cp311-win_amd64.whl (530.9 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (563.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (582.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.1-cp310-cp310-win_amd64.whl (530.9 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.2.1.tar.gz
  • Upload date:
  • Size: 129.2 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.1.tar.gz
Algorithm Hash digest
SHA256 d1406df64801294b05db308ba2d89da6a83f8d74807b592ed4a32c967642f181
MD5 087aad41043584e62c6c11d8fcededf0
BLAKE2b-256 e9866721f40acefd231f563b420ce0e65cfb77916252d4ab2c835d2c90972bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c59015905dd47e9aa81e7778302cd4f91c923c2cae2acfab01f3d382953e4709
MD5 276e5b67d85e734cd0211ea7e3ffae72
BLAKE2b-256 f05fbe49d6ea3fcbf276df74470b720aebd1c57487a13dd5e47da03834dfb272

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2754e83bc97d94580a2a1fa8df2cbd32fd3555fffca432d82ddf36b1fc0dd6ef
MD5 8ac6ddb212235fda72fc3b3e8006ce9c
BLAKE2b-256 4089a589fc3e5c74a91f1f6ff232e8992dd906b85de7ec4086ac7818165fc4de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2012d5d5e2ce71ce2f45c528bbcb7de456017ab89f0694fe39ed77bcd7e45f9
MD5 0253244ff4b045a62164e91c43e239bf
BLAKE2b-256 156adf005eaca6fadfb5b8e0b685add21090d7bc26894e3bcfdca22505049edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bc779e8bc2a4479141521091e9276f508f03675a6c12bbda7df905c97701264d
MD5 b0fa3df961595fbce3fbb044e80259ca
BLAKE2b-256 70ab54558e61f439ef5df5307ee2b0053ca83abffd93a2f94c9a2b3c27473c50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efb0b76d5784741bb40162d6019f13b098f0cec3081dc42fa3392f12add31078
MD5 157ed48d440f35f1135dbf3f0643e525
BLAKE2b-256 c9d4723abe6280e23f52314c16de3f5f4621e629f931367eaf6b1e5513ebb063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6cdcea41a5ac8eb3cc91693defcf9f8bece4a225b4761f7967058e74cf4b720
MD5 d8cdf80ea593a854bd85a720ac59e878
BLAKE2b-256 36c2c575c907ccc60397093e503c690e2a42cb4daaf877ff75cfe5fd7b3eab5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12053a8a72708729233f8b472c9f9f4d4bd44ec9c77101a5808f2bc374893cb9
MD5 6fb9bb6c71d8cfa20eb36bd34cbaedba
BLAKE2b-256 117afe2503c6d1311baaafd33d8835057fce2bbf2cdf361e8fbd1d6dfeb16e6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b884d40c7282d17e1817abb5d9dd44fa11d8a83db868f6567433b4bde91aa83
MD5 d750406f8dad5d12e01c95bc63f1b9cc
BLAKE2b-256 537a419383b1cebc137049f4a910b6226e3314533fe91b0bad555d519206836a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05b50b06ac8f1e0a046628b1c43cadd9ea19a925630f45f82dad7ab4186b2cc0
MD5 31137ebcf5dcb685c8b290e2fbc643a5
BLAKE2b-256 1ca1c342e6368ed8678a612db97c88dc954be1878396e8230e4240ad9ad781b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eeebfdf06ffa254e957c21ff25594aac284587d5bc0675369d11a09d4ba9d936
MD5 91e513a5afb2eb23a9f1587e7df15cc5
BLAKE2b-256 cb5db2a5df2136157363e2522de27d7734aa8c35993a6b7f331184a893505811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a65d49adf7791a3be447f11b4adf1fb463f5e963db0c5c50ea704c197ba73f0
MD5 cb4285ae5903d84e1ca7111512ff14b7
BLAKE2b-256 0b709c2956cc9551e3476267e35bbd296e994e71cf6b2b6dee077b9db4cb28cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 268ad35da483f693af3b62e50325e35f49acc93a08b23dd9cee4f1a5b315c2cd
MD5 f55aec31cf4f23a4e8b9077eb5a02e92
BLAKE2b-256 13e4d24c12da937b361f9fd729061a964c32699021f33a618141ea66cd8cf5a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1260151f21d8b1b8cb9bba0a3e922f64451da4e993d7181bb687a0f7477e07c
MD5 defde314c4396f41272b936437774551
BLAKE2b-256 0a861a6dae817c91ccec51a1d4d0d0ba183cc0094c07801cf2250fe4bb7f9c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a752166dc3e187fe13e2198bb253eb1d1fb81dcfc527def3945e9c7e8e51a48
MD5 6c449e2548cfea0e7e65a0dd43ebd96b
BLAKE2b-256 fd65f028a4c5fc5d9ef634cba4f91388e5a99f413861cb5030166b2a4e90f8d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 766f433e99ca37211c861b863a2a2ac9f3516ca205bc1d37c272cd20c35764d0
MD5 008605564b44b51042cd41f074d8d72d
BLAKE2b-256 e803512e22d32f21de1b9dc14db3f422e167235e4034f67a45946010b8d76be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8b06c5146e12e4542279c0e6e3065dc96ab15dfeddec0c57210aec3e946ec67
MD5 8b0327ed005d9cef17c430b822a6f701
BLAKE2b-256 e132d52225fd11514028ab80fdbcc5595ed1dda7c4b4ef1795db35437b922d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5fa06e07ba6f9a99bd59c78b4a865840c674d6fe19c0ecba63d3ce16b964fe1
MD5 6c34596a32178659bf75cc46e85d3452
BLAKE2b-256 b58be3520beff0b7eb2e731b51cdf3eb426eaa34b2dbd6e026e0228b6db6315e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b59b214ed8d953d78efd4b61de890f89cbab6ff1e5e2459265189bf3e1bc29c7
MD5 33bb67a12ece67a27c3190cf52ec2e66
BLAKE2b-256 1d9833a64922ba4ba4febe892706df4d9073b397e92870e2a7f26fe45e00b0bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83702cab94806c0d46027e521fb486b5bc1849478d834c2c4d1f5929a1da8596
MD5 c118b7432bee1d5db8b5c45bc124951a
BLAKE2b-256 54f0df8a2a1196779c6005c17bfd6a88edcadd3483ba8eea6f50e2bcdefec2e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1de5eff780ba4c8dc098c885d52b108c6ded0149b606b7f231f6a03c93b263a7
MD5 90d1bca3b061102de367d2a60e5a35a8
BLAKE2b-256 63b8e785a97678dfbb4ac3daf0587d671485c3e641ccea3367b07018d3f30f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22385e9519c54ad59af2bcbe1fd0d85aa20fb6bd171f0d934803ac53b5659823
MD5 e4ba3ef18a82786e589fcbaa34455710
BLAKE2b-256 01d0b9e730671ddb700eb8234b9f4952d396727a2ba6fdd42a4a1acab47338fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d01a130d5c04b43c0ee0bfe0213ff0aec1d6cd7d53a85fc447d16727d20e212c
MD5 78434c45bffdab69a3a98cc8ed9ef5bc
BLAKE2b-256 de6411f838c2afcff8a2f6566328b4f6ac0dccebd11247318e5e73532903af69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93bacfbea16843f28bf335108b78c3d94dfdb8d0b880092ae1f59f2e674e3b9f
MD5 0a51519fb88b04259f06d936fd74dbe2
BLAKE2b-256 d008181a8d75daaffe1d6a5f5da7b3c9c1cd2ff50b27a17511e4e13ab6c375df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbbcb594f1fb7f664d4be34f6a758fcda5d67fb3b8bf9f914226ec1a7fb397fd
MD5 385153f4b697365d0b4da46b73f6da2a
BLAKE2b-256 f2b609a7f52e932ae82ef141fb65b91195c0dfc0e77124b6bea2a9f130702956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57baac438a454d5a8bc21478801a44d5e1e48a223683bb4351926251431f18cf
MD5 e9e03825fecf312788f1f718f5dfc33f
BLAKE2b-256 acea57d575f131c8e9360112b9bb96dc2dbcc89bb4e5194ab95ed12834896d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ad8c614d04164169a67b6bb02bb1177278202f6987496e4affb2b23e521a59e
MD5 42cfebf5bbe17bb4151bebf7962da635
BLAKE2b-256 cf77ef433d23450aafb5df5ea8e4e8db294d467a8a90688564686d5e69274a95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f63698e662deef51a1c75b8480049e8716199782952d1166dba6cb5d9ef43eaf
MD5 4aaa8f1295c610400e1fb941ae5f1e94
BLAKE2b-256 0dd21f954c2671c41d8b24a49cb3e3be69b589dee138f9453e3c3a7da32e193a

See more details on using hashes here.

Provenance

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