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.

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

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

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.1.1.tar.gz (77.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fast_scrape-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (615.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.1.1-cp314-cp314-win_amd64.whl (515.3 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (546.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (568.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.1.1-cp313-cp313-win_amd64.whl (514.8 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (546.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (568.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.1.1-cp312-cp312-win_amd64.whl (515.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (546.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (568.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.1.1-cp311-cp311-win_amd64.whl (516.1 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (546.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (568.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.1.1-cp310-cp310-win_amd64.whl (516.1 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for fast_scrape-0.1.1.tar.gz
Algorithm Hash digest
SHA256 93a3c2c839e727e5973eacaf45a6da58fe914912a11f91b95c3b40ab1cc937de
MD5 fe3b496d24e94974eae8d9286b0a29ac
BLAKE2b-256 9e61ae0b30d7974719604168d13023009f8335c20360493fd4c1419b3a9e0ef0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbf1ed6938acb3698293f586a3b4dbcd4f080739239f20ccff0c9215404b8367
MD5 b849d9431ba2f4f91f4f3179e50a2e4b
BLAKE2b-256 bc66794729084829b20e0654a679a749cb6cfe44b9d9789f2ea04a3d444e9153

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47a6920df166dafb7e62ee2f79305c6d508468d7eb2ad6e163235ce899aedd8a
MD5 93d4dee90996025a5c1d93ffe91156c4
BLAKE2b-256 886304907246bc915f1dfbab4d12a0b333561b353e3792ffa60959c9ad4bd803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e9bf9943f942f2e2bf443d385f05d34b1d81faf197673e44999ff506cccfce5
MD5 f102ef0a6693ae91a1d3ccc18b33ac60
BLAKE2b-256 8256cf0becfe5a3dd6c3001edc707b6e3b16177851abcc075d321b73cfe75da7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for fast_scrape-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1e49b955cde071faa8819fe540884676f0db1c21c9dd0e865795231dfd7d5e93
MD5 dd5f01cf23dd624e8aef8d344d0420c8
BLAKE2b-256 927b078213220db4b2b71217e758bf74e6006c4029fb220c7a6d82773aa587b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f993a7d33661963fa47ce50a447f457252f82691190c2a9561d3e961f16809b9
MD5 5fb9f3390975bfdb1f37a5d19a3eddf3
BLAKE2b-256 2e6c8df50f1bddecbc7bf0a6265a6a9856152183f2820802c10deaed8edc9b27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04393eb56cfa9afcdd38fb7b7d8657e1fe4dab6496a176bd5ef73bad60846bd1
MD5 04b62f283de67cb7bea254179b451cb5
BLAKE2b-256 bf5d486611645335e00892e369dae1812b3520494ecc34323be7292202ff602e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81eda864519185b95fceff3c4db1f7a22a694f9dd338d8746232f36c3d31a45b
MD5 6bae40fee37a63ea0f703aa9f22a7a6f
BLAKE2b-256 ed4a89820f4f7d9cc6714fd0e8bba8f4fafc18575e010e48baff3dfcc975540d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9be04746d90229bda3676019a635712f31b0ba660fd46f432d2d742ce3164cc5
MD5 47904be2b7b3813ff6dd498931404b30
BLAKE2b-256 0ace4122cf8a2d86ce7b34147aa3d105a2f17c9428d54608e32d6aa25a757d82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e364859efe43d2c7e5b1adf5a7d014a52986ac1391caa0e078216f1308f78d92
MD5 dc2e9540c8f80380ccac7fe7b20372f5
BLAKE2b-256 d4f439efbc027cc4c51db190cb43ad3827717b5d691e60bc7b707669b502b4db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 514.8 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.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7799b8e086dbfaba427803a4f31c32b4eaaa0ff10782b302d70ea07a1c26d8a6
MD5 6da0642e2db2b6446e7ee772d427add1
BLAKE2b-256 e6e8f0593aaf6a90b9145f12e1dfbd79c9bcd90940bbfc77ec8d8cdef249ffa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecfe015eb01a4183a35ef36eb485f034a89b3ad65bace17313975ab0f3cd05e6
MD5 cdc716200d04266c1dea540dd5c9e4a1
BLAKE2b-256 bf739e56c100dbe64c6852f7fa86cbb69e06955f3f7da424e4e71172ac2b1e17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5225a3f8cc96ffea66cce8f7a2b88478c7d62fa81fd2532f86e6ae9bec3dabe
MD5 6120fd36ab3524d172e7c9a7bc6cdb00
BLAKE2b-256 af634fb558e00592a2ac8900ab5d20c85a983caba6785dedbe2a545ee660b2db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 365fc55b9bc0f71702fa6b39cb95aed48b0f42442dcd41340b8c9efa741239a0
MD5 51b38d303fde2752a03d194380409c96
BLAKE2b-256 61858fb465cacaecbd89fe475d49ace32fac525eb4048a50a5cd57088a0e77a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c6c6da49cd71802cf642d253eb4f0bbed10d8f63e329bec7cbb507784aac65f
MD5 03cb4c64f218580cc92846ed138fc864
BLAKE2b-256 edb54a96807a9755dd52f419a427f7d5ac54f2789c553c8be05c63b756d45b54

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 515.1 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.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5093acfbb94151bbbd76af3f0c97f51e44055af300f6af39c7a9dd2ce9661efd
MD5 a45bb7ed6f3d913c3d02542500cdf468
BLAKE2b-256 098e8a045297aed817843d9df4fcd72e49f2a4b2273594b35c3b6da9ace2c9ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b2ce7ace4a8d73eb43cfb3ae8653deabd5f3b74eb2566aa919d882ba4f89eb8
MD5 92655e902606ee3284df743cf6135970
BLAKE2b-256 011c551704c8a1a972f4df848035b573e29198b8a8070b49e36f5918cef52afc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24221632ff16bf858a127f2c5da1498cb35bfd0c4dfe0cba38506865e17a360f
MD5 206d8bd084169e0421eb771ddeb7a591
BLAKE2b-256 b17ffa6d95e147c2c143d6400eb550af449c7df71856a4fed696c65bb7097a52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5e0ea90e8df131689701ec66f042111c16726a76ced88366201ed0c0d3ee5b1
MD5 3d82627d5419ce33830f8ebd5ed51eb4
BLAKE2b-256 b90882ec1d90cd4546c2fe9b5684465ccd5c4966efa8c1714080d32dbcd01225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1dfec0c61d62583a5ec08e6af54224ab6a6fb472df579c09384958e04a2315d0
MD5 939ada27e4c5b3c391fb3bfe801f61f3
BLAKE2b-256 47934869acdd9332dbfe10f299779b99fe426b3e7944fecb0ffb4769e37e04c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 516.1 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.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db9315c13e661a8f873536c51fa95c00d084ac375333b6f48529a26580767e0f
MD5 7a4af249a159b57d1928c88ca6bc0cda
BLAKE2b-256 75696351caa38fc0f5214b9e08a669850fc994fe7f9c7e463ebb0b068c2176a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7882339cd1e45279de4cb47b8b09d112c66a480fb9761181481bd856f0ccfab4
MD5 3dc2b7c95f1ad9cbb29d92c875a1fb1a
BLAKE2b-256 752297d586d10a17fd6d7b51474cd876292978ca4c9c13dfde96be33bc148488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ba3251a9d91dddecccd0f6a01c888791efe7fe54f11c758928759f69d3854ca
MD5 9fa7c0092111d2912fa4faf37c81d950
BLAKE2b-256 440422d60adc85b090d290f48e26b444ceae9e95158692a903ecb5b5bb79b2d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00779af3270fd5566e4d74dbf1b43cd6e6a376581760fa100763a8c8710c96cc
MD5 4a7c213e375284dbff1436099ddd24a6
BLAKE2b-256 90b7c935e7d7d4812b0368b0e370ddda94bc13cfbf5610605387066efef7b831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e016c243c70d19b95ecfa36cdd2dc6cc4896c06fe85a4c3376367def49aa43d
MD5 33e35f2ef13e72a926989f2123d7ae5e
BLAKE2b-256 62b20d2bca472e3175184f6052f06d9cd4e0a5c4112ac8f41a10a489b4b7490a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 516.1 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.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7f38fecb05ae8c19158c19b16c54b751f1ec6035f17a91d9f111e19adfbc077a
MD5 4c3f5c9ddcf3794ac659d7f231c666b7
BLAKE2b-256 926a948b3e17c431893e450be07868536e4724a9813bffdaf2cedadf7d6afb80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd205d05eb521bb334a5729066684add1fca69fc564961828e758730dcdfeef6
MD5 4df534a36cd59fce5f5dfb4b7a14627e
BLAKE2b-256 79c854819e4922709ed849afa3c7002a1d306e660460f05c33c481a4e1386d78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fe3c317dab06f0348a2bcef4d53bf7d90c09e464c3738340668663e54642d36
MD5 4b9ba19e358fe91d2849f994192da03c
BLAKE2b-256 988d1d072caac6f1c682be0fcfc621cb4b7e674b1a0b53123a47ca89bdf6abf5

See more details on using hashes here.

Provenance

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