Skip to main content

fast-scrape

PyPI Python License

8x faster HTML parsing than BeautifulSoup4. Rust-powered with 3000x faster CSS selector queries.

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 parse_batch

# Process multiple documents in parallel
documents = [html1, html2, html3]
soups = 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

Massive performance improvements across all operations:

Parse speed comparison
File size fast-scrape BeautifulSoup4 lxml Speedup
1 KB 11 µs 0.23 ms 0.31 ms 20-28x faster
100 KB 2.96 ms 31.4 ms 28.2 ms 9.5-10.6x faster
1 MB 15.5 ms 1247 ms 1032 ms 66-80x faster

Throughput: 64 MB/s on 1MB files — handles large documents efficiently.

Query performance
Operation fast-scrape BeautifulSoup4 Speedup
find("div") 208 ns 16 µs 77x
find(".class") 20 ns 797 µs 40,000x
find("#id") 20 ns 799 µs 40,000x
select("div > p") 24.7 µs 4.361 ms 176x

CSS selectors dominate: Class and ID selectors run in nanoseconds vs microseconds.

Memory efficiency (100MB HTML)
Library Memory Efficiency
fast-scrape 145 MB 1x baseline
lxml 2,100 MB 14.5x larger
BeautifulSoup4 3,200 MB 22x larger

Result: 14-22x more memory-efficient than Python competitors.

Architecture optimizations:

  • SIMD-accelerated class matching — 2-10x faster selector execution
  • Zero-copy serialization — 50-70% memory reduction in HTML output
  • Batch processing — Parallel parsing uses all CPU cores automatically

Parsing & Selection (Servo browser engine):

Streaming Parser (Cloudflare):

  • lol_html — High-performance streaming HTML parser with constant-memory event-driven API

Related packages

Platform Package
Rust scrape-core
Node.js @fast-scrape/node
WASM @fast-scrape/wasm

License

