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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.2-cp314-cp314-win_amd64.whl (528.4 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (562.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl (581.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.2-cp313-cp313-win_amd64.whl (528.4 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (562.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.2-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.2-cp312-cp312-win_amd64.whl (528.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (562.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (582.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.2-cp311-cp311-win_amd64.whl (530.7 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (562.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.2-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.2-cp310-cp310-win_amd64.whl (530.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.2.2.tar.gz
  • Upload date:
  • Size: 127.9 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.2.tar.gz
Algorithm Hash digest
SHA256 298632404ee17468bd92c773cfb9b39ab104b9ca458e9249fade75c82566a37f
MD5 510c17023c6005382d71c09f80d100c9
BLAKE2b-256 8fd04ae75579f171856cbbf14b9b18fad0e84f211268fff404e828babf5d17e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b9422071d3971368de184cb9074bca07faae05903c84d100158a7df489168bb
MD5 18ae2948ebf41d20b9550a6ead249f65
BLAKE2b-256 0bcd9acb76dd0d44bf4d6432a7c6be823705be07d4ef0c3bd435b92fac9d9f0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10a73880dc360f59f27aa50276009ba57fe6d6a88b2fbe614d3237f9f854d74c
MD5 3c4b7b1275690b131e072e442a4206b7
BLAKE2b-256 9127504a358e55d2fa9e4242cf156967157aff0326624df6a6d277ef772a2c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3f2c681cd54caa0c8a5d325ccdbe265e9ecc36d97b82005aaac3a84b73bf6e4
MD5 5fc215c4da7f10bfbd0986d98534e18f
BLAKE2b-256 2cabab5e28526e3d3578e8ccc9009d98b38ccb2c70331c44fac1f4f5c8801827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c4d19d370062f0c041c02202ef501615bafdac51cf7f491bbd74ff7ae628c0ff
MD5 a9dbab63b46b2fba168f62de29dc35cf
BLAKE2b-256 1dc8bfc3afe16974763eb31c0861366c2972ac6a88bac6059538901e7d2d412f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8322daf1937ce2c5512f7e133d5bec0070c9a55235ec64194e6da5d81e5fad3
MD5 1f3cf5c56758ac5fd63bc143e4faed97
BLAKE2b-256 dd17cfad2c4619d1f1a6622df8e1556729cda39f633ae56c43b265c3f63ddf30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2102d6242ad9065823da18c79566cc16cc5bc6480d0ab71e21e7e1c04cd522c4
MD5 eec8506568a8e920d6d00b9ea8e412f8
BLAKE2b-256 43fb719e48cb84c62c5b24924346c29ac947a8555c660ed65f6f7b572a5b73e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc373cf768cb569c1a9dd7c122419b86a2b5cd45cd5a75b0f0e314d7dc1f7841
MD5 795563593b69f16bde0862da2a835904
BLAKE2b-256 358af4cb9e257012a74e979f83ffccabec8e7d1135c2786c88f1703b2b84b07d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa3332cb269c770f90fbd19f60b5fc941ae14b51869ea8bc26c9383ba70d1e29
MD5 5af132cfb48405b5c57bd7760e0952dd
BLAKE2b-256 c4364265d42c9292297ce4cb1e92d78e5c348050992c9d138698593e2cbb4cf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efb26b2b41fd002964ef6c06dc694873f14d0738f2a4c5af6425a22bf80b46ba
MD5 2eed06bbcc3a2bff9a0a311f6b1540bc
BLAKE2b-256 f994b464c77b940d76ab845cbad5f0952d3137e65740f5bf2457f73227e81552

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c40405b63a40e51e6482deaad4e4d38ade4591a4e09d669e1a6c333b9f6781e4
MD5 e62bd27eda2866ec84cd1c42280c6ca1
BLAKE2b-256 cd86063d7f45776bca0fc0451223a9b7f0ecab13801af23bb71f4cd00649d49b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ee1141478459f5b706095586e60e275ab2e7456f6340980e05250083ef4b8b5
MD5 5e9fe0e48fdd543a5afbcc779397bce9
BLAKE2b-256 360ba469a3b7042fc4d0c9a2854a697885f09ba511dbce981b97be9f72f68508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e28cf4f0af4622e676d95652fac5fd925977c068113e765db410731d760c690
MD5 d509f983c596675122e4f5cbfb01fa52
BLAKE2b-256 ac44b1aaa5df56711ac750a28afe61fa9602906ae68ab1c576b3a342d3091d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2452b9389f52f2da14f7bf252917084e1207c639fe73dc99f3bcf3cb3f46467d
MD5 4384a6a5d9192a49bd86f8fac8deb0db
BLAKE2b-256 253070b729f0d297ad262cb9a19f75fcf6cec386a88dd7e606a25c288b9b78da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70611966d131382bf20873ee9b1387486b130deb05c29b5254c28db29f1eb04b
MD5 baca4b75f1bc95dc53f8063e9344e318
BLAKE2b-256 263aa46f972ca7a41adfe1282448099b30e4d714a2faaaf19126656d2fabac7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aecd09d8adddfe919c091eb2435393289b908872fe964d33640c157b84b37369
MD5 78515899d356498b09dbd6f64d162bfc
BLAKE2b-256 1c461b9e01af6a02ee27aef66f616d6862c675f0e728db8df92930422dd686d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad0d76e3533803ff12ee52be3df4fcd906fe09ceffc1f90a19a93008fe933455
MD5 f2e2acf519e7e65f8b1a92bce4757f86
BLAKE2b-256 2d06cfcf2da9e9295d5b793e3c16b816480130779664d56c8d71e562111eccb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e82f53648e1069458083b6dac8c5f9dade0ddc9e1330168e56eeb708ce96ad49
MD5 7a6c3a3c260a5e416467475f5ba50e85
BLAKE2b-256 5a115004722ed8f324a3424937790b3f6779fa208b7e96999080a81b3d5fc855

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 544702727454559b8a22ea00fbcd594bef4a03e35648f1e91664b93cb01444be
MD5 3edff2e6191950373c419949c595d31c
BLAKE2b-256 0cc69e70e53dbc451158ccba122cc136d5c78e3f58099eb5ca34d10b5bfd03ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cb77c6de54850a2742db3ad2075f8e2af26286fdc0fc55cfd6b62384428bcd0
MD5 5ac2ace7d1b15e63cc981d7344c9b739
BLAKE2b-256 5348966ca12d847ca920c213aa56b58f70ac2729f1ecd853c2012f5ee1e4ca67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2b75b7d6baa6c40221a882a619bb574234c65a44162e64936f2ae8c027e4ff9d
MD5 350db9a49bbeca426ce566e9be4de140
BLAKE2b-256 4cd638bc74b0dc2f270fe24b9cf731927205f443391f1ca591936ce3d49520d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 baa94525b022323ea7432900f92fc80f3d9b0b0b8266521f6c231ac4b4df927e
MD5 473d8b4924b150ee719636b9cd9df5a6
BLAKE2b-256 3b3d2e4c14867069a0c09cb116356e3f7dbf64ab58ea067a26b024354d47833c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8664d130743a3b10ba95d23a05fae2177b71272b60d85ac577f76e481a18c14b
MD5 b33725ac975f0201e3f17a6ac42f435b
BLAKE2b-256 878e8f4e713adb64f21be39ff8b8bdaaaa50606f3ded76bdf758fa31f88b12fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd2b71fdf1d83cb1fe9f619d06b9ac01a92dae70754aefaa7c0d75b3cfcabdc4
MD5 114c43384b025525f5c536149f422a1d
BLAKE2b-256 036e7b3c3d51bd87a401434d4495f5110e8858ea58d853103f6b2f219fca37a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d024f6eb87a92d6b50b5fe872eca071b8407822ea7d93ed59415f378b8c7e710
MD5 aa1dd21df7e4fe5c7f499cb0a1aa7ce3
BLAKE2b-256 e3fcb65ebfc5d200e5b6373a319b2ab1c8b1b1bb700f9179e758b525d39fed68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 012365ec4a9067bb64781406e12b2d45d7314305b4fae2431247468f3939d49d
MD5 ab561c54b460281acb61238e11a203a2
BLAKE2b-256 3ade008faf7ab34f0dacb232233809caab9d00249b6bf8ae221fd8b19731784a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4cb8202e5260e90837f88170e6bbf7c1638d89d58eea95f8a96accfc399d577
MD5 97b078481b266c8df2bd9404318c7438
BLAKE2b-256 7890cd22fcce0ef3742422910955d0ca81db7d980d10c4aa6cffe1bc57cfb66a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6822eec21317c6ba57ec19f57ff6eef5a7b92de2c1db1cc0a82bc84f744f4cc4
MD5 e5f7d9d59c08f101379a22bd7c76d763
BLAKE2b-256 15752128dd37a227c0a05f3f80c4fd435d5e5cd1c06592cd2c152c6632d25ba5

See more details on using hashes here.

Provenance

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