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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.1.5-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.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.1.5-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.5-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.5-cp314-cp314-macosx_11_0_arm64.whl (546.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.1.5-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.5-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.5-cp313-cp313-win_amd64.whl (514.9 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.1.5-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.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.1.5-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.5-cp312-cp312-win_amd64.whl (515.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.1.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (546.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.1.5-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.5-cp311-cp311-win_amd64.whl (516.3 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.1.5-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.5-cp310-cp310-win_amd64.whl (516.2 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.1.5-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.5-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.5.tar.gz.

File metadata

  • Download URL: fast_scrape-0.1.5.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.5.tar.gz
Algorithm Hash digest
SHA256 566210ee1ff9872a07f445e4613802b31c04e6c9512af668ec337d32f5f7b380
MD5 66b1b66012a3074a9124fa9f85a34fa3
BLAKE2b-256 1dcef496e97e8bd07595c58c27fe15fb3f4366705762df2f0447890d908db4be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e58a18f5d573c23129aa0aa8a36460885077a6f7a1769bbaf88b1147da142a5c
MD5 553e0a6d7c202eedc91f77bd669c1c6e
BLAKE2b-256 915fc829ff990793691bfde0695dc1119fff40c47ad1d338e96655851864846e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d99561ebb4e29751e10e39e435ee9005cab575c83f7dc8a8d430a9d5c694330a
MD5 f2f9d92040004059a76effea8843d694
BLAKE2b-256 ed9d08626397fc1ce22d27d6e194d64aec2310fc3aa0dc620baf3210b3ac8143

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efdee0702b44b37c448a37f74fbf38137379356a90c25b61f74d2c01a362c88a
MD5 1f9a3868c16d99706d96d0671c27c82c
BLAKE2b-256 4183c7743945f1df7a76a57f3424a0a7f56a26c707a2ee6a118a33ae05f9a62f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.5-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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b28a1b316319a37af4700c9d524c534600b8c69773ef7dbd64c71b72ab463873
MD5 ccb79fb8199e7f056a1c094abc80c236
BLAKE2b-256 ff800c7a085b97b637c0c2108bc4a17164f27a7f299f1cfb8ac53baa92bf1d47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b80bdb67ac2ebd6727d1dcfb789e276c91441f09e10162620dcd0cde43e18716
MD5 a80f8b738eb9418a535d2c65223393b8
BLAKE2b-256 7ed7e6c124bc04a27255b473a5cdd480d4543e1c0839fa35352c19c4da2b3b15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f67b7c7ea2f7ccabb536479f9af04aaf2376f1d9e3781e4eea94d18ee08eec09
MD5 01d7f24f95c7cee3ffea96d3ef47b483
BLAKE2b-256 f0bb341fe22ff72f62c0fb0cfefc480caa6ab2739f6ed9d61242bb119fc2e21e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f49bd825ee3a946b836d9c5416888cbfa25beffc93dd7f68ac485a72f63f381
MD5 b5e292c36f85f4445ecc505c82a78b28
BLAKE2b-256 e675f98bec4136aae66fcc06106f1f96f0fe1180ce09decdd22dcda796be51f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 898ab2eb2a4b32f3a005b58841402f8c8803c52c2d18244a1409488fa4a7e92c
MD5 0bfaad08037895caa7f0d2bab8cd43dd
BLAKE2b-256 f615e85f5de323b305d1c8704ee17662363ef2d9ce8b899e602628e1f8ab3ee7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2783dd2fded6594edfa9a04f93e3499baf1cc080b46096aff07e74867472b2e4
MD5 f11f6e6b1d9a2436d587f7f245d8d23a
BLAKE2b-256 4f83c2c6c9f797d96e6daee5fe66aa578bc56e306b9a920ea3b17a817afb2e76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 514.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fast_scrape-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3419508561d618bb3acdf307defcf264ed01dd5758b1db410d291420eff405a7
MD5 194260439e818882745d2bff7f75715e
BLAKE2b-256 c9c5bcc628e9d827d44f106fed0475de3eabf7faab3e99c62ebe61db1adf4f96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c17a6ea8ab06b6a481c3b3cd7572ef20bf633d06e8e186da3a167c53d2e1452
MD5 883552a6ec445fb40dd5fd11124ff30a
BLAKE2b-256 436d0d0b6a5aac4f35fea2cea19bda76a1010e8be109ae5218c2288e3847bae0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c766bc4d6acf42e735d0f51634a828f6a13c81fa76ed1a8afe7cd646fbc3c17
MD5 5a0f9389be8dee4ca25f0f50322cdb20
BLAKE2b-256 a6fbd1fec12d9540d3021859fa0cf47b39d898a0cc5c2b5019a1377d55b080c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1285c495ba92bd85c1464a774fc8462cf32e02482d421fd07ca655e52c4a4f1a
MD5 184722fc892936dcbc8d921eca0ff8e1
BLAKE2b-256 6b31548b63f70744969590abf353bb406751cdb0f511f3ddc963ea7e4f4a7e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83e554538e6a184f0749b305afeaec88db2276c0d2d077d4427d43fec42c26a2
MD5 9439fcbdf9c5821e230a55087d2a0906
BLAKE2b-256 7b54344b6a6171277d11f42c24267e22184d03a37decba6148b4da55ca418eda

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 02d77fbce8cbfdee8b0d2e5b453a3ef939902659c9170b6ab752198e23f247ff
MD5 0de95c024bc05cdef3d279b9076a01f9
BLAKE2b-256 cd41f74984f32510ed74d6d62a66b203064486ed5b2d64c09b50642b9bd24185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4510c3d0ed632bafefcbffa5246de5ef3cf338e5bcfe81b9a431dcc6a6af06af
MD5 25b28fd6d835087aefe99127b096d5c3
BLAKE2b-256 fa861da17a51e872e389f03986895af17b7a04da7f33629d5837f389684497de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa84c9cf09b11ed458003fb2095f5dbdf76e4cb76be44bb81a4b52ee7e4b12ec
MD5 21bd8181b9df96becffb0c9c1a22942d
BLAKE2b-256 31ed0a2dcbdd5585ebd1ea978f4fe74eef9348e863d19f11b43a3d7b9d577dca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b8768c2983baa761f1327846c247b8ea2e1ddb6ef159fe946f49811f8607fcb
MD5 5e3554584ca9dd6e7021c355a4cf5e98
BLAKE2b-256 b8f28e45a716d622664e61396093277271bb1d99be9101c51b42617d31bb3b91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01bfd0a3ebbcd6046480b4ba1fc1c4e970c2eab6f1ec90cf4e75d03c837a26ab
MD5 160a9416b64bdf68aa492168f1d3ca1c
BLAKE2b-256 5cff9de09ec1e73ab837fb62156bf2cdd5156f9328318eebc88584f2008414e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cabda9a7357bbe345d982692c7dcfe03940d92f76b3c6e797499f8a6cce4b8a5
MD5 27ef575078b231d82c7a24d33a0f0b38
BLAKE2b-256 338912c39953787cac559629ad2b5d79d658cdbdc498b2e5040c363d016cfcda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4726a068d057c2e764b6f291ca5ab8c6188b93f25fcf8152660bba8b39651ad
MD5 d6212ae4e9396362127bab2c72d691a4
BLAKE2b-256 cf7f1c5992fd7338a42881dbc802b4b1af6f211016858b75128f3199e618cccd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7dab25f99aae0137449e2fdd6bc175df14d661f16d7cdf101af06c2e7350cee
MD5 644dec835d780cd442e6df11593f79f6
BLAKE2b-256 f705d795fe981f989e02ee3a6bee7988c2de8277184bdc3434f1396eab7cc5d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c63e4cc96f35bffdbe8f810d94b1b80e238b42095c8a84456bd941e779b41334
MD5 b599d3bc1a398857f78e57dade451103
BLAKE2b-256 2c095a2aea4da30e97a0b07e4b85c4430699d8be266558113f549c169528dd6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 010e50b2b01455d6f21911a804516f9d61bcaf893b00b0d789e230b30b6c21c3
MD5 77aba8bbff73dd8aafb6c7f3f6619a9e
BLAKE2b-256 ab3987c2da7e2c89ea1fb663f187f2687a323523f7cc6b52371931ee3ee0d911

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3ecedc7a16e7b450f11acb10f5e6062ba1f78e2ff73162b7fb415a57183db73f
MD5 3dbb0bc21d1999c761e9c2aca37c5337
BLAKE2b-256 a9811f53b659ec4bbdf538e9e7b418c7d0c22b59a484e803af266a93944f4b97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e97712d865c2e069ee917f5f9b25f9d44a4bf7f2035cdcc2d22a6c889b7bc25a
MD5 7630ff240746a1b439ba298654f9f056
BLAKE2b-256 5d7b1e949a9ec573e1146b3a8de57343ad5f85f410ed5a1579aed2b0041ec9c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09db406f6bb783d19e0dc3ce188abd0e193e373e587abc40fcb6301a3164b3c0
MD5 56973d85d77d1a569507c2a827dda5af
BLAKE2b-256 46dc569cecc7ff3ee23fb923c7993f2726ba9df1e48a14cb43f558f3cf977e57

See more details on using hashes here.

Provenance

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