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.2.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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.1.2-cp314-cp314-win_amd64.whl (515.4 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (546.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.1.2-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.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (613.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (568.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (568.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.1.2-cp311-cp311-win_amd64.whl (516.2 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (568.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.1.2-cp310-cp310-win_amd64.whl (516.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (613.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.2-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.2.tar.gz.

File metadata

  • Download URL: fast_scrape-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 2941a13e456299cd834178ea77ebad29020a01097b5e0fe7433bd179eb28d5b3
MD5 940c60c61aad4d9994b024dbbf6067b2
BLAKE2b-256 afaf8dbe22ccdebc5ffb0c6909ce9c0a4aa9d843aac372c5e92bab35d13089f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e030005196f08f310d5d0c569d3c954c199244e47e85b5a76fb4a9944eb158c
MD5 f3c9d31aa192e10ccae3426e426d55be
BLAKE2b-256 86ad4f9759b467cf94c3ba6709bd71e429495fb1c57a005e0a58b1aa9c1f4912

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42b2344987f0e2324d10c9c5d43ddef428fb06ed24936500131f310e74223288
MD5 d51ac795e7e456569e5a1673bf4bf8b5
BLAKE2b-256 d46150dc966054edb5762e3fff4dc36459b3a2fd8f6d591e1bd7109cba4d1bac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ed37065670bebfbe51370426c5837b9287df632033d9125aff106568d521714
MD5 765ed300373a1f89a8c023a8fea99f29
BLAKE2b-256 55cfc7e20e3ecf72b024a01117ce259064b88bb50860f1b1c84e418bfc28643d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 515.4 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 420656bd307a17d00cf9cc0809054c5742c0926fbf293abcb19dcc11ed9d5455
MD5 4803683359eb191da34ac046930815c9
BLAKE2b-256 cb29921784278743a06367999e3435354822a742bf0271d3d23cb663d7d2d300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09bd516a0c95cc3c4daeea8063e9b745635d232dd01198d3779196fa3da06b29
MD5 2c56b1d7800d6aa27dcfe28a25273453
BLAKE2b-256 51298dae1a2c4f2d17e70b855b0ac7b355a7ca13c38dd568ce8a6b773d41607b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff11f571e90bf1a922516dc3ea41610918dd98d05ddbe86b610c809acf269abd
MD5 863f7c28c720566953463b9254b4dafd
BLAKE2b-256 d8272bd67476773d2ed72446e45eaf87d5f51002efeefc5332221a9a285b96f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c038d02569a7a118c15056678e4236ff3e7c189611b5aed3a8920ffe309d3864
MD5 50c1d0474b6c57860728a20734919121
BLAKE2b-256 331a9559869736bb45fb0abf5c2a929041594e3531cfd1183384f449abf34bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ceeb5cc3a5333773d7f92dc13287b3a293ee22d01a792523a6bd1c4ca68001fc
MD5 5a956f5463d7e022cb035f8e0585f6a0
BLAKE2b-256 bb00fa80e2186831f8cc2a5cca5cfa8b87cdf85b35bdb26d69caeeefefcd3436

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daafe3a2e02893a0f3358bc613d3e08519ac4db5032a4c272d6e8ac1fbfa9527
MD5 4b13e71df6eed5e52169aaaeda85f4b7
BLAKE2b-256 eb31874566cddc8d42fb56ee646178c4be3b17cfbd522f43c73e685e2902f31b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a1b13dec855c4f9d869446202b1a14d2cd141dfa886f70f089c70f86d1eb0697
MD5 2f691342407c4783565ffcaaa0716935
BLAKE2b-256 b45f516a6c3c1f11f354c07fa38dc6743029f03bfa30c2296fc6c0c8f89ff408

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60dd4c49d348027f9f16deac625599da121d314f62bf95e72b9ece754fc05722
MD5 33759a352b9ea2452bfbd76ec47c96d8
BLAKE2b-256 5b0e7b2bfc8cf101de8ba3b2024c59409992f21b313a26a7e9b186fdfdd28d71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16e8d7fcc1db804e2e3984ec38f0f166aab59d4f80c56abe599f672e2b096d17
MD5 118a7b500bf6021eb0cd9c4354c47504
BLAKE2b-256 cb056a1d8c0a64a0bcffc4b605549c7e034e5dfc10ae3fceac4e6397a8ed691f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23ce53e9fd0778199a4bc28f60df644c35b2897d5e0a979dfce553b6a3c2c811
MD5 cf306b2ba37b0edc2911350745df33e7
BLAKE2b-256 d4fdb6da2c97d82fc20c29cb1c79095ebc04ab76275e474c09b96b4d452d230d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83d7a5efda7f5a14e1675aad5c3ac6b5e255e20cc2d444f15fc178054b29262b
MD5 7caea6af15cb85f5a922516587df96da
BLAKE2b-256 d7913cf5e56bbccf8ce5ae6ee20c98ffef204c5feefe045780e2a660102547fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9e75e24fd8ae9dffefd062f743096832be2792f39ac4e8adb9a5a5137239f7d
MD5 16e3890f3a18588c604be53348f0b3e6
BLAKE2b-256 976c72e0af2b3caba88b208130c9fcecac1beb3b7628eade60f658266482a4c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e45e89169191499495a7d9e5aad5c6a1726c68667a3ae4f7df72b23e519f605
MD5 7efebfc55d015691067b899a87da9b76
BLAKE2b-256 de38ff42268be3502cd1e418fdc2f0e80a773f826d2f9ee64737806a777ddd4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3ec06c4653830096e7465dff5aa00afdd3078ae446d1c7a6d4c859ff11f53dc
MD5 dcc20439e865ff13f6ff42283ac729e3
BLAKE2b-256 f30bda4cd9bc6869c451e091a2f09489a5b527b645da64b3ee8da29baadb2457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8150bf0fe16ca879aae69106c96fda1385e60f27f756c2bc9282856095a68bcf
MD5 52aef4e171a6fa2653b3e029b47d71b9
BLAKE2b-256 4876a3b5b70bd8a278e3232f3b02ae644328b42ad5226e4629621fe9ffaf23c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 765d01f5e326770c26bce1d11dd75a497593c747e845e90170ffc82de7460036
MD5 c580f4306f38372b400bff906a5a2e9d
BLAKE2b-256 1ebdc5352287bd24fb61f75f2d9cdf32bc59fcbfe3e2382445d824fe8de96bd5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 516.2 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18454d3c0c696f62387d8420386266aa8b4dc200a1812ca0ff5664f2ad994c85
MD5 d631b684fb99a8ee27cf149d70a7e30d
BLAKE2b-256 24b5415db957f9b33d648e0cdf290ee15f3858eeaa1fd6ca54efb8fa18e869b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eaf3552a56dd765565eed5c58d3183b125ea2bf474d74368a54e3df1e7b2bbd
MD5 c5d712f92aeddd16eafe60306bd4baed
BLAKE2b-256 d1cfe4cc0f15ba4f33b37c75798add1cd0117d30561a99515b891d513cce77aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55b36c11c67543db3b064bbeebf10ebdf915e986f60d5ae3a2e9b7c4327b5019
MD5 29874da28a25333d6aa6ed800ec55494
BLAKE2b-256 7a0de6dfebf1da5e8fdb501fd1ece0f44bc92161fc09c62d9feb6a50a0137dfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f19f3f4aba531a848addff483f43dca80ec28c67c4b07c20f75386962cd21a3d
MD5 1db1329af333ee32cb77c6bb79685513
BLAKE2b-256 306423ce721f9a775cedb433780f1dcad5d9ab97797e2bbb5514742c51201ee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e00aa073c681f16ca0567fbafe7ff6e18780e7df032a5503654c26edd4fc70a
MD5 47a5b4012f0247b4219cf88bf0ab69c7
BLAKE2b-256 d53c574ec0a3a85eb3bf1ac076c6611cba637f7fb8393ef98f0d9bba0ac36b69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 516.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.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f74419e26ccd5ebec6738b83fdc7960daff164ddbf5fac683415d1d89fee5aa6
MD5 a90dfbcf6e7807eda38dd9577e282320
BLAKE2b-256 a9785814f7feca4f5b4a284df13cb36bce77c0577d516537705d913e2f07af5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0d39f1da470050db014cb850fdcb3db1bd04fa5e140bc06eb3edc74091bf76e
MD5 27067930028d20a428270d8e5fc291c3
BLAKE2b-256 ab0a2fa9222884fa3f2630a4031ae52cbda2307e765b0c866eec2fb19ae4fa4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80f26b6c19827c42579e5d671440805b4db5d28469290e5ca0b05652c3e0bdc0
MD5 c55f5d39cb8753189083a488552a98ad
BLAKE2b-256 e11d755f050ed80311f8ca88071fc704878fb663ee7a7755f575ee0c306a24a6

See more details on using hashes here.

Provenance

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