Skip to main content

High-performance HTML parsing library for Python

Project description

fast-scrape

PyPI Python License

10-50x faster HTML parsing for Python. Rust-powered, BeautifulSoup-compatible API.

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. v0.2.0 introduces type-safe document lifecycle with zero performance overhead.

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

v0.2.0 improvements:

  • SIMD-accelerated — Class selector matching 2-10x faster on large documents
  • Zero-copy serialization — 50-70% memory reduction in HTML output
  • Batch processing — Parallel parsing across multiple documents uses all CPU cores

Compared to BeautifulSoup:

Operation Speedup
Parse (1 KB) 9.7x faster
Parse (5.9 MB) 10.6x faster
find(".class") 132x faster
select(".class") 40x faster

Built on Servo

Powered by battle-tested libraries from the Servo browser engine: html5ever (HTML5 parser) and selectors (CSS selector engine).

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.0.tar.gz (108.8 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.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (640.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (640.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.0-cp314-cp314-win_amd64.whl (540.6 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (640.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (639.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (570.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (593.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.0-cp313-cp313-win_amd64.whl (539.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (639.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (570.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (593.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.0-cp312-cp312-win_amd64.whl (540.2 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (640.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (639.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (570.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (593.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.0-cp311-cp311-win_amd64.whl (541.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (639.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (570.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (593.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.0-cp310-cp310-win_amd64.whl (541.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (639.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.2.0.tar.gz
  • Upload date:
  • Size: 108.8 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.0.tar.gz
Algorithm Hash digest
SHA256 c57e55c9f08e2252db2fcdcdd989c35e46807184c25b99a1211deba3b3a60ada
MD5 3ba1907f3b087de75c5a42ce3bf1e0aa
BLAKE2b-256 1b9381d3bc8f1a8af0dcb6beaa53034691c87be8ad387ea1d683352f265a5520

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45e33e7f412f7088712f54b94abcd0192a3965cc188039c0762315a399bba927
MD5 85d8494b3b79477ccc86f185eda115c7
BLAKE2b-256 8bf348105866d1faa6a76344ba8324646f228901b3b9ba8b6989ed82a7289218

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa69b024db03184f2dd107b0bb01e50f1f0244a53e9a07b743d9362d2cd197bc
MD5 fdcdf677db87fcfe700a335b0255e39f
BLAKE2b-256 b653a2810047f7a0b86fb1a179029ed109ec47fa34affcf191bf4d5ed8eb9d9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0e459bc522986f178f0a8f39e04493620f3f2fa4473987199aea508c9630371
MD5 9907f53786b667e0a5295be71f3cc5d4
BLAKE2b-256 d1aeba6f1c469e38a4e7db7d9a8d93c5e30139d035037972ac9561807b6a323f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 540.6 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fa2bf8b04559f377a1c3a90d4b6b82e6c28f5f28c00a29eb3f68ef2e655e5c80
MD5 4ea55ce70d11c6e999334fe63e1c6af0
BLAKE2b-256 4638969fd374f31a8a877957f12232061291d542a5b55f9e94327ced613f070d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd7e2b12cf7c57ca9466b1d03c4c4838a2c9e008015eee4b142c37315ce80098
MD5 f781fcb1743ada6b63ed7a2a4af32376
BLAKE2b-256 7a51518578d7b67c291a6984e48af2765ae304c3fc1d2cef4c4a0affefb62f5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cee4941ce89c2d78d1512936b8aa401fba8e485c838f7078f3aaa1e807f4a2c
MD5 42e8ef148e71376d8472d9aa82c6cd47
BLAKE2b-256 8599f82bdb1d4744599114c1285808fc06681b5cd4ac7b6e7aac1e7bee72773c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 791c8845e2ba16202630345881ba1f6d5059cda7ac408b28660ad37bbb9e0567
MD5 cd03bae0a6b9d36ea23d61f5ae6279f8
BLAKE2b-256 32b10beb5fe09360cf2e14f31cb66ec49ba26ef87a03e346d984c14c63e2695a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d60a8bce9ddf86abc49a674eefd4627709af12d20d97e6c2c11c6d4b48421934
MD5 dd5945b03e5cca857308bbf40fa1fcbb
BLAKE2b-256 934a4a5f06f71727f4d868b2236a70e660b0c67a0a845e90b4553d7d08644e85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e0ff3f1cfe61d722a1bdff8474e6b6694792bf630af61e4bcbb0f83f3d31289
MD5 d88b99e662cd15cc4ecb5b218195c959
BLAKE2b-256 6571e81dc3ace390b938650bf5c0c55edb1be4cc881e87826f08894a3aebe9d5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 539.9 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 397000cf9a5430c1a34473a61daf8815028ca8f2955d25125371ad22a5acb1b4
MD5 acffe37e124f6bddae90b32ec1fb979a
BLAKE2b-256 c7137bc96d0e3db0819e0e03994cae8d99f35a80e38e11fd961c70df3610c944

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc79a68ceed23fb94f1f74d18c66040c36ddaf4e2d52f9d4d519ab3ab9b50773
MD5 c1073166f35c07f5a462897088dd1246
BLAKE2b-256 dcbf6df63ff64dcd5879cd2042d10484069dab7ca578d3304723505d057c0db3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf0150d7b7fbf5154d651d92fc34ffe5ae8734b4b7c29af633bdcb6291ac1573
MD5 0ce5e3e9c3e7f740c4f82351464de0aa
BLAKE2b-256 b748b6c237cf8d446596484eb264b5bb7e7cc205a99f09cb18cc8806e32f4338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 268567669fa8d164e8cb409b0480de7afd44eca39be09dfe7958409bd6bdf3b9
MD5 dff07bcab58ec2fb9a1d55090d52d2b5
BLAKE2b-256 5be8deb1038b12cf56f4c6a1c66879d160f5f0e3e9320e90a109e15c7b05537a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 787690ded80db08589fc71e68e0091a8a725a2b8def3b198863938a0792bcdd8
MD5 33cce5710ea5bfcd0a23c624b6145fa4
BLAKE2b-256 622955cf7f9bc81a9ed542ca044f439ea854ac9c3acf1c9ed174199b61192234

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 540.2 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a2e1e20f37298d7b621cce23bf1e689a4490f2e5645d409c8b639dc66f0ae15f
MD5 7b5a7eb99a9bc35f265c0bf3080e64a1
BLAKE2b-256 ef47a2634f6e8cfcb5f2f3933c5eb73d419cc1aef06ec45ae8ef4c31d3cdbd58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a078da1c5bad484cfea4aa7869f1cef1fcb02fbab290d8c1513fd698c111a8cd
MD5 cf56f8151ca5ebb2caad13c5a9929ce1
BLAKE2b-256 ec72027e19eb094e9f61feb655c1d11d87e6782b4a02c7abcb5934e5aa5009b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ca98355fe1a3acf67763121599cf0cae75d4fe2b7b8d88b81004871dee64e36
MD5 826fdd508a8a85323e0301b2728654db
BLAKE2b-256 b754d61e7fcf1350dd00b650558555cf2f6d0cb9aceb6117f27d15ddc24af7ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab0246197fbc074588cf72b4c780b8dd5b233c805f936718e9d4100517d9a3de
MD5 9ad30d543d8253c5a75d7f4552227064
BLAKE2b-256 11a4b943301124a5875a9fa19b96a35a8b3ad104b1422e5b8cfea7ff11e6fff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf42b96baf483bee5018f4532c7f505f21b6a9ed00309cfacec5a3d2fe0b724c
MD5 a57011bad0d9506cad979ab1e8c4ed81
BLAKE2b-256 72b638fcdd51a18e3780eb37d282ec0220708f1b559823cfbde0799ba580a91a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 541.3 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f09184502cccc4e91762f7979146d481b031104c75bd7e67269cd2de6e65b31f
MD5 11b00ea7ad77ab0f20a7cfbe10849e77
BLAKE2b-256 022ba98638f9918692e6937ef62eaf39e801ada8714e32f492e0d10941ca107c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7caf8c772f5207421ce21199054508ba6cfb9829b93128b979130d2645ce8db
MD5 7e204c001dad62f5e04418382f51c524
BLAKE2b-256 447d27dcdd93dd31f8110cab9345abf01a706a34ee9fbdc2fc68ea9c356682c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24b3162f77590708f573513c83cf4b87f6d55ccf94ab3577ee77b0e7df7f2c45
MD5 0168e5fae13a74f9ecac8994eb7060b2
BLAKE2b-256 cf04eaf33f045f01066d3c66953b444df09b212c6c8e5b3110c8793a323a4f79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 252e43a1be3c27409e96aa3c0a567da690e98c229c2f0b6ace81a3c53defa323
MD5 611b94de1513de6bbf577bdcd1c13aa8
BLAKE2b-256 696c9be936e6dad4e7551f7f7b69da1bae94ec6094fe3db4f38f5fdd9e01d383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7beba20787d63f43b7f53537e93c768931fd5c11268559d5ae2229ad9eeb8725
MD5 4e8d9b863d873ed454ad171c703f1ad6
BLAKE2b-256 f776d01ecc5a1ee0263519c39545ceec59e193ce997ff063f90bc5aba3cf5c58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 541.2 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0eb53cf76290d2d1e725dbee299c3d4b559a720724306846fd8dc0b8fa785bdc
MD5 0358cd4360654eb34bf63fb753025954
BLAKE2b-256 083c057541f58b4b2f0a56ee940e18e78c3a1f82c32f082976b8bafe9377d7ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c3a42e86cbcad31dbe9ead0d795bf25c27e46ea22ad0725ca30bbf7d58b11a0
MD5 cbef644b8c2ce03de44d1ecd1f94f768
BLAKE2b-256 19f4ef8a43d934a820020b16a1c81ea9e69e49aa823b1ed3fe5e5b7023b15b04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 841548a1407179f76f4bbe56962f80ce2fa869fb4a0985ab5a9bdab3da0471bc
MD5 3af15ce5f10e582d315c1c582382f2f9
BLAKE2b-256 9af8587e7a753f986246a964a2aeab0c960b314d4cfb4428f71e6fda84ab6eb9

See more details on using hashes here.

Provenance

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