MIT OR Apache-2.0

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.2.11.tar.gz (130.0 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.2.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (632.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.11-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (625.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fast_scrape-0.2.11-cp314-cp314-win_amd64.whl (526.6 kB view details)

Uploaded CPython 3.14Windows x86-64

fast_scrape-0.2.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.11-cp314-cp314-macosx_11_0_arm64.whl (558.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fast_scrape-0.2.11-cp314-cp314-macosx_10_12_x86_64.whl (580.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

fast_scrape-0.2.11-cp313-cp313-win_amd64.whl (526.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fast_scrape-0.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (626.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.11-cp313-cp313-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fast_scrape-0.2.11-cp313-cp313-macosx_10_12_x86_64.whl (580.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fast_scrape-0.2.11-cp312-cp312-win_amd64.whl (526.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fast_scrape-0.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (629.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.11-cp312-cp312-macosx_11_0_arm64.whl (558.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fast_scrape-0.2.11-cp312-cp312-macosx_10_12_x86_64.whl (580.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fast_scrape-0.2.11-cp311-cp311-win_amd64.whl (530.1 kB view details)

Uploaded CPython 3.11Windows x86-64

fast_scrape-0.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (627.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fast_scrape-0.2.11-cp311-cp311-macosx_11_0_arm64.whl (561.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fast_scrape-0.2.11-cp311-cp311-macosx_10_12_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fast_scrape-0.2.11-cp310-cp310-win_amd64.whl (530.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fast_scrape-0.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fast_scrape-0.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (630.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: fast_scrape-0.2.11.tar.gz
  • Upload date:
  • Size: 130.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fast_scrape-0.2.11.tar.gz
Algorithm Hash digest
SHA256 47a4cc130c73ffd8905f75b8aa2a1e4df35d67df452d1c4b4818731254637750
MD5 0a9bdca1fee62b134bcf756eeaace559
BLAKE2b-256 094a143e3f742af699232744edd028d3e35f6838ab3ec1f5ae3ac2c91aedcad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97a3e87a62a43065c1cc6300532ae6f040e9f0941940193b19cd7a9fcd92087f
MD5 99a85f57fa506a5a59efe867544ff6ba
BLAKE2b-256 59934fe52c1a4d06cd5ba76466033729a7721467181d264a6d062b8daad6f07d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f584e28cb91d429361bec7ba0d31eb1180a071e41d6740dac28efa24298c1b55
MD5 e36a28e176880e80a7ec8e5e668f99c1
BLAKE2b-256 9a725ff7a35989c3dd14a98a45494a9dfc4c5dffd1a27cec864381aa517c1be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.11-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.2.11-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e4df5f1ab78628a31777a14b62f4dae5c3e070702b748da2c1635e81e551a3b
MD5 54c0fa8ad6cdc2e6ea41f11a5934afa4
BLAKE2b-256 6234ec8fbaa19de50e8674aad767bbc737d36e73c1fce3ecfa29c2536739b36a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.11-cp315-cp315t-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.2.11-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63667b96191d85d1a11413dc09f2e6d66fae5c4dabf78fb29c225d3dfabc1f41
MD5 d3aa63d07b3e2fa4f7fb9df8cb400686
BLAKE2b-256 33e7cabc80d9d28fdd3e4cbf7a9a062152821a5d1b6f5fd0fbdee01a22c17771

See more details on using hashes here.

Provenance

The following attestation bundles were made for fast_scrape-0.2.11-cp315-cp315-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.2.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c03eb02d3878ffff1380855ec096c19bf3d68040c243e686e1e34084220ce8d1
MD5 b0e1f65e7728b49eb810ed3ac125492e
BLAKE2b-256 e8b0f372569c1178d2dce3086433046f3e0299c68de324027ca7b15422a85a2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ed17c9985ed5de3f4fc5d18bba8f5c74bf5da4492bc17d0b5d5f849fa5690cc
MD5 b5e73869e51762ac451febf30ebf11bd
BLAKE2b-256 aaed9b69891e57cee5c14b336b911c63674705d8fff399cc2b59ba23507cc7e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 77cf127b3413cfae7e52b1f4660ff316e7c5d66162dd56397f33dfa81dbebc0e
MD5 1acd6d6c798c729a1054e93ca4fd6487
BLAKE2b-256 660dbc0279a614f8f4331f49fcb01308f9e670d43b8d96089511006b0720718f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3958f1afee084cceee2d3a402d108ceea0cd47eeb00964c6623ac65ba26a5087
MD5 d51538c5757655da406aae39cc74e018
BLAKE2b-256 e9120980b0999e193ac7942a55a7013af146889ff3a7443dc5a430c44f9b95a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48eec89af1ffa0c4d6efb207331c6a2838e853a69705c5aede5d65c550f933d9
MD5 d2b7af9284d7451ded2364720c56e8e9
BLAKE2b-256 8ec45083d64187f42cea9a2d2a39faf7207dc11231c9fda8778796803e0b1383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f0ee4a671e48563dc954deab1b1b528ca3c49b0facfdc3ac1478660f0e820ed
MD5 12c75bb69f030bfdbe14d9abae223625
BLAKE2b-256 f51ae1c841a1438b70ca0c068da226bea58f3d7a69c24a46e8fc6993432c862a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd6ce4655220bfd06a16314c88929915e86940ea9933a8c19eaf7ef951d482f0
MD5 7f7ff139bcc5df368e3493da1c512169
BLAKE2b-256 2151b4532e5aa2222a9e441db29da94c309827e9195730e4b89a6db5a6e5ff51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 12167d168cbfeb391e630cb66c963a10f821a196bfdbc80b47ebc863def9110c
MD5 7d775df3bb5bd05746ea4a33f577b586
BLAKE2b-256 c71f70b2873a605627f755ecc6a41eeb89e9a21f124d23891f76353cd7641078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f49a6b5c17242d3df98aee674de58d8faf841432b93db49470bc3b5c3145ba4e
MD5 1079dbf17747a2326c20282768097c1f
BLAKE2b-256 52fe551c4ad07f9e22725d8708b99f58907e63b0702dde4294f1027b3eed3f6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 757a8b268015df87bef4cafd74cf6a56a0c1ca9b01909a3e807badd83f5884d9
MD5 9b458087e92ab6489bd7c81c9c16f951
BLAKE2b-256 a4154e128ddf339ce516db5129e081e514a5c4e32d87e84bfc4ea9915c1c0d48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 443a568c27cf8077f679806b80e7e55890090e1da8cda75cf4ad712fcfdbdf8f
MD5 4d64de995ebcff715ec3828969db7e7a
BLAKE2b-256 0c30ec95bdd478bd8c61832e58a16ae37fc4b546ec45fce4824551bafe78ae08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc4538ff0f8a8d7268efe3a9689ebfa96daa5f26a839396815696c89ed809963
MD5 ffba2596440893f0201369761d2bc932
BLAKE2b-256 ac497d2e1b0a6f74f50fd13765c38206168b9df3164baa0481c4319614fe654f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0f47d78de56087a8ca80755ceec98a1bde8a0a938d71ab06bf1fbeca80114503
MD5 1c141bad27676b40c8f392b9f6fb559d
BLAKE2b-256 b7b25d49b08523b280e32a6cdfff55eacc22cb917c6624b46015590a7e9a093e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96afe7893eb0da11d981cb276d87e76b921ded68118934e79c1060cfb22b92e9
MD5 8d03d868e4407a7e268b67944916793b
BLAKE2b-256 2c5b93e24032995cb9840b42369f299f42233f29fb1f4b1a725dd63180663608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af3dc923952bc414be8a469b213ecb2a45fc579a095db34ff218da551a9ad126
MD5 d441c7d440465db860193e8e961ed448
BLAKE2b-256 55c825eeb6d4db16744a7af181088f31f3cd60a5862dcd7c3652b8185f030d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72042d063d5d83b2449cdd1490e6464ec3ac0ee779861113aa85a71b755f115b
MD5 543c55edcf19c185873c98b6440caaa0
BLAKE2b-256 c3ebc7f89c8c667c2c954deeb987a131396aa507419f5d18d7b20a412db3a536

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03f2ed9313dbaaa49e6d95e643b024270e4b01327c41ea0b327576d8816ac5d8
MD5 51def48ed765a7082bf6a0579a32e7d2
BLAKE2b-256 a74b4f33a582c9796d967685565a1bdba5cc83449ff147c7b58ce030b4ec0284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eb957ba8e3cd7a8208144d61871c8f9af2b76f6ece98dcf65a71379657e42f5a
MD5 419b49fefec5e66c1e70be072e9ddcf7
BLAKE2b-256 6ec82de8824be22860d90d0d867a413c195637295433e84de01b8544ac56dd93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35d14584f91a93078768ba585835efa4c9cb4d3ef9f21cd0c3ef2e42b2f94b93
MD5 8b9fc221d8da30039702cf01fc0425ca
BLAKE2b-256 a6f42a32f3813d46b39a9a9e80025cb46e0251e4da59f5020a2a6076a409fa42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e7165c11a4f5a04ef72c5363fb2d311b703227e24c178b91798f4520378637b
MD5 daeae120c6e82d60cbe529c35e8fbdb8
BLAKE2b-256 481c327f58359fc72278f540dde0c797929f49b819ec4f7368e7f3212bc30952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7434ac6af5200f75e00b2bcdcc178c762ad626896aa2cd16e2770581f56fd112
MD5 e6dc34bdcc2c50759f5ccbb4a357f890
BLAKE2b-256 730851df60d677d19ec68215d89168c9b5ee257874a8a2c1f73ae832d6bc5692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8808a6270eaa946e90761571613177f30376bfdea2007db6fa15d55c24f2ac2b
MD5 091671a86182d680ebcffd3741791843
BLAKE2b-256 aeaec5408e73a5e0fa3598338cd5af133fd71f9eb8400cf9cbd45e6c55a6c372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aff2949f4fe1a03e88c07e5d7d7054b6a5d3c8da08b59699e9169ff51be388de
MD5 559e2a2548135b0f388673ec788cb230
BLAKE2b-256 6036e33ed897bc777d9acb513e34947b189b55fdc187c5b117505518425fa373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1da1e0f6e2c149aeca00624ac2735d1bd56b45d120cae6cc620d45afcb578e1b
MD5 1d8ecd487511680b718b519159719a86
BLAKE2b-256 cd222134e24e53d511ac96437c7f2bb972847b8e2215bb536a7ce20cf975a7fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fast_scrape-0.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d171fddd7457fcf819d57e74f83d774fe4b166ad7425a400e2f79c45505ff403
MD5 adba3275c7a53cc3a6749d3ee9c9a803
BLAKE2b-256 d75737a4505abc6040f1dad8b75f0e6ebfb3855661368b413a6d480746c7589e

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

0.2.11 This release

30 files

0.2.10

30 files

0.2.9

30 files

0.2.8

30 files

0.2.7

29 files

0.2.6

28 files

0.2.5

28 files

0.2.4

28 files

0.2.3

28 files

0.2.2

28 files

0.2.1

28 files

0.2.0

28 files

0.1.6

28 files

0.1.5

28 files

0.1.4

28 files

0.1.3

28 files

0.1.2

28 files

0.1.1

28 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page