High-performance HTML parsing library for Python
Project description
fast-scrape
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fast_scrape-0.1.2.tar.gz.
File metadata
- Download URL: fast_scrape-0.1.2.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2941a13e456299cd834178ea77ebad29020a01097b5e0fe7433bd179eb28d5b3
|
|
| MD5 |
940c60c61aad4d9994b024dbbf6067b2
|
|
| BLAKE2b-256 |
afaf8dbe22ccdebc5ffb0c6909ce9c0a4aa9d843aac372c5e92bab35d13089f6
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2.tar.gz:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2.tar.gz -
Subject digest:
2941a13e456299cd834178ea77ebad29020a01097b5e0fe7433bd179eb28d5b3 - Sigstore transparency entry: 832015098
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 614.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e030005196f08f310d5d0c569d3c954c199244e47e85b5a76fb4a9944eb158c
|
|
| MD5 |
f3c9d31aa192e10ccae3426e426d55be
|
|
| BLAKE2b-256 |
86ad4f9759b467cf94c3ba6709bd71e429495fb1c57a005e0a58b1aa9c1f4912
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
8e030005196f08f310d5d0c569d3c954c199244e47e85b5a76fb4a9944eb158c - Sigstore transparency entry: 832015114
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 614.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42b2344987f0e2324d10c9c5d43ddef428fb06ed24936500131f310e74223288
|
|
| MD5 |
d51ac795e7e456569e5a1673bf4bf8b5
|
|
| BLAKE2b-256 |
d46150dc966054edb5762e3fff4dc36459b3a2fd8f6d591e1bd7109cba4d1bac
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
42b2344987f0e2324d10c9c5d43ddef428fb06ed24936500131f310e74223288 - Sigstore transparency entry: 832015166
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 612.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ed37065670bebfbe51370426c5837b9287df632033d9125aff106568d521714
|
|
| MD5 |
765ed300373a1f89a8c023a8fea99f29
|
|
| BLAKE2b-256 |
55cfc7e20e3ecf72b024a01117ce259064b88bb50860f1b1c84e418bfc28643d
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9ed37065670bebfbe51370426c5837b9287df632033d9125aff106568d521714 - Sigstore transparency entry: 832015100
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
420656bd307a17d00cf9cc0809054c5742c0926fbf293abcb19dcc11ed9d5455
|
|
| MD5 |
4803683359eb191da34ac046930815c9
|
|
| BLAKE2b-256 |
cb29921784278743a06367999e3435354822a742bf0271d3d23cb663d7d2d300
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp314-cp314-win_amd64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp314-cp314-win_amd64.whl -
Subject digest:
420656bd307a17d00cf9cc0809054c5742c0926fbf293abcb19dcc11ed9d5455 - Sigstore transparency entry: 832015155
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 614.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09bd516a0c95cc3c4daeea8063e9b745635d232dd01198d3779196fa3da06b29
|
|
| MD5 |
2c56b1d7800d6aa27dcfe28a25273453
|
|
| BLAKE2b-256 |
51298dae1a2c4f2d17e70b855b0ac7b355a7ca13c38dd568ce8a6b773d41607b
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
09bd516a0c95cc3c4daeea8063e9b745635d232dd01198d3779196fa3da06b29 - Sigstore transparency entry: 832015129
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 614.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff11f571e90bf1a922516dc3ea41610918dd98d05ddbe86b610c809acf269abd
|
|
| MD5 |
863f7c28c720566953463b9254b4dafd
|
|
| BLAKE2b-256 |
d8272bd67476773d2ed72446e45eaf87d5f51002efeefc5332221a9a285b96f2
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ff11f571e90bf1a922516dc3ea41610918dd98d05ddbe86b610c809acf269abd - Sigstore transparency entry: 832015164
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 546.1 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c038d02569a7a118c15056678e4236ff3e7c189611b5aed3a8920ffe309d3864
|
|
| MD5 |
50c1d0474b6c57860728a20734919121
|
|
| BLAKE2b-256 |
331a9559869736bb45fb0abf5c2a929041594e3531cfd1183384f449abf34bbc
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
c038d02569a7a118c15056678e4236ff3e7c189611b5aed3a8920ffe309d3864 - Sigstore transparency entry: 832015143
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 568.0 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ceeb5cc3a5333773d7f92dc13287b3a293ee22d01a792523a6bd1c4ca68001fc
|
|
| MD5 |
5a956f5463d7e022cb035f8e0585f6a0
|
|
| BLAKE2b-256 |
bb00fa80e2186831f8cc2a5cca5cfa8b87cdf85b35bdb26d69caeeefefcd3436
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
ceeb5cc3a5333773d7f92dc13287b3a293ee22d01a792523a6bd1c4ca68001fc - Sigstore transparency entry: 832015158
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 612.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daafe3a2e02893a0f3358bc613d3e08519ac4db5032a4c272d6e8ac1fbfa9527
|
|
| MD5 |
4b13e71df6eed5e52169aaaeda85f4b7
|
|
| BLAKE2b-256 |
eb31874566cddc8d42fb56ee646178c4be3b17cfbd522f43c73e685e2902f31b
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
daafe3a2e02893a0f3358bc613d3e08519ac4db5032a4c272d6e8ac1fbfa9527 - Sigstore transparency entry: 832015108
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 514.8 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1b13dec855c4f9d869446202b1a14d2cd141dfa886f70f089c70f86d1eb0697
|
|
| MD5 |
2f691342407c4783565ffcaaa0716935
|
|
| BLAKE2b-256 |
b45f516a6c3c1f11f354c07fa38dc6743029f03bfa30c2296fc6c0c8f89ff408
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp313-cp313-win_amd64.whl -
Subject digest:
a1b13dec855c4f9d869446202b1a14d2cd141dfa886f70f089c70f86d1eb0697 - Sigstore transparency entry: 832015106
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 614.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60dd4c49d348027f9f16deac625599da121d314f62bf95e72b9ece754fc05722
|
|
| MD5 |
33759a352b9ea2452bfbd76ec47c96d8
|
|
| BLAKE2b-256 |
5b0e7b2bfc8cf101de8ba3b2024c59409992f21b313a26a7e9b186fdfdd28d71
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
60dd4c49d348027f9f16deac625599da121d314f62bf95e72b9ece754fc05722 - Sigstore transparency entry: 832015159
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 613.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16e8d7fcc1db804e2e3984ec38f0f166aab59d4f80c56abe599f672e2b096d17
|
|
| MD5 |
118a7b500bf6021eb0cd9c4354c47504
|
|
| BLAKE2b-256 |
cb056a1d8c0a64a0bcffc4b605549c7e034e5dfc10ae3fceac4e6397a8ed691f
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
16e8d7fcc1db804e2e3984ec38f0f166aab59d4f80c56abe599f672e2b096d17 - Sigstore transparency entry: 832015124
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 546.0 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23ce53e9fd0778199a4bc28f60df644c35b2897d5e0a979dfce553b6a3c2c811
|
|
| MD5 |
cf306b2ba37b0edc2911350745df33e7
|
|
| BLAKE2b-256 |
d4fdb6da2c97d82fc20c29cb1c79095ebc04ab76275e474c09b96b4d452d230d
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
23ce53e9fd0778199a4bc28f60df644c35b2897d5e0a979dfce553b6a3c2c811 - Sigstore transparency entry: 832015147
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 568.0 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83d7a5efda7f5a14e1675aad5c3ac6b5e255e20cc2d444f15fc178054b29262b
|
|
| MD5 |
7caea6af15cb85f5a922516587df96da
|
|
| BLAKE2b-256 |
d7913cf5e56bbccf8ce5ae6ee20c98ffef204c5feefe045780e2a660102547fb
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
83d7a5efda7f5a14e1675aad5c3ac6b5e255e20cc2d444f15fc178054b29262b - Sigstore transparency entry: 832015104
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9e75e24fd8ae9dffefd062f743096832be2792f39ac4e8adb9a5a5137239f7d
|
|
| MD5 |
16e3890f3a18588c604be53348f0b3e6
|
|
| BLAKE2b-256 |
976c72e0af2b3caba88b208130c9fcecac1beb3b7628eade60f658266482a4c4
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp312-cp312-win_amd64.whl -
Subject digest:
c9e75e24fd8ae9dffefd062f743096832be2792f39ac4e8adb9a5a5137239f7d - Sigstore transparency entry: 832015125
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 614.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e45e89169191499495a7d9e5aad5c6a1726c68667a3ae4f7df72b23e519f605
|
|
| MD5 |
7efebfc55d015691067b899a87da9b76
|
|
| BLAKE2b-256 |
de38ff42268be3502cd1e418fdc2f0e80a773f826d2f9ee64737806a777ddd4f
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
4e45e89169191499495a7d9e5aad5c6a1726c68667a3ae4f7df72b23e519f605 - Sigstore transparency entry: 832015135
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 614.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3ec06c4653830096e7465dff5aa00afdd3078ae446d1c7a6d4c859ff11f53dc
|
|
| MD5 |
dcc20439e865ff13f6ff42283ac729e3
|
|
| BLAKE2b-256 |
f30bda4cd9bc6869c451e091a2f09489a5b527b645da64b3ee8da29baadb2457
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
d3ec06c4653830096e7465dff5aa00afdd3078ae446d1c7a6d4c859ff11f53dc - Sigstore transparency entry: 832015175
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 546.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8150bf0fe16ca879aae69106c96fda1385e60f27f756c2bc9282856095a68bcf
|
|
| MD5 |
52aef4e171a6fa2653b3e029b47d71b9
|
|
| BLAKE2b-256 |
4876a3b5b70bd8a278e3232f3b02ae644328b42ad5226e4629621fe9ffaf23c2
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
8150bf0fe16ca879aae69106c96fda1385e60f27f756c2bc9282856095a68bcf - Sigstore transparency entry: 832015121
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 568.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
765d01f5e326770c26bce1d11dd75a497593c747e845e90170ffc82de7460036
|
|
| MD5 |
c580f4306f38372b400bff906a5a2e9d
|
|
| BLAKE2b-256 |
1ebdc5352287bd24fb61f75f2d9cdf32bc59fcbfe3e2382445d824fe8de96bd5
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
765d01f5e326770c26bce1d11dd75a497593c747e845e90170ffc82de7460036 - Sigstore transparency entry: 832015117
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 516.2 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18454d3c0c696f62387d8420386266aa8b4dc200a1812ca0ff5664f2ad994c85
|
|
| MD5 |
d631b684fb99a8ee27cf149d70a7e30d
|
|
| BLAKE2b-256 |
24b5415db957f9b33d648e0cdf290ee15f3858eeaa1fd6ca54efb8fa18e869b2
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp311-cp311-win_amd64.whl -
Subject digest:
18454d3c0c696f62387d8420386266aa8b4dc200a1812ca0ff5664f2ad994c85 - Sigstore transparency entry: 832015138
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 614.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eaf3552a56dd765565eed5c58d3183b125ea2bf474d74368a54e3df1e7b2bbd
|
|
| MD5 |
c5d712f92aeddd16eafe60306bd4baed
|
|
| BLAKE2b-256 |
d1cfe4cc0f15ba4f33b37c75798add1cd0117d30561a99515b891d513cce77aa
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
6eaf3552a56dd765565eed5c58d3183b125ea2bf474d74368a54e3df1e7b2bbd - Sigstore transparency entry: 832015168
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 614.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55b36c11c67543db3b064bbeebf10ebdf915e986f60d5ae3a2e9b7c4327b5019
|
|
| MD5 |
29874da28a25333d6aa6ed800ec55494
|
|
| BLAKE2b-256 |
7a0de6dfebf1da5e8fdb501fd1ece0f44bc92161fc09c62d9feb6a50a0137dfa
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
55b36c11c67543db3b064bbeebf10ebdf915e986f60d5ae3a2e9b7c4327b5019 - Sigstore transparency entry: 832015151
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 546.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f19f3f4aba531a848addff483f43dca80ec28c67c4b07c20f75386962cd21a3d
|
|
| MD5 |
1db1329af333ee32cb77c6bb79685513
|
|
| BLAKE2b-256 |
306423ce721f9a775cedb433780f1dcad5d9ab97797e2bbb5514742c51201ee6
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
f19f3f4aba531a848addff483f43dca80ec28c67c4b07c20f75386962cd21a3d - Sigstore transparency entry: 832015146
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 568.2 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e00aa073c681f16ca0567fbafe7ff6e18780e7df032a5503654c26edd4fc70a
|
|
| MD5 |
47a5b4012f0247b4219cf88bf0ab69c7
|
|
| BLAKE2b-256 |
d53c574ec0a3a85eb3bf1ac076c6611cba637f7fb8393ef98f0d9bba0ac36b69
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
8e00aa073c681f16ca0567fbafe7ff6e18780e7df032a5503654c26edd4fc70a - Sigstore transparency entry: 832015112
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f74419e26ccd5ebec6738b83fdc7960daff164ddbf5fac683415d1d89fee5aa6
|
|
| MD5 |
a90dfbcf6e7807eda38dd9577e282320
|
|
| BLAKE2b-256 |
a9785814f7feca4f5b4a284df13cb36bce77c0577d516537705d913e2f07af5d
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp310-cp310-win_amd64.whl -
Subject digest:
f74419e26ccd5ebec6738b83fdc7960daff164ddbf5fac683415d1d89fee5aa6 - Sigstore transparency entry: 832015130
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 613.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0d39f1da470050db014cb850fdcb3db1bd04fa5e140bc06eb3edc74091bf76e
|
|
| MD5 |
27067930028d20a428270d8e5fc291c3
|
|
| BLAKE2b-256 |
ab0a2fa9222884fa3f2630a4031ae52cbda2307e765b0c866eec2fb19ae4fa4d
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
f0d39f1da470050db014cb850fdcb3db1bd04fa5e140bc06eb3edc74091bf76e - Sigstore transparency entry: 832015145
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 614.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80f26b6c19827c42579e5d671440805b4db5d28469290e5ca0b05652c3e0bdc0
|
|
| MD5 |
c55f5d39cb8753189083a488552a98ad
|
|
| BLAKE2b-256 |
e11d755f050ed80311f8ca88071fc704878fb663ee7a7755f575ee0c306a24a6
|
Provenance
The following attestation bundles were made for fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on bug-ops/scrape-rs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fast_scrape-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
80f26b6c19827c42579e5d671440805b4db5d28469290e5ca0b05652c3e0bdc0 - Sigstore transparency entry: 832015105
- Sigstore integration time:
-
Permalink:
bug-ops/scrape-rs@3796c0fe33108b89f9866284425247e1048283ec -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/bug-ops
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3796c0fe33108b89f9866284425247e1048283ec -
Trigger Event:
push
-
Statement type: