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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.3-cp314-cp314-win_amd64.whl (547.1 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (647.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.3-cp314-cp314-macosx_11_0_arm64.whl (577.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl (597.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.3-cp313-cp313-win_amd64.whl (547.1 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (647.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (577.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl (597.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.3-cp312-cp312-win_amd64.whl (547.4 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (648.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (647.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (578.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl (598.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.3-cp311-cp311-win_amd64.whl (549.4 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (648.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (578.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl (599.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.3-cp310-cp310-win_amd64.whl (549.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (648.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.2.3.tar.gz
  • Upload date:
  • Size: 127.6 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.3.tar.gz
Algorithm Hash digest
SHA256 e99dd4d440b41f496a474434b67d06a44aeb74baa0bcc5707a86f0860fa943a0
MD5 46b972639b080b506ccd830ddebf3984
BLAKE2b-256 4d78da75706f300b499d9b7439cade8699f33cb9eea8c6bae7d7170fa8e0afde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8679a40a8fff0fb2219d1ac6ee5eec84d8773df9d263faf064b294d62e969d93
MD5 856ab41340c3dd0590e3ebfa042c13d6
BLAKE2b-256 5573b09839c73ea4f1dbfc5ba42819cd954693e9789e9c3753693c8db5468da7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9970178381942967b04139b0a80a22df04857f9f8e963ebf29d85ef1c644e4a9
MD5 18ffdf05b4da23e3b0a8f6d652598b0d
BLAKE2b-256 286ec1ba4d027060e43ddd83777bab100e9608bbaff7d46a2ae3e518e0bf9450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 310873bc95852847b95d56dbcb0369fbd470bc674a371b33cdc64e91b6425deb
MD5 e8d2137291856e85c0e35857cb1fe0bf
BLAKE2b-256 e6c7ebfbf34c2d6c44896bec53e9266c08d861cd373a2e8b58efe1b80a559a3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 547.1 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9986ea8c608de324accef8a7c1fbf7917b9ca562393c46ee20b794a3ce5d65ea
MD5 4db0b08b7ab878b417415f36684e1a60
BLAKE2b-256 3bdada09b5ff6beb551740dc4b450665d45676deb65c3c6ed422856817e58b68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ae21c86635b7cb63e721a338ffba6f97166ad886e66df83e2130a16e2bf4251
MD5 697c3d71355c23080bea70ff7185098e
BLAKE2b-256 bd8109c0b607e5bfb8ca0433a341bc5197469aafca228ee3983ad1c18f0830c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20830059a0ddc2c8238c65bf5a4c4f360b35095c5f63e3392e477e921780a908
MD5 018c78b3ce282e7044d85f2202e82f9e
BLAKE2b-256 e535648d63324d1f4e784676df6a20549eb9ed808bc535f182738b8cf0514fee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c925079e4d37a67ea98649e3e5d24bd46ecc9241d85f190cbbcfee9bffa4bf98
MD5 1b3b7e0472985d76021db796d0b370bd
BLAKE2b-256 2cb6260d2ae09996c9d85286ca9f26e0de8fdfde0ea207dcca1063f8ac575eb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03f67c67af0d87d00d4d51e8d70834c467317d6bc6fe2aacb4cfaadf5a3b73bc
MD5 1da157c2fef9be00e4c0d27c3b8e4c53
BLAKE2b-256 0c9f0242df3320f0560931d32ddd29ab6085934833bc7858e6550dc24caa6683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83c65600617bc70f1e24965481879ce0eef4d4f18c290c208f2bc82f9646bf3e
MD5 2b1e62783caaf0d58453cee61640c2ec
BLAKE2b-256 5049a34b176af8b177446786f6eb7d14867f91e24d5791a769bfdd52ac32ac44

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 547.1 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4a01a1b9b072adb7ec013fa22b679fb874b2144a97024d5e730b5a9e2d0a7137
MD5 214edbc0bc744242648bc5c4b63f94ad
BLAKE2b-256 37a4ddc7d2335f2bd945073cbdd32d3aadf993e1a8ef402b476f665ec5456fe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 654c0499d017607c399b8574afe2275d747d00d777f888db78e37c59b72cd874
MD5 64feac52639d95e7f4458bb593a49948
BLAKE2b-256 94753ccaeac4027ce94a0a72cae46787a26dbdd602041379dfc624ae89a29488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcc48a3341377c9efeb6f69bc9fd2f809a99b53d10be69ece7bc0277013f755c
MD5 26eddeb0acda728b4af6e93df544a464
BLAKE2b-256 65abc4b0871bfc8393dd3e88355ede5938d0f81b0d24fb2a8dd385be69b44972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 801a54edc8d848d82dd492116cd1ea7e46b139e42c6f46a44d07ececa31b048f
MD5 c573c426083699dd39a8761cfc6fcc0e
BLAKE2b-256 dc69078f1247f633ae2726f003c4e4ada6f9b9c392a6369d39baa2d856001fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 657f6bab54cf8f5ca2c9e927b501c0f9b1a58a3bfcba2fa4c40a890ecb88eee5
MD5 fbec133ebc32fe91be5ba5414c4241ec
BLAKE2b-256 c95726a0e68627b5d0286cbeff018997534d111fdaa0f5ce198d9e641ed6fec2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 547.4 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e75edb7edad3472cebaa3b4a58d7f0798c29550e447ecb452152acf5975429b2
MD5 db1b8fddc52d96461222e8cf463b66c5
BLAKE2b-256 860fb01395ae62186d91cdebeedc3d3d6586732d55e54978a3b679223313c32d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9df7aa4272bbf71cc562a0f46d1466a6ac9247aa69585aa015774847d690b0e5
MD5 cacba25f61a6c86e654f03917f0f339d
BLAKE2b-256 f1ac40063786c5d3420d022f6acb2fa4dde17556af3b5261960d7fdbaf75dc3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d31e7f82061e01b3a9f63de70457e50c6d8b39492f16e4dad580d4d8e009890
MD5 5a6f0dc924a9f2fd4ac533b2f60e3178
BLAKE2b-256 c07d1104502decad97cd2479281231611cedb5dd4a180a01e6ca5773abc53d7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a875a77e2a16eb072bda12d0aa1e0e6028fc3e59399d05d534eb3f4cf811ee52
MD5 f33f5210b49bdedcafc87f5277854672
BLAKE2b-256 3a51f2230524ba3c211232ad2883cf8ee0c08b3b70477b3fffced48fbc03abcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0cc2074d6b01c0f3f9312076f8f28f6657c8e6199a1b346fb4dc728dadbf471f
MD5 b62c3e098614c93428f5390c378eda97
BLAKE2b-256 848924537ac07234b0fda583eb1826425e36f30ba512a4dc3d6622964ecdce0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 549.4 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a69e477d7f31908c180b5cbff5e2f75929b4ea4ccd8e8a2615bb58656a83bd53
MD5 31a338a4490163e5bc52cf6ae81f5599
BLAKE2b-256 8ccf62eedb8ede683fc14de5acfce72fd99218ae5bf54079d4ba8e19a159cbec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c9c5cd7c8900648ca1993b3406741ccc145ac667b2c2287bb71f19c95f8e4b9
MD5 5868b5f4452ad48890d559c607f9c999
BLAKE2b-256 27c0b13185aa22a4603ce85109a17c4052f18ec1a2e0ba4b875bcc5a20104340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3b387b5de14551f7eb5aa3bd025d9474716a886a25ed44dd0214213c5b1f991
MD5 632c9b49a288d5d014c3d131ab3be3cc
BLAKE2b-256 30fbce5b208426b2f494c9ba6c44fd38b8084fcd25bcbcecaa702089c80bee70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69eeb612e8177e51ef1236a9901994333d179bae66f2af62fc07868c42034bd4
MD5 d16d041bb348a1b56d4c0dbdbef6ad21
BLAKE2b-256 e5b7fc2af9c1257190f926de65baad7c818e1a6b0edf466e2b77c12861291453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06333b959b940a1087262178efec10f68803d3dc5201f3d2da3dfeb8f2852976
MD5 4ff1da720a106914656e4208d8d659e2
BLAKE2b-256 ecf10222698bc5875b8c6604505eb7dab8a0d366706aedc16f751790c881ee1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 549.5 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8fffea63acdecc65e7ee8923f521d8e0547b7ef6b076aac212aa919c380cb29
MD5 a41c954b9936f44e0a4485961df41df0
BLAKE2b-256 25b534c7d48c7e67691d8acdcc57041d87027e6fb20331dab0c450523e4186af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 892dbaf12e979547a444b795ddc5a8f2112d89dbcf9df624035d56d1a53f81a8
MD5 b6a8d55cb131fab86a617ab01bd97ab9
BLAKE2b-256 b088ee42cc460ddb44f2a6e7f8993aeaed2811aed4973bd2ac367eec21a70a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 001107278254ce56027152de7cb7f0faff4c040429a45714ac9b280edb3b6c40
MD5 2abc5289578bb181d41567510467669e
BLAKE2b-256 8c98f1c07312667f5cf165933c55a5cff7de774f829cf435d8b3ccf07d212c0b

See more details on using hashes here.

Provenance

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