Skip to main content

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 parse_batch

# Process multiple documents in parallel
documents = [html1, html2, html3]
soups = 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

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.9.tar.gz (130.0 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.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (633.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.9-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.9-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.9-cp314-cp314-win_amd64.whl (527.0 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.9-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.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.9-cp314-cp314-macosx_11_0_arm64.whl (559.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.9-cp314-cp314-macosx_10_12_x86_64.whl (583.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.9-cp313-cp313-win_amd64.whl (526.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.9-cp313-cp313-macosx_11_0_arm64.whl (559.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.9-cp313-cp313-macosx_10_12_x86_64.whl (582.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.9-cp312-cp312-win_amd64.whl (527.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.9-cp312-cp312-macosx_11_0_arm64.whl (558.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.9-cp312-cp312-macosx_10_12_x86_64.whl (582.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.9-cp311-cp311-win_amd64.whl (530.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.9-cp311-cp311-macosx_11_0_arm64.whl (561.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.9-cp311-cp311-macosx_10_12_x86_64.whl (579.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.9-cp310-cp310-win_amd64.whl (530.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.2.9.tar.gz
  • Upload date:
  • Size: 130.0 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.9.tar.gz
Algorithm Hash digest
SHA256 3abd79700600b680a9666890fc456988ea046a913752e8da9dc31c0ea6145b9f
MD5 f167894ece6f58386d9dffc8285208c1
BLAKE2b-256 5246df5aadc9bc279ba7158967beb37b51c452ec668a8da3f1ac57e62404d2d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05a3249c4bfb834d3087e70f1d858d9fab18d0d99626b328a2be01d68087c2b4
MD5 077d4f1f2a9c61a7048d39b2f7e56a62
BLAKE2b-256 cb7f17c2e2a86e0c3bb98e8c41e25787e7bd4848357d3807cdf844b049a0b4b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc037f42c1c46e228fcc09d41b91016bb6b8f9441d051c0b5840152bceded393
MD5 0727dc06e27a85ce73d8460237e3afe9
BLAKE2b-256 e9a9320800b82648b348c36cbffd1ac139e026fec4e9a9f8cdb427234e3ba914

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.9-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.9-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 887ae577d47495f9dd1e9ab75690f476670f1769e11258d08c772c2c76a93c4b
MD5 cf655e46c0642b1806065cfd44defe16
BLAKE2b-256 a2af0b0053325385f47e61fa9be6d63bbe8e0c4adb0c116414353cf102bbfcee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.9-cp315-cp315t-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.9-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e36109507524ef48f437cdbe5441f684a95cbe0b1d1bd817b25060a9e4443083
MD5 4a4a2fa7d48cce02fc8136c7df4f83e2
BLAKE2b-256 9a917643a0b0d036f3474d47863af33856f2391b647dcfbfe09394f59bc733c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.9-cp315-cp315-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.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 645da3133f40b4814f0b8cc9ba014d7c8b61d4a637a3e430acfb26f7cc2e7b07
MD5 70e7710ceb15be241d0aadd1ddde15f0
BLAKE2b-256 2694c1a52465e845a934d52a0d409b40e47d39b4d11a016d684a91949108a093

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a19ac3c077b85826827e6b068f2dbf98c3887eef7b2bf3c3ef7194000ed838f7
MD5 603f1fda60bcf5c702ce4096379c4cac
BLAKE2b-256 a7425927ac5f8f137762ada00cf6f6b83a555a2728158215a26d322cb7b2a9a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 527.0 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.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 43a0684d214dd296846d65b8cff307e63b6260bf9fdf957819ddc1133daefa28
MD5 82dc19815c9070fb7fdcd98c6dea2262
BLAKE2b-256 5280b17e2a5968a609c8c570b932b4f1b4d1ad1064a41213cd483c9a06cacef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9acffaf200b58d2ae541bcc5edd550d1cac6b10aa2ec6c5d2b040ae0fdfa2dc
MD5 7f48bd5156730b657e37ed64a5363964
BLAKE2b-256 bb394e379e7296de5e029eb19fab7b7b391301aed617487b6f3255252e52a21d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36d19100fb2d7f6f3e422a2c14f6a80fe4d8fb34456a506cbb66d09b315de054
MD5 428cdb4c18e239041c4dbf60790ec359
BLAKE2b-256 9e481320d0a1c3b51c029f471f5a5715ecf82263dec581b346abda3e99dde676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 493b9d551fe8235a05b280b07912787eb975b5fa17a4a3d1dc042b182d186629
MD5 1a75eb01adbb5bc6877792481698fe41
BLAKE2b-256 aac6c44c56834f00c22989dced4c540ae69e1d2a3d54e0d715afc6a2fe0e4ef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6220a6926c7838e08f828a08ffeef5434c8b523dde1d9fe1377555ad1f4d890
MD5 e052bd18411ef55943f75f97ae592bb3
BLAKE2b-256 b1e97db5fd6b8ff61a6b36d4a7b42bb7cf9c31b3d3326b4e39668e92b9aeb415

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 526.9 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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2aa7daea8f555880afb51747428053af1456f95157ba65a3402f11f08083258c
MD5 a913411a6569e72bfca1d10083601272
BLAKE2b-256 255e074b0c7a9cf0c1f9756bc5d06a0a3120ba9bef36a683bd4093839879c573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17f520fd48b226a24bfd207d3e9daf9aaf336dc076b075c5391ccef3aec9351a
MD5 87739bc24f9a9a83527a73e7d212e188
BLAKE2b-256 e45b320366dfca1ae5df5f4946e73a206ab2a12218b1b1f759032c5e43f92d82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03776b7b44a7936ed586b314ee64324598cc6febcd5f280d70335851deb8c54a
MD5 fad2fa739d52feab7da2993bea09f201
BLAKE2b-256 98e5d444c2ae3146f0ef5471b8a7ca2b985db051cfca6279fcfb51694a555266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd440fab1ed36e13865717fdc9a6944f53b98f6b0344f56678498df66ce1b40c
MD5 42f051009c285b73924cd8df59100cad
BLAKE2b-256 2925a77108b060362f78624b2eb76d76fe8451f585a1d97b3ac6316ede46021e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0491195dbfaf205c1e64013fa2ce5e645832ba030cbfe64e73ee8817f83cfa6b
MD5 59e32c56a0bf211a574429689bbd8b2b
BLAKE2b-256 959ce59ad0e38f4f4c34451419837d9c0f083b8814a2ce68ef5251430a19c7b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 527.0 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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8659cf39959a2f1af7052f6b5410648d8eda98e9d4b51e47a26b397dde7fe8d1
MD5 046a1c4fbf2e5844c346d9c795396a27
BLAKE2b-256 77f16c5e2f4fb87a543930dd405d39deea292071bb185ac876aa32e431ece3d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba25f29ef77f98318823c061f17d14935f2a01a7caa2d148f94b32a0e2eb8dad
MD5 90e67021e9c9096379b8831b14284100
BLAKE2b-256 7f08de636f132466fdd503a41b5196ebeac7fe553a280e873ad78c0c37914e84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dd0a926ac44c63e69fcfd88843ae3f278edc301be2c67a6ff95126455bdf716
MD5 ac4af0bbd38cd01e11235e26d56d8c08
BLAKE2b-256 cab6b33c1e696833aa4f3d627ee25a94d72e1a94fdec71efe69ce4e1042f2e0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68243a3d6b5a5b6fe1e7b5774166f8816d195c36e813939ae4f612d1abdfbcf6
MD5 4cdb8f9fe026717aee7888e0b5e7ff4b
BLAKE2b-256 9ac4c299455c5dae61c3bdc1abd8191e7651f06a496833a06b58429f83b1c0f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74e572ce71960b125f80ed1641ed3157470eb40133af191f66c181bab9bbff5b
MD5 2c5677bcf459c5d8604af56fa7ea6b4f
BLAKE2b-256 8c59fb209e7aac9156caac43260b7a07aa8fe7d8c6b0492da3aa07babd5e4ebf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 530.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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 69b308be5cd99f3a7390cbeeb2e390ff49028658d4edbd83a36b6a0113290fec
MD5 3b7f5d8294104d43af32a790e844eb79
BLAKE2b-256 ae360b40899326585123898a0c84682906adfad76e1ba6afd19abfa740125b26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 693ea6009262037a9c2b54ee44a236af09dfb4d7b422a32b5b7f315366cf69a0
MD5 2c57b77d40ab40a10de792cf3b4ec3c8
BLAKE2b-256 b3a9ea9c68b0dc913d475f6acea35404db387d773e1f1f1436fe6598976c84b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bc50ff23f5e67d3f4cf916632a0e0637aea000d15d870b65f6e31a0dacb60fd
MD5 230ab0f7a612dc653655840e3529d25b
BLAKE2b-256 440638ac4aeb8fcc9a9bbe5a97f844c34472f6608ebe3f429a34212ec7ea4529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbfcda6a74d2b8f3c5014525aee5a78692076a372c19faf49fa7cd1fb9850dd5
MD5 48ed3583224a5d326fcd8932232fc7a5
BLAKE2b-256 9588394e4897ca5369d491ecb85770db094c511b8eed5fbee9e68ebce5000700

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 637e81cc1c28eb7011d87c6d661e1b658d9605c8693232a24268363eeeb685da
MD5 a51cf80184cf182a2addd9512066a9ba
BLAKE2b-256 29c0d3daaa025ed9a0e62a13aa336d7388b104600d3029328afb14a80b0d200c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 530.2 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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d8734d1d11183924c4b53196e5c67e6deed17d563fcbfe8660bdc3f88a6498a
MD5 8b02b6ed9121f85355b6a95996a583e7
BLAKE2b-256 0d59ac745145b80af71b14527b385e8367da83eb77efd0b7e81d992b51bdad50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 802e12314c2422be59678369b41557a353324a8ffb1b7a433031bb821c2670ca
MD5 a303aed97d6782629a7d291f0de6ca62
BLAKE2b-256 2a2571ab42bf82bc1cf1cfe7b3bf5f1d1327148ade7084bc3318a078ab995ea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c80cdd462ba2dbf3ae0e0ad06284f5cb07c64449a0e930917edbb0f8533de75b
MD5 25713c29050504aa68eb9df07d6e5552
BLAKE2b-256 dbb8367181a31be4b96d01abf0a20d93b175391d2926eef2526e20e80e5c5fbd

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.2.11

30 files

0.2.10

30 files

This release

0.2.9 This release

30 files

0.2.8

30 files

0.2.7

29 files

0.2.6

28 files

0.2.5

28 files

0.2.4

28 files

0.2.3

28 files

0.2.2

28 files

0.2.1

28 files

0.2.0

28 files

0.1.6

28 files

0.1.5

28 files

0.1.4

28 files

0.1.3

28 files

0.1.2

28 files

0.1.1

28 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page