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.6.tar.gz (77.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.1.6-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.6-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.6-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.6-cp314-cp314-win_amd64.whl (515.1 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl (567.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.1.6-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.6-cp313-cp313-win_amd64.whl (514.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (546.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (567.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.1.6-cp312-cp312-win_amd64.whl (514.9 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (546.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (568.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.1.6-cp311-cp311-win_amd64.whl (516.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (568.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.1.6-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.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.1.6.tar.gz
  • Upload date:
  • Size: 77.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.1.6.tar.gz
Algorithm Hash digest
SHA256 59b7551c050264ff1380d4cc0ef9918abf50d3ae59dd636bf048bea2d93290dc
MD5 0924fa8ca354e70188c3ef72a3ff42ae
BLAKE2b-256 76a822df61bfdfbf88969e027662c163f43d48a782fa905a53af44f8c52d894a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45056b752de4b7ac5d0eeed6e92aa010e3f6c4679cbd55b466ce3779dd82d2f5
MD5 ba9817db8621d7314e4309ad5e8e0ed6
BLAKE2b-256 e51a5685ce67bf44f4ff5a9b8641cd1ee2e93f58dd054bea876e8b359b9011a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f30d83abf84e1461312a37b8f1d2ca37c95e0b3ccdf4921f2d74937d4e0da08f
MD5 155686d00d5db33c461cd7f879fdd514
BLAKE2b-256 8981d92c2cf30b4ba67fd80bb6c755313a692515018f6928f9c90bb2642fb52e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e3f14080b36c799efdd1115e8cb54c98dfed99d6f0f63fb3c17071155123548
MD5 11ddd16d6fdb94ffb68f8369e5c2ecd0
BLAKE2b-256 92a973ac961ccc5b408e6585aa7dbf96fcb8d58a4d06a75280628e7ba9eee136

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 515.1 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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f095be0f93c671c47512b2c874b89e7c0793f2d0ba70bfc6ccb41aee02910716
MD5 437b778881a957e97bccabf7f6f8c426
BLAKE2b-256 4f19f3b1e9e298f432b910a1f355a7b87b997ddcce841a8d1e3e7f9c6b56c3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c45d0620d649f7a3c2c747e083f1ddad74fb391fec740278c921aadee2383d7
MD5 7a13fdd12eb8dd759a553e796f892e3e
BLAKE2b-256 e63cb3b239f150038d80b6b989c7cde2aba01339392002f69eac187f6859ad19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93809e7056873d1241ed60b9b5466a2a54287c66a3d8aa66d0e9bd6974c9ca43
MD5 abc7e5f2e88ad5a45eed69251e9da3df
BLAKE2b-256 9424ac498d93b61b7e262a7213d907d41460f662cf7cbad210513cccd049a622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58102ef008eaf59422cc3e49591a4f1529cf3396a88871d2796a66dc1c3adf66
MD5 a8ef449293447382aa33ea20a60c2c1b
BLAKE2b-256 b3191236299fb663791c25e15b91816ff2904a4a553920fefde873e9dbd8b380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9adab18c857640f9ef8d3087f66503a15f33c1d94a46d506a5910bff142afd8c
MD5 458e9e93c512c900f958a4cc62d0c0b4
BLAKE2b-256 84b9a50fe3ccc645bb74009ea12d69f61dcc5a0e1b02eedad45aa92dc898beac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65c1c83cbb9b01e918767fa09db7f5825e881980c6d55f2fa4ccb48d54575c81
MD5 50b62e3fe97bb518f8203f076d58c112
BLAKE2b-256 fe26a70b66cb03199b51e44e31c1c285acbcfcdd5b3b9bcd7becde8fb8656b14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 514.6 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc04f14592274575c128bad96c6229d2f51803b27aef57e2ac397a9d807537c2
MD5 93993def972d7894d074d2453892973a
BLAKE2b-256 01dc002bd7329fbed98547c3163bd5faaa9ca1ac706e80d241f86e7847027692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f0e449cd242b9d35dcdfdf9ba6ef2b01dd7dc2abce373f513f6f352b9a41d0b
MD5 abab74c99b87787292e9bbf7f338917e
BLAKE2b-256 a2b7f9aeddea81adeaa89b1a21b59578c1335f77fa466dfae7eaeab859cc7d90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97953015171d2b37c3899949837abb8d4f83f22f018eb1d0ae867d03a4c7951d
MD5 eab66a8b8a2bde784e61d5feeafd39e6
BLAKE2b-256 40b5cb8d171545856207122fb41e855646b69163b21b5597838d21d9098addbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e510fa1f261b37ee49861b3d43fd6ef739ff290aabd71d18c13cd76349ce944
MD5 368a22a1d1e2465cb11c49d9cce1bac3
BLAKE2b-256 55c229f5e35cc5c18206507e9f0c9f31c4ec0ef479ede788b4cc613b63fa6e04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d32e1a2f5b568829cc75909095d590b58044509ae3e7695074fba535f3cf2c7
MD5 3872aed3ba2d28da097926fdf5d8f5b1
BLAKE2b-256 43a4af10c67cbec4dcc9fb361cf539dc6c2f53138c77e98c55cb7be2422399e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 514.9 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cb589565693ee78c99fad365e927b24eaa5857b83d4bd615d34d704a09baed28
MD5 1efe06e41fc54bb7681b0891f4201ece
BLAKE2b-256 f0773a1ad75af82696096e29cf2e85f0fabb0328dfa5fc1b7fc6cb10f9f9a030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 155fa49e120c7b7b332fbd2b301ee15f64e6dd6a71e94d2e4e7149a708470d6b
MD5 1dd1a9d82b4dcdbc683bf477f6fd7fbf
BLAKE2b-256 1f4f4adffffab62e0f3a0950321aa18e53d3e08b3ba9c096e69760c69c460256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97710ab18d8d47f3f8a380cca59c79433c03f22d9e2ca03765467b43d48eff98
MD5 edc68a553f1ba3e78a30efee92930bb5
BLAKE2b-256 20454a9909622b86575edbbf493894a3186dfdbd7514146e0e895ed1fbedf533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1cd298769bfcd8687075673a538c1c684708e1fd13cecf183e17d7223e31068
MD5 01e7b50e1afa79dfd47603dea6aa2898
BLAKE2b-256 d4bfc506676157c8ab443b4b8d79f44fe0501a5f291df22194960aa0a414f999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6bf807af19eea1d363a447c4ec5fa1d95ddd828b96b4f3039d350e63e9462872
MD5 4dc05c3f65ee08c73431a971a457b9e4
BLAKE2b-256 f92a6c5523a5f69fce6504f98882abccc0393987a07e28e2f81255c7eb3f4425

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 516.0 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca6a38829ea8b59aaa581e2f3c278a15c893d63b1107c5d647af4f3ac06ed91a
MD5 1449fc077701de60b82f1e0dc7b51c0c
BLAKE2b-256 b3059a476c9af974697af748add16cfe8bc6be90e8c91be7ebd0a89f4c85e273

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e5e0429831999b7ecb1eeaf32db058f05e6b5261cc708390a6c5a2260083108
MD5 82430e2790d389771500d67603cb7d7f
BLAKE2b-256 82f23a224faf37992b66789fc171492a63b68f5ca726502cef8f0a9bfa0455e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a02d3c6a47748fbeb40cfc3845ff7223704ad144846c869f758e4b6e59957a89
MD5 bb9f09e1e72b284e139f2ba7a93b9ebc
BLAKE2b-256 136d4921a290afdb2f978822aa24c299cfbdde701663f97550f364af6fa57800

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5704e9a12ec63cb943654f22f66d8ee9d46afef80cc1c044cb573ca1157e6c2
MD5 edcd0af19efb9f9e838b286146346d8a
BLAKE2b-256 fb4d835f258c363ced403606d4f3dd8a3c435b60cd4c2cb542bca7cb17a24288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28ed60eead224251faba9a1c320ec9e5893727a55431744d3dcfc751ce5f7ddb
MD5 1cc58253fd5e1e8f4a8c439c182645ff
BLAKE2b-256 8eab5dd4f12bdb89e9f54e0667019a4adcdf663d3e691951d2f565d40c0ca3e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1055ff06a7b04a17984f8e67910dd53992558efad0eeca8aab58c9c85328201
MD5 5a41c6cee8a33bfba50f89cb73367417
BLAKE2b-256 f4ff4d3bd5352f7d03cf4bc75f079103c18e166c08ca34c915396a5dd990422d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f22d330ec133c0c415aea9457ac00d2153a84cd9be120ec79fac31b984501ce
MD5 e78848d77f5a5dc1e940a9397cc07653
BLAKE2b-256 fdbda7e35467c37e55e83d3b350e4ad9af8ee38f1fd0028aa0002d22ae3d022f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ceaf3fe3a307fb3dc9cc381e5a05a37df5263f263c0f64982ae0210bb0bc8114
MD5 3d5224b86634b151f40be1fa6f1ea4db
BLAKE2b-256 5940fa0c3e8fb0e1ddef96c2574f45716019735a6cfdc5f72a85b7a8f66f8725

See more details on using hashes here.

Provenance

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