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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (631.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.5-cp314-cp314-win_amd64.whl (529.3 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.5-cp314-cp314-macosx_11_0_arm64.whl (559.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.5-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.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.5-cp313-cp313-win_amd64.whl (529.2 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.5-cp313-cp313-macosx_11_0_arm64.whl (559.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.5-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.5-cp312-cp312-win_amd64.whl (529.5 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (559.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl (582.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (560.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl (583.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.5-cp310-cp310-win_amd64.whl (531.0 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.5-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.5.tar.gz.

File metadata

  • Download URL: fast_scrape-0.2.5.tar.gz
  • Upload date:
  • Size: 131.7 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.5.tar.gz
Algorithm Hash digest
SHA256 d90da1b7be20008ef6f8efa30c1693a48d3037bc797b84a67c71f8d3b5c7e7b6
MD5 8e64d7e7c24a685f3fbd7dce248d1251
BLAKE2b-256 da23ccd7e0d63afefdbf4579605b73829e6832fd0e12662ef351c5201cd6bd28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca60177cbbfc14993d7c24f8520accb8d61ab37c5afa80f0c645c36dc292f89a
MD5 31a337ad3a47be524cd46ff6dec5affe
BLAKE2b-256 26fd9ec71b3f3cfea2e9beb7f8938682a25e0b78f1963adc3f61f6ed3c7bc15b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4099090c86b8ef4b66984a92f573e934a3205989c32e13746351d314ff9bac5d
MD5 bd9aa165d8f189d7b21742c1ccbba375
BLAKE2b-256 d102bc7bfac91824aa395aa8cfd683c3c36767682ec4acbf81dc8b1c3c28d182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eefca7369fec819189d1ea2c0700252c3e003b07590ee723513e0ec7ff436fd1
MD5 406b49db6f03468deaf80d534b9138a9
BLAKE2b-256 4c777e2895ccd3a82ba90a4b47b5d6e1d7ea69d36f223dbc9146d342fe6bba8d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6e3a2ee8efabbac50c4e7ed1c17622d8e4361932366b47c89cbba585a7d57fe7
MD5 1c7649fd9a56072d95fd99aab60d1fab
BLAKE2b-256 ddf3539e4ae80677c489c44f8dfb8ca955a0b674da25d9209ee2fe1218493760

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 988eef28d9467a2b6e0f4f605f201517b700b2a1e3b7da23850ee9c62feebe85
MD5 57825fef51371c4dbbf0d8d9bc67162c
BLAKE2b-256 2ed35069e7d05f4df3855e1ebdf80b36ceacdb34a4b6b9cec668f11d43c4e4c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc0372e1d800837adeb04e1c908e297ee4ba1e0d9976174e151223eb8e0da40a
MD5 20b721836cc96efa8dcd99e144d556fd
BLAKE2b-256 57e0a6b4a87898c914dd252cde580b4ca378ec2c9d76379bf9642a536900dfd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddd3fa22f7df4d31ce28e0c9465e7944260c241bdb0d29d55e80a6fbbb7b63f8
MD5 85e524ddb187f201c62a7720c2198339
BLAKE2b-256 8cc173c4d2dc079530fad712462e2d1a4a8505591356f699ebb2a9724f46f79f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfbc27ae1654e578ab35ce9fbf40667861538b8557a5dc3931308bf8947bd7f5
MD5 38530050a0c760b70bbf37b1e76666a9
BLAKE2b-256 dcd5cee894e383ab86e84af3ffa980892b7f47c945f192884db3104030e624dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49ed9dc989cfa40dcfa0e091355637954b596bf4e48c8ca0c96baeb555689542
MD5 e917230791d591076d1e6e1799838106
BLAKE2b-256 1bf35a8d06a39185ab5a2924d5a27fd8c6195db0eb5df3509fe1137ba79d4278

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 963963d1dcc260f204aefdc952aba2369a380c78806c4a69718ff1d52620d054
MD5 252de162ad2a00fdd3985fa30bce5863
BLAKE2b-256 b1192d32adb30ee84a80147cf24183c906aa8596f6c0961ed7aee49c3d97e4db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f287a1ddea8c8147ad4f4efb1b039d46e2bf9e64d4874ca4e710f139e041f03
MD5 d67d2fd9cda7dac94f4702cb1818839e
BLAKE2b-256 8d4991d20702fcf2c634fad36e51e6385f5258e665066f49c84d1319dec9781e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a6bd4e1e9bdbaf52faa72823438aa258a355a3598a40b86615b75737c1d2707
MD5 75701a53fe9172aa34b6d4a0cf47a5a5
BLAKE2b-256 a3ac93bf40913d0cf3f7864c8dbb51eb4da01a3b353a333ae55e3b45289138ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c90009609f9e102f617bb90fddc5c829ae2c7828286f547907544f48dcf73c82
MD5 dac6140a0894357a22b1869b65c3a93e
BLAKE2b-256 dc5818caf17da6e3ae225aba134b0841b444f975d1103c249bf6ea9ea00eb730

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d70df76f2279747cb96d8921c76a935b3dca7978d5a3d5fab664f3c626e853af
MD5 aae1daf549ed04c4c3b337a4263c01ec
BLAKE2b-256 daf0023958f7faf3a1b2b7ea0edad1d796150cbfd0f64379400e615d36b0a4f8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8d883ea2f228d0687f3722a1bf26db5bb34b9718234fb71a154089e57ebe24fb
MD5 fe9e7ba7c9b52e643cbe5c07cf3a17d5
BLAKE2b-256 6eb0fdf1be9b1e68646d345c0e2e7dbb8dec485aacb0606810ed8b4ed9791488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0e8dbcc5efceafacde5460c4fba8d1a6428b5dc276d00cd87e9f3137cae6eb3
MD5 84ca01716377e4431ed422a9c4c98cbe
BLAKE2b-256 fe306ac8cb9b54a3eafdebb0878901742d172b449610db8bfe3983f40a2d486d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 994ec050cec71c07d74e1444e0cbddc66efb06463685d436ad7cec5ce9ce8e51
MD5 55c2b4b8abb978eac9133533d6c1ee41
BLAKE2b-256 3b89c2cec2324958cceba55cad8a571a2d67f40ef8cc2e6445fc10135422405d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db5f33e897aaf1364e26c656222120ce356e3010b635db6002adb78bb295ee62
MD5 f2fa41414196df60d465b1ba829fc295
BLAKE2b-256 67070c073aeec459b6e3c1a9c79a1d6bf24f24a69a0d07d34f92cfdbfe3aa926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 462f861f98daca22d65bcebdbc059503044dca47dbd55700dcb3756ba8e67b2b
MD5 fbae24a5027cd66fb3eee45d2d7010db
BLAKE2b-256 ff5a3cf8e908c08d36b8ce0cc41c0d6ee2dd8f0b879c92e7ffa0b262043c80be

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48c97d2f073e4d3746d956724958c6c5c86bdd57a49db4997c576377295fd6fb
MD5 22de3274546590ab849c49c0c9886a67
BLAKE2b-256 757faed2308abee0bec68c1b0e851a90d173366d5415d46528c72af799f9bdab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a05f19fb8b50c5b446ddaae7be1c13be107f4b0d9c688760405a571b0a40850
MD5 dd6a6e236996b34ca80a260956c32dbf
BLAKE2b-256 08012994b4896f4075b93ccb8c28f20bf8ae5b7a42e7e7079a772cf4c420d2f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b2b46e07adfcebb1af7fefa7c2103a4fa1cf253d3829f15fc13ef95f3e549eb
MD5 b721c8ae00e21b319d78a850dc98ca58
BLAKE2b-256 eab5c5a360829c898a1171bd8e344b2f47c739cd4305b68c9dd6d2ad46199ee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bb2675c7c3aff1bdeed8784405cbfb62b0f7825e6a0cc9d970a67b3a6a86a17
MD5 6523a021bd7794b8fe68c1f4280acbd2
BLAKE2b-256 2c9097a9279e8c555645762f570994668e0167deb5610305fab1dd7a0ce997e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6145797ed5d08967dcf5be411d72674d73120bfdce442d4867bf284d3e0189c6
MD5 b47261f49c7f442852b2be7f2723fdae
BLAKE2b-256 fa1d1959bbd4f767a32df8970acda496e4604c766a26e4c4d9437b9b9b446d1a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 671c239712f66d88131e746cf4e3ed771e859f417f1eb8bf99b179bc6dc853af
MD5 f446b2892d7974694ef24ab91039896c
BLAKE2b-256 cdf40e91c06ce438f19959820172235babf2a58a74f96d3f1045edd75134c560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40c8d55345a09018b6e82cd04dd36dbdfd67b56248ee66c5cb74ddcff422fafb
MD5 58640b20a57404b5c33057ba68ce1824
BLAKE2b-256 0bc6be7be91865e98fb4777326db947b7db9eb904ff74fc4e4fb33c47cdac7c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ae3251b1e02236d9be459506e357d4ac275b28bf61183eaa97fbd5610b291e6
MD5 d2e415e44f370d63cf57821a4529f039
BLAKE2b-256 df7c5b37a13f11891b530c9321909e491cf88b382ea1efdd36084fe095862c68

See more details on using hashes here.

Provenance

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