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.4.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.4-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.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (615.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.1.4-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.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (546.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (568.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.1.4-cp311-cp311-win_amd64.whl (516.4 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (545.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.1.4-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.4-cp310-cp310-win_amd64.whl (516.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (614.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.1.4.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.4.tar.gz
Algorithm Hash digest
SHA256 0b8c961980a8047c408633217dae77cec17564e8f009d094e23ac53209109dd6
MD5 d95532d350dff62a8144577aea2a2882
BLAKE2b-256 2a2fbe921d11a7c5d3eacae5f3c3053276f5acb00388232ee3c0ba1f48c137c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44aa6f5395d3dc1e87b34033bbb00a99898b86f0d1b7a81a666a94dbc09dcd95
MD5 2c0a27b31a367f6ae0a6ee3f3a3cf804
BLAKE2b-256 7258877449249a06f38c4d9d9f47bc66df851630cbc42c891695617a5a1eeedb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb37276dbe8ad64ee221e3ece170aaf702f6e89f2d3860ef780b5df1c74e315c
MD5 d8a82c8eeea333938fa829c878966e2e
BLAKE2b-256 fccdfe724ee46887675323f7d3d88bb3b0d773cff73ff8db74d1656c29fe9af3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b496c33e3ee993d3855c8a3451e056a5ac6bd455e8f33f522c85e2ccecb98fc6
MD5 81ca1e57def13d41a32d9e10488b8061
BLAKE2b-256 51eb00556ab968cf4dc0c4854af61b4bf88f224e6c8f99185a8ed8241e6d0608

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.4-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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7193045ca308e7f4d77259163beea4f62aeee179d2ce33a19b62982dea5c056e
MD5 0c43c61732874b2d9cda145690a90573
BLAKE2b-256 c3ae38aa2d6d2089d0e1222ccba3ab48817b89698bbfe8d8cb7d69f09d70ddbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51528bb1339a2efda4c1f4ba8d50b47cd6503d46c2275225bab068357e00b8c5
MD5 0a1beb1ff2023abe8fd984dfec333bb1
BLAKE2b-256 74d7894c776df452f43eabeee0714dd0b424b4b338cc7f7a6f9589b106900e8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ddf3ba004c7338123220fef8cfab2204cd06c1904ae6f7aea0b9db665db9fa9
MD5 6927411afffab8723a44e8417f3808cc
BLAKE2b-256 68d9bb924ef29955f3d2cb72f9cff7a3b083270a01433a42f298c85060715e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c7eb7228e855b4d672190dfacfed442786e820b7f314cb9c913f4d8c12b424d
MD5 59076cd5b3c0617404a1fae8ecce3cc0
BLAKE2b-256 668f8258a22d3445f80f6289ca0f7e69648ad8f29ea6889bc04edf70d092cba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa560aa621ac2cdf2fb6fb3310c2bfc51d352a2593d4eff4c4b5bb143569cfe6
MD5 9b8dd76ea8405396dd7496eed89726b9
BLAKE2b-256 80e4d7bfc4a6d47154385d50b136e1e0d3959813799a95baef729420537ceea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e97c810f6f439354d9ec08e61f8ed7ac5e17e288f670ce0931480904e88c5900
MD5 22119967662a6df622e74fde64abbf06
BLAKE2b-256 8af1cb03c97639fc8203ef1a80b49ab06cadde2690234ed9d0705728e70f6f13

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8bf18a9ff71ca7dd5e3b31d4d967486d83e10ba4a41ddabc5e5cb1863a8faf28
MD5 a731a814f45a25ff8ca34f65cf88ad60
BLAKE2b-256 d4e1fe1b4a710914720a32568c16963b9b9791503927d18b92c7f22cf6cdae29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 158c512c0d6f43d94c17d66e17f7c1bccdb4aee14caf787b7ff4436fce2f09c0
MD5 38f4e5d16be572e51a0268d5440ff6f1
BLAKE2b-256 9d42c7937dd672e891150b8ef681987a3e3b73e596d59d221a9ff07436c6341f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46979211bc93091f93fa8b8795fc551ff82d2af66ae257bb632c2b89a8ecc5ca
MD5 4afb6f3c4d2b5ee24718a374abd8bd1e
BLAKE2b-256 353870855e35e4911237a2f77d2521849e7a55334693e57ed00bf520a28375a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12575c6a52699a5386c236b72efe79594b45a1eeba24ee266fbd94460999a07b
MD5 53cb5400a810f04adc8a0619e19165a9
BLAKE2b-256 55f9f11545723b3a4a98ea7197f3deb39d26ecceb480c71f13a92ab5739a9e8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20599d7f82aaf3abd0a1cf4a462c6011ede1e0b3c902af62c954667dfb0068ad
MD5 621c8082745d618164d9705103bf80fe
BLAKE2b-256 d8444573cb41eab372f50f1d0feef6e65a243ac333a11f73516b5709a32c5f17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 14ba068b0cdf4310041ab65f7768f68d8612a3ff7139cd161b6949d0eb461a64
MD5 97663e65d37ce88e04baeb5ccf417123
BLAKE2b-256 419ec0c4b3a2efb45901cc63c4421b8105660494a357a3e1b8f9b9d33b2854e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4227578cc7a791cb564409c227f21e6d8bedf9b77f2dfa0a63c088c515b73c6
MD5 7cb8ee41fdee0bc5c29fe152ae2b7cb3
BLAKE2b-256 e331c50ee44aa36e7ca5619d5443400bb67bff7766ab14ee9aa71040ea408d17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0200e6ff9c50027f36bdcfdc9d1badcdf50e4e51559ddf72a931c27313dc99b0
MD5 6a7179bb1917e4619425d49ef08c1900
BLAKE2b-256 f30456fe94425879cce38012ed6dc75dfd8650bfd81427b038e64eba690b37ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5456f0db18adf183141fa009edc23a7e4b3b15d7cd12b8b5d8ec5baa94671bae
MD5 bb9e9ec396b047ea208d4f6fbe4fc770
BLAKE2b-256 b564b4952a6bf47dbd11035f335e5e378c4afa983b507d06a504d69ea155572c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef276274d362097bc9845917bbe29371ec60832ecb531b357ce280b3f336c3e0
MD5 9106c4cdd760255232ac3271d3d00eb7
BLAKE2b-256 f249d64a50015ec93407b0e50fd7e143a3cdf311811294dbb0f75658982d5fa4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 516.4 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 96c2164fc300c7814ae40286cd7f4d9572068f60531196359b6a374539fbbe7c
MD5 ea3eb09c5679f6bfc12dd5c60f24d2c3
BLAKE2b-256 b9eb38d591bc9208838e6604b29aae9ff69cf16fc54450efa00335d0504a247d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d26ab0e1c06f65968aee5f54766f71c99493a79de39c7ff7cef8eb280b92ed6
MD5 927f33f7520033c72e9b332bdf428558
BLAKE2b-256 89bca0dc4eb6a7e9bdc03d78a865b0dc3c18caa38773931b8acea3fc28383159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02210f989eac26e838d46969eb4df51b3c5b69ed5726ac982f03b7df4ea5839c
MD5 4c39e2fa5118b81b4fcbf9c6aa70b995
BLAKE2b-256 17a33c073353fb5143ef9d1794eedbe1158c02a85622e7ff9d59197a8fb7040a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aeb6e15d9ffb8d225f29be5075f983f4eaf3c1bb995132c614284a2ddbc9459
MD5 1d7099df992584744f1d1f7c16a8e85e
BLAKE2b-256 baa115d0332ddb95d11c7eb01f6ce627e49d23cf8d16490b54b005e5072f2340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b891f8c8e10086029aa27d2ef657ed8815f72bb6d2067112dfa479bf1d16cfbd
MD5 e904c3911f1d65be593cccce922eee7e
BLAKE2b-256 5e18316d8658f0ed39a4c0cb51c2586a490ccbd9fbe1141eec0e2648ad128b7e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fast_scrape-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 516.4 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a84201fdd950183e8e85f732d11f8da3d68522958da0e1e8783bfa6abe34b86
MD5 fe8f406b974822b9ced6bda14a63f60f
BLAKE2b-256 6f2387f5092fb416a6eadf6181914e5a7f76ce0b69738c67abd5366ef10b74e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd6f41d9fe868d476076dd4f35dc4b57e5687ed103a0cfdebacc79be0ed178d0
MD5 b842fd3f52349c6d805809e52cbb82f3
BLAKE2b-256 9a924a39ea7841b9457137489508d6f1b7cc118bc4152ad9a9b0f0691dd78cab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50ba7aceaa1ec19618183f91de94752954740d6d3918fa2db6461b6574bc38f4
MD5 57399ae7df830f69372366c1bab9f443
BLAKE2b-256 4bc06ba5b70906206ebbf0d81631465a04ea1fa37b34805b25101e2fc2926c7a

See more details on using hashes here.

Provenance

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