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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.1.3-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.3-cp314-cp314-win_amd64.whl (515.5 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.1.3-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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (568.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.1.3-cp313-cp313-win_amd64.whl (515.0 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (546.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.1.3-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.3-cp312-cp312-win_amd64.whl (515.3 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.1.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (568.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.1.3-cp311-cp311-win_amd64.whl (516.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.1.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (545.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (568.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 5f9be6b9784736492016ac77c2f7f406c9d8721642c8580c700e27c506bcd1f4
MD5 853b3efed645e64097e563674f432846
BLAKE2b-256 f95105281c52da0f1c320bd417170b24822bb6a9bf9d5a48cc7ea90d6c638b50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7b849687014d64fb5d525ed2a91ee74236bfbc21c97b0a3f2bb9b5c9be3486e
MD5 987368e41106a8ce3915ae2096e6fa5d
BLAKE2b-256 8fae7908214090be2270cbcc5cdc0412432be2f71a96def51e7fdeb883301922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f3e9340436cb2e2e66f5e73ff47aa0cddab90ab213eac5cc5e85b89e9d3f977
MD5 91499dd4e500b56641b2973904688e34
BLAKE2b-256 309521ac931d46ec41a4e25b98de744664738e78270ba026b4103f81386377dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a02ea0e1dc6c34fcdbcc71e12b2a7b93259e8ffbce4b9b03c11c663c2de089fb
MD5 fcf3a9ddbe5f5f9578a13934c00a3326
BLAKE2b-256 77fbd71ad35a15bd1be161032f1d132b38d67dc77b4fac89fd569a44a28df9fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 515.5 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 28f20633ddf17268450d8de9b85bc32a5942f1f41afd1b317d2e8c59c0d294c0
MD5 c18afdb923189d2f01229940546dec88
BLAKE2b-256 98217ffe9d64efbe6087de8cdd8dfaadab74f6456685cbfc4d69890af8c7d2ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcea513cc335e3f6ef2d4a400b81c48f83ea998381e0a5511e14915aba01e9c4
MD5 dd395d6891f0f7f5f0a2781ee4347d58
BLAKE2b-256 053a057d9981d69901404a3b2df571a10bea33ef026dbedecd541fbafd215115

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b39332da4c881eab2056e202ea5641dafdb9971c55718e800e6b5ba0a3e8fa8
MD5 b4e86aba22f8408eb3111ab1aef08446
BLAKE2b-256 6f28498fcd833d8f744870f680267523e173587b2f677c21188022af63ef2406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7aefef8979ad7cd27e2da6cbb6fe9f6b72aecce24f73f5c476fea0b005eaa82
MD5 d886f5bdf6a4ecbf45d5eedf568da20c
BLAKE2b-256 ca8ee5fe9d4900e189a3ce7e6109a005a0aff97dc4b83b4fd32570994239c5c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e77e9d555db1e4abd2262ac0d6d55670f796d38135050c14faa3b89db00e39c
MD5 bed9454aeef3bff26b9be9fe74160f4c
BLAKE2b-256 4b2ec5a9c4990444e722b9a2675a04ee0b248d594cb5b41dfc6e97630fbdc51b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce5a621656b508ca50fef4a83484fc677c917c3b2a787ddd2ad78ff9f759b5c2
MD5 f82bff7b62ee63054572b98692e50909
BLAKE2b-256 9f820af4ad36152df2b66abde1710f75835aa6e0476937e9a4724c3783435b5f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 515.0 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88711548532f70ee15ebf6edf3ef53ea2d71767d33e9a8f8f523c5c612a55b92
MD5 efb9e0bae5788f5e41e50457e24978ca
BLAKE2b-256 9ccb976fb34d11722acc414cae97c0973ca16ef1b8d81371b4fc1982735859f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a5c89a4d0d556c42b751e88fffa7822ee03293c45817b006eebbff6c75d8cd6
MD5 51928bc1f82a9084fb5ecdd070b9891b
BLAKE2b-256 34779a22dcd8d8726dc934cc27ce0ef4a1e3ac6428346b2d7e8c2a7bc2639f2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f2ff4acb7203500720c9b4cd754d03254c87e7d5187520ebf796d5701d2b3cf
MD5 3d8cd4f531bb5fe192dd1060c0ca3d85
BLAKE2b-256 b2fa61ff016f3700f7ef0da69faf7be397843ea74adf89a3454d2d2b2ca4caf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7269e01e14803d892b4095978d70bf55d38399d713454997e1afb2898d026b34
MD5 856d9350db27a1ceb6d795bf74176889
BLAKE2b-256 002421c05fe9389be7a63cc17623e7b4e6397baa5f3d072b03b4d7111e275203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 662b0e6b1bdf39d13677ec8ceedffe311e4c786ddbe4fdf6144c60c7d81f7900
MD5 d625b774fd87bc551b346d62327721af
BLAKE2b-256 ec25ca304831e0544f44c07652a114e025ae5c28e764c7570d525b7106ef67f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 515.3 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4c8ef45b1044684afb19bb9c5480f1ddfdc61ea1f4b9e62c69f879986fe920b5
MD5 58d6d062f715c508b9d0937bbda7a775
BLAKE2b-256 c1bdee65f4e7444fadc16a83214064a639733441198cee6d733045e8cc74abf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0d820beedecedcc0ab9bfb9f8593e34d081c30a60629492bb1673ef262cd008
MD5 e9e5bdcd64085f1e8ca4cf19a1762954
BLAKE2b-256 279ad6aa27d178a2e691c8efbacb5593c47df49d699e200380c591728b916460

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b2bcdd0c02df30f26e617aef2292993d3184abfba92a383460e85eb73a53957
MD5 f50accb6f6851c7e696b069f3ebab2eb
BLAKE2b-256 6ba49f4beae2a5bf666064242e0c039614e44379133bcada7b07d9590b6da3d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daccc841db00c8b68384e280174762d392b7a41a8bfcae0e0638437edb299b05
MD5 989332f729f3a19002c4eff5744c7094
BLAKE2b-256 a0e3b1683a46fd2e7df409cc6edb3209bf34765ef421497065405051bc6d508e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a44a5d6d873dbbd9cf24469770312f1c682764a6426721b3adad73eea34b91d
MD5 c299abd9267e03ee5b31dab07154a54f
BLAKE2b-256 672245002ce71a575810a432047a99a75df04b872d9a9983a9b4591d56a94158

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 516.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.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20b3b87ee85f840b7922ae11cd24a727ccfdd4815477d853a267d8cb83ab205a
MD5 8f21af30ad725be1370dcd8840737eda
BLAKE2b-256 d58da055b7c7d410d465686318987cd726614fda3c5773f36dc02d6679714b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4558c9fccb8dc9b7e01b9c6d4c6f46e44945318386073fe3c33623b9c505e210
MD5 111872293c5a0bd8a4417f2ef61651f3
BLAKE2b-256 d0624c5e63ee49dbeff6c79371bef94d628717a4acc8f9f7cf3e37d56088119c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5a1d06bb9043c01f39967164fed9ed8d9d6a8d9d29b6439165245d8cb1849ef
MD5 1558931dbf5c855fb346c260b36036d8
BLAKE2b-256 6b2d6ea1e1265264cf40261b118a599e1605789caa81b59e6b3cc39d06db9fb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93079d9d2a6805f5281569c23d2cc7650ee9b08a099454106a01a58cd6422bc2
MD5 7bc058cba4ce2d74cd6d5941fb3e8bb2
BLAKE2b-256 1dd01065a7e70a3c80c424a454b1397250b092aa3467e70590ab65e900522424

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eec4bf31fcd22d9c6ce965a4a129214ce8e407b88fa19dc7fca65300a2497673
MD5 668a50be2cee631e386297b693dd68e4
BLAKE2b-256 73d874d0e6abc66fcf6f1dd8e99d135ce8fee3e8696a9fea1efedadd18fa6615

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 539ec9c9fc4e18af0a08be6baf3a13eaf55ef7171c331efb828d909aebc824ab
MD5 f2149be26b2aea3fe7cd60f9b65a0ad3
BLAKE2b-256 e2d48bc63020fd1ddfa433305c711eb2acbe5110e31c48ce474d62e3bbc99a39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 899aacfc08b8fd26f0ab9b4b1ae760a109c15a133520a41f0654e5635aef7f71
MD5 bf8090005f1340ac4d3c5ab9fece48df
BLAKE2b-256 54bb271c4b7a8ceed5b6f9893615fb316effe6d62073eb4d146b21f49c3588f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b885192f51948041985aad5ddaa1db95c87761ea34c3b7baa3c5bda064dc81dd
MD5 dd637575148e92af28f376cf129b1d83
BLAKE2b-256 45a7b9bb14af15e5f860651866f6006d1854ab2cd67125f977abfdc3252e9535

See more details on using hashes here.

Provenance

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