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.6.tar.gz (131.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.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.6-cp314-cp314-win_amd64.whl (527.5 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.6-cp314-cp314-macosx_11_0_arm64.whl (558.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.6-cp314-cp314-macosx_10_12_x86_64.whl (582.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.6-cp313-cp313-win_amd64.whl (527.5 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (559.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.6-cp313-cp313-macosx_10_12_x86_64.whl (582.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.6-cp312-cp312-win_amd64.whl (527.5 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.6-cp312-cp312-macosx_11_0_arm64.whl (559.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.6-cp312-cp312-macosx_10_12_x86_64.whl (582.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.6-cp311-cp311-win_amd64.whl (529.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.6-cp311-cp311-macosx_11_0_arm64.whl (559.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.6-cp311-cp311-macosx_10_12_x86_64.whl (583.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.6-cp310-cp310-win_amd64.whl (529.3 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.6.tar.gz
Algorithm Hash digest
SHA256 a9977f2deef8d85ccb8187de4eb11e687d5246d8b2c1532b7aff12492312670a
MD5 645ee1657ea782f6d59821a9527aae6d
BLAKE2b-256 6791db5c9388f38a7fc8e88fcdded62f92fb3c892c497aef5618c5015aeb8311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32f6cde1ac87d6a35af5f48e389dd623c4d6bba354c069d04477188da93d8513
MD5 19539fd7275f2a136d2f8a1675f111c3
BLAKE2b-256 aa94e110b179d20aa118bf253d012e749f306e5dccc7751990d551cb15b305ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c9e054d8c8e9861bde4174e7e2c24e4ba03315494c462f427052ef87d60fceb
MD5 4c11b4cd0985107226e91b9cf63c1273
BLAKE2b-256 960bb0b8efcec620c5903ca40071e895374481e9eb32e7f8d3cef6fdc924ed4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3f9f124c5fd12427ef31e056c9df7ff3997b029b2533b2da1a85baad72e52bf
MD5 d3e099dea180a90a12916b9e33c1bda5
BLAKE2b-256 dcb8cc3ae30afe31e51e39cb19769fbf3331d2e9fdb8a471ed11fb947aa03bba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4a6832aabe642c4840ee9910bb601416c6d904ec08d7782846e1c9e4a88a2eec
MD5 8ba1128707a3af29e09cb0418c8f6302
BLAKE2b-256 c3dd81c21fcc11cc2e73187c9b934038b247e43ac0f7317dbfe443195db2e2f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9381177846bc769e228723f21d4c28964267760521b37908f36ed773933fadea
MD5 be69f56e7444db2a62d5f10acfa60c47
BLAKE2b-256 f205a6ad957f7418419c0caf3cd67099d52cdbdcde599ef9e37e89772ac33900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e06ca74f597e5fa1076127b96d4140c134a6d6b71b7f2b6efa7061443017f3f3
MD5 d3254c795d55479ae1be5151f96bbce2
BLAKE2b-256 6f2b8f420e63af1d39d4b958b381e428be7a9b9328dedfbffbff139d3c6ab325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcd4db9043921fe0d989ccbc8328058470b2a2bb74831c5dc0006bfc5f5af5f1
MD5 581ea29a78922e5ae095420692f6535f
BLAKE2b-256 f417b3618451937b5c28beaa46c60d26b53388b688b549a310e1f82e73d04969

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bf5f325ccdc1f972d90d244f4ef8b9cbc855ef41cad95b1ed3f63f27dff74bb
MD5 7cd91a5d9d539821bb04d1388c448643
BLAKE2b-256 dfd857635f9dc2570b563be2559c98542e4e24ddf590638820cbf4b739d62aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e87f0fd8d2cad5c0db972be116ce8735ec20062b3b999796af8b5599e7e73c0e
MD5 c2a730f585fd6784af7e168dee03d715
BLAKE2b-256 883c0db5ce5daa5db78661e48c408ddcfe4972eb62c0785949cb0d8d8622b556

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2ead38b450b457163d36eaf617f8a50323d091efe966a34cc42dc5d010b9697f
MD5 45d68cd22892a3eb07d4efb581f093a1
BLAKE2b-256 b69fa924639e08de6bbb61eccf57a7d60826f088b49efe657e2af41c78927cf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05180f3f4d1c3d0cdb351681b25f0184eee81d3fa8d99599d9d41047ce05f18c
MD5 79a10f0176a93b8d959c69cf91ca8096
BLAKE2b-256 4b2d93aaeff4661f384ec9d89fb162a6d60b443c6accfce816691c79a0cccacf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8e5f28820da893351e2abee7c1e6dc0be8644679740496bb532cda6cca80ca3
MD5 e89ce0bc7b24b238f46075302c7a91d8
BLAKE2b-256 bb551b7dfde5f6cc62369f1258fe6dc10f5fbd9a81b1a49af49dd40e471be97f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d5787dc6741c9a99ae4a0c289b0619ee75eb42a1b7db08294c07461d4f4a5d2
MD5 783e08bf1f2e05bce9b5abd839570ed3
BLAKE2b-256 1acece825ef2c05a8bd867989603aabd0d63347e282696dc1e0855e3de56b16f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2479a345cbe3a46d9a3b10a6dd7bc49b94e89c487534faee52ee2ff586cc83ce
MD5 d0690b8aeb5e609e499872baa725e02a
BLAKE2b-256 2fa18b100260dd124fefa89e4d7dcb329cd336ad2d0369d67a231bc637a0895c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c231d4e0ab6d378c71544b1ece2e0874f98248aa250006791efe1f2f3339f056
MD5 ec8422e8f18ba1102eb6a5e18e721985
BLAKE2b-256 e35ab4f4533e1d8d715ec1b67bbabccf7d618874900bb56a60e34fb0a3b38bdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cff55f7b5a01f5c3c8b0b486e230e23d4cd9767c20f0dec5a9e95e99291757b3
MD5 98aad120b89104f921d2cc1baeaf135d
BLAKE2b-256 e8ea3fc273459be691911bf04fec187c8c630aedad1ceb1243b071c222c35018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce3b31e8bd8d4ee4b10d5a188b05df759ad4d66028f683a8909ef9590241fbbc
MD5 070329bb40e09f796be1a25e84dfdf4f
BLAKE2b-256 f75e1fc11024c0f6c819749666340797621e08f63f53184c3fb861360b3594db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 059378edebb175c93cda742bf688fdccf7736a28398ccae8fb25c51c566359e7
MD5 f31f511fcad2237af824ac9dbf3a8c82
BLAKE2b-256 5e78a083c239a84c32275b8028a75cce1bc0369c67b9591ff1187128a70034bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c8adc0f4929f6782235f5ea00872b0aa0a4151cc6c5a5e8fac084b548e4d741
MD5 b43e7999f97b71effb77e3a288cfd334
BLAKE2b-256 46744b47182c354dfeedc446bf649a3e0db1a50617ae190f8c7b6686afe8da79

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df283301f929be318e61542f78c9b6e4ad3ca64df2c8640a318fc6cecc002b57
MD5 c7dd4676619ec626b85eacd64be9358a
BLAKE2b-256 1fe278d1637f7c47246d64a69cadc0b21a273521703ff56b42591e7f354a6264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35102c9102a6375d1b423253c1021a01303f89a18de5039c761ca8c326260b34
MD5 6b08ba76dd8d9b15babd3b82861b2388
BLAKE2b-256 9fae641aedde990af825d7d720a1e5b051c49c9738a15303f442ae3437d70028

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dfffe8dfcc616dbea0f41a79a5b8d1a0361032ec428960032e5ddf974312315
MD5 fc89023f421a6341734dd3c262af5923
BLAKE2b-256 634602328d27a12061598cfa7720344cbe85e83ff66c03329bf6a67f0b4ddb29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0005bd3c4759c3ad28068527df59a3f389a45f0fe01e0fb3bd0f77a616d84a5
MD5 9b4da7804d0a052aeab2b0c9c7387ae3
BLAKE2b-256 e91f4a1c1999ded32c176e155b6cfed78c1d5aa67beaa161e9820cc3266f0c84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c264ba4dbba92deb80f96b78a0b2b5a2b92f581940dc7e65709fab3465ef816
MD5 af397166db6850c0e396162e812318f0
BLAKE2b-256 351c8d26cb5ddac26b4fd13b5dd84c68dbd5b257c8e3bdfa85f4ca478b57aa0c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.2.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ede48598f27f822292232339dc0a3ea0662a9dfc2b2d8b61456411c2bc3f82c
MD5 121066e503f45a49d22dfecf7a206bb4
BLAKE2b-256 068b1efc59dd537e5ea455ee6c9a557c4af71247082806c0ca29160eb29b3902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3da1028ff54469705a5d53130bca4ee8842a8f4a8cd91426d47a317e3fdc88b
MD5 43bed721e99ce4b0095adf877eb7d6af
BLAKE2b-256 08141881847043dcc09d6e2a4ff8303606578bbaac95adad24f6b39c414a8e07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20c76ba44cd744f62338eb647a4047356385e9cfe5f9005899e7b6385b4f34f3
MD5 00c787129ed7efded2ed437939bfe9f2
BLAKE2b-256 9c3c3c61082c3ab3cf5c7eb3fb7a1deb48b85f502da27e45b6d6889f5b2c2d8f

See more details on using hashes here.

Provenance

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