selectolax 0.4.7
pip install selectolax
Released:
A fast HTML5 parser with CSS selectors, written in Cython, using Modest and Lexbor engines.
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
-
License Expression: MIT
SPDX License Expression - Author: Artem Golubin
- Tags selectolax , html , parser , css , fast , lexbor , modest
- Requires: Python <3.15, >=3.9
-
Provides-Extra:
cython
Classifiers
- Development Status
- Environment
- Intended Audience
- Natural Language
- Operating System
- Programming Language
- Topic
- Typing
Project description
A fast HTML5 parser with CSS selectors, written in Cython, using Modest and Lexbor engines.
Installation
From PyPI using pip:
pip install selectolax
If installation fails due to compilation errors, you may need to install Cython:
pip install selectolax[cython]
This usually happens when you try to install an outdated version of selectolax on a newer version of Python.
Development version from GitHub:
git clone --recursive https://github.com/rushter/selectolax
cd selectolax
pip install -r requirements_dev.txt
python setup.py install
How to compile selectolax while developing:
make clean
make dev
Basic examples
Here are some basic examples to get you started with selectolax:
Parsing HTML and extracting text:
In [1]: from selectolax.lexbor import LexborHTMLParser
...:
...: html = """
...: <h1 id="title" data-updated="20201101">Hi there</h1>
...: <div class="post">Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div>
...: <div class="post">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>
...: """
...: tree = LexborHTMLParser(html)
In [2]: tree.css_first('h1#title').text()
Out[2]: 'Hi there'
In [3]: tree.css_first('h1#title').attributes
Out[3]: {'id': 'title', 'data-updated': '20201101'}
In [4]: [node.text() for node in tree.css('.post')]
Out[4]:
['Lorem Ipsum is simply dummy text of the printing and typesetting industry. ',
'Lorem ipsum dolor sit amet, consectetur adipiscing elit.']
Using advanced CSS selectors
In [1]: html = "<div><p id=p1><p id=p2><p id=p3><a>link</a><p id=p4><p id=p5>text<p id=p6></div>"
...: selector = "div > :nth-child(2n+1):not(:has(a))"
In [2]: for node in LexborHTMLParser(html).css(selector):
...: print(node.attributes, node.text(), node.tag)
...: print(node.parent.tag)
...: print(node.html)
...:
{'id': 'p1'} p
div
<p id="p1"></p>
{'id': 'p5'} text p
div
<p id="p5">text</p>
Using lexbor-contains CSS pseudo-class to match text
from selectolax.lexbor import LexborHTMLParser
html = "<div><p>hello </p><p id='main'>lexbor is AwesOme</p></div>"
parser = LexborHTMLParser(html)
# Case-insensitive search
results = parser.css('p:lexbor-contains("awesome" i)')
# Case-sensitive search
results = parser.css('p:lexbor-contains("AwesOme")')
assert len(results) == 1
assert results[0].text() == "lexbor is AwesOme"
Available backends
Selectolax supports two backends: Modest and Lexbor. By default, all examples use the Lexbor backend.
Most of the features between backends are almost identical, but there are some differences.
As of 2024, the preferred backend is Lexbor. The Modest backend is still available for compatibility reasons
and the underlying C library that selectolax uses is not maintained anymore.
To use lexbor, just import the parser and use it in the similar way to the HTMLParser.
In [1]: from selectolax.lexbor import LexborHTMLParser
In [2]: html = """
...: <title>Hi there</title>
...: <div id="updated">2021-08-15</div>
...: """
In [3]: parser = LexborHTMLParser(html)
In [4]: parser.root.css_first("#updated").text()
Out[4]: '2021-08-15'
Simple Benchmark
- Extract title, links, scripts and a meta tag from main pages of top 754 domains. See
examples/benchmark.pyfor more information.
| Package | Time |
|---|---|
| Beautiful Soup (html.parser) | 61.02 sec. |
| lxml / Beautiful Soup (lxml) | 9.09 sec. |
| html5_parser | 16.10 sec. |
| selectolax (Modest) | 2.94 sec. |
| selectolax (Lexbor) | 2.39 sec. |
Links
- selectolax API reference and examples
- Video introduction to web scraping using selectolax
- How to Scrape 7k Products with Python using selectolax and httpx
- Modest introduction
- Modest benchmark
- Python benchmark
- Another Python benchmark
- Universal interface to lxml and selectolax
License
- Modest engine — LGPL2.1
- lexbor engine — Apache-2.0 license
- selectolax - MIT
Contributors
Thanks to all the contributors of selectolax!
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
-
License Expression: MIT
SPDX License Expression - Author: Artem Golubin
- Tags selectolax , html , parser , css , fast , lexbor , modest
- Requires: Python <3.15, >=3.9
-
Provides-Extra:
cython
Classifiers
- Development Status
- Environment
- Intended Audience
- Natural Language
- Operating System
- Programming Language
- Topic
- Typing
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 https://pypi.org/project/selectolax/#files
Showing 63 of 63 files.
Uploaded
CPython 3.14tWindows ARM64
Uploaded
CPython 3.14tWindows x86-64
Uploaded
CPython 3.14tmusllinux: musl 1.2+ x86-64
Uploaded
CPython 3.14tmusllinux: musl 1.2+ ARM64
Uploaded
CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.14tmacOS 11.0+ ARM64
Uploaded
CPython 3.14tmacOS 10.13+ x86-64
Uploaded
CPython 3.14Windows x86-64
Uploaded
CPython 3.14musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.14musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.14macOS 11.0+ ARM64
Uploaded
CPython 3.14macOS 10.13+ x86-64
Uploaded
CPython 3.13Windows x86-64
Uploaded
CPython 3.13musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.13musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.13macOS 11.0+ ARM64
Uploaded
CPython 3.13macOS 10.13+ x86-64
Uploaded
CPython 3.12Windows x86-64
Uploaded
CPython 3.12musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.12musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.12macOS 11.0+ ARM64
Uploaded
CPython 3.12macOS 10.13+ x86-64
Uploaded
CPython 3.11Windows x86-64
Uploaded
CPython 3.11musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.11musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.11macOS 11.0+ ARM64
Uploaded
CPython 3.11macOS 10.9+ x86-64
Uploaded
CPython 3.10Windows x86-64
Uploaded
CPython 3.10musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.10musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.10macOS 11.0+ ARM64
Uploaded
CPython 3.10macOS 10.9+ x86-64
Uploaded
CPython 3.9musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.9musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64
Uploaded
CPython 3.9macOS 11.0+ ARM64
Uploaded
CPython 3.9macOS 10.9+ x86-64
File details
Details for the file selectolax-0.4.7.tar.gz.
File metadata
- Download URL: selectolax-0.4.7.tar.gz
- Upload date:
- Size: 4.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17f7ba5a21714d450b4eea0451608a36be2bba8d327990ddbda812eb3f36fa51
|
|
| MD5 |
aa2ab0d4a75bcfa0033a55c570376588
|
|
| BLAKE2b-256 |
3b5cbf049c4aec4c102977abcac68a90dfb1031edc225e9a754fe2c7e624a2d2
|
Provenance
The following attestation bundles were made for selectolax-0.4.7.tar.gz:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7.tar.gz -
Subject digest:
17f7ba5a21714d450b4eea0451608a36be2bba8d327990ddbda812eb3f36fa51 - Sigstore transparency entry: 1049626964
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85e4ada1c4a3a69e503c9866e74bce24e716bd0ada060c7c2b56677d4f073928
|
|
| MD5 |
0be644615148075010fc4d89be18ce51
|
|
| BLAKE2b-256 |
6199d4de702bdd436e108891df2105adb7c6f44a11833a88c08686b18d4a6693
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-win_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-win_arm64.whl -
Subject digest:
85e4ada1c4a3a69e503c9866e74bce24e716bd0ada060c7c2b56677d4f073928 - Sigstore transparency entry: 1049627316
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad71d3b31ceb49820787d19d983e2851835ad03bbfd302c6e243a97215e36557
|
|
| MD5 |
110769fc60cdd254eae6513ec86633a1
|
|
| BLAKE2b-256 |
26df1035432c42eb76feaf696b7318411be908dab01b5b2907566c820d390fdb
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-win_amd64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-win_amd64.whl -
Subject digest:
ad71d3b31ceb49820787d19d983e2851835ad03bbfd302c6e243a97215e36557 - Sigstore transparency entry: 1049628277
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-win32.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-win32.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da9afa778ebce19c48de1e6fe5ff5bf7c719cd7f9cd14e5d530bd00ec15b149f
|
|
| MD5 |
14d909205aa3943c4ac05f81db99af7d
|
|
| BLAKE2b-256 |
8a641f699580093cc0582c07124137bdb78162086d7ef822dabbad2a2b051793
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-win32.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-win32.whl -
Subject digest:
da9afa778ebce19c48de1e6fe5ff5bf7c719cd7f9cd14e5d530bd00ec15b149f - Sigstore transparency entry: 1049628989
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb2757147ba48c2ac75ad79ad47e4b4d9e7ddb08ac614b90347cdff6b98c860b
|
|
| MD5 |
68ff0f90917d37e7a4b88435207d6fd0
|
|
| BLAKE2b-256 |
48a7a1937960cf98bf3cdc32963fb3ed30ee6364cf8e4c458bba21ca8cf98308
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
eb2757147ba48c2ac75ad79ad47e4b4d9e7ddb08ac614b90347cdff6b98c860b - Sigstore transparency entry: 1049630057
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64de787422ad342b35fef86e488d8b76d70fc3266cb74dfc154d4a89291c62b1
|
|
| MD5 |
5b8c3627b51a5066eb9ba4139a5792fb
|
|
| BLAKE2b-256 |
34303426668e83dcaf7f8fac3117140119556436e8de00de4ebbfde5bbf56d45
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
64de787422ad342b35fef86e488d8b76d70fc3266cb74dfc154d4a89291c62b1 - Sigstore transparency entry: 1049627167
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc504cad873bc4e95fca9141008ccf0d5e44350dfe450b71ccee86bd0b7b0572
|
|
| MD5 |
cb98f5b1cbffe202f86f338a8e7e0aa0
|
|
| BLAKE2b-256 |
de0e5929821c7f7a9c9a753feef59433ba16a0ca8e5f8f7ac0efa2dea6a84edf
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
fc504cad873bc4e95fca9141008ccf0d5e44350dfe450b71ccee86bd0b7b0572 - Sigstore transparency entry: 1049628242
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9591ec48af16003a79db89f070688fe0fb68d2c16ac6b479b0ee8b78eb4e486
|
|
| MD5 |
b19128300e60bcbf893d57f7ece1cc77
|
|
| BLAKE2b-256 |
f9bcbbe7c98a3eb4b83e164c56a3245a272427b2d03672a18456bd96325a1929
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d9591ec48af16003a79db89f070688fe0fb68d2c16ac6b479b0ee8b78eb4e486 - Sigstore transparency entry: 1049628771
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.14t, 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 |
2c275e5e5579e308a09ae77922c468a8ca63666534d00a42ebfd912f3c842a2e
|
|
| MD5 |
d9f74dabdae88b3f7a3e687634c063b8
|
|
| BLAKE2b-256 |
7d7490d0718b9f7898aa422ae5f9969fb43b3c5abc543cfd4eb64987aa052fe4
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
2c275e5e5579e308a09ae77922c468a8ca63666534d00a42ebfd912f3c842a2e - Sigstore transparency entry: 1049629560
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314t-macosx_10_13_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314t-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.14t, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8edbec5ad8a51cb60e6761231d88d34ed3a8158db3ae1f448aede2d146111d0f
|
|
| MD5 |
c808c935fe2357c70e955ccb005ee639
|
|
| BLAKE2b-256 |
837759593bfd132f6af138720c09cae3f0969d3f5366e3457c5309ab9c020d92
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314t-macosx_10_13_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314t-macosx_10_13_x86_64.whl -
Subject digest:
8edbec5ad8a51cb60e6761231d88d34ed3a8158db3ae1f448aede2d146111d0f - Sigstore transparency entry: 1049629248
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
771710fe52b082804d959944e3e0fe67f094ea1bf81669b4f654b957a7490d95
|
|
| MD5 |
88f3457531e3b0db7f9944f7fa3ffc48
|
|
| BLAKE2b-256 |
4ac6ab1544bbc731e653dd59dcb4f497fccbede8c84af3783c4f340ef1d6b606
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-win_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-win_arm64.whl -
Subject digest:
771710fe52b082804d959944e3e0fe67f094ea1bf81669b4f654b957a7490d95 - Sigstore transparency entry: 1049628655
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- 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 |
87bd651514491b9bdd8254e71295e43b790575021b87ebc2351ed6a2aeaa9313
|
|
| MD5 |
8e23371a13c8cf08df35a8af9b0b02c1
|
|
| BLAKE2b-256 |
52c65b4ae2b211161b597cc6bc02e517616d045a859dbfa98b2c0dd372614bf9
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-win_amd64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-win_amd64.whl -
Subject digest:
87bd651514491b9bdd8254e71295e43b790575021b87ebc2351ed6a2aeaa9313 - Sigstore transparency entry: 1049629442
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-win32.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-win32.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eaf2e15076fa7e2e5fe7c3b5a88e54b14bbd49a53da983534f6cb448f3f0e300
|
|
| MD5 |
761fbaf7ec902caf3e9e2d01c21d778a
|
|
| BLAKE2b-256 |
d901277d3c3fa5d3c669bf8d20bd12fcde50258408dc4bd9e3f8c5fc2d28fcd6
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-win32.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-win32.whl -
Subject digest:
eaf2e15076fa7e2e5fe7c3b5a88e54b14bbd49a53da983534f6cb448f3f0e300 - Sigstore transparency entry: 1049627635
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e7f847b38195c45f6f6c966df5d8600ab9d522df632d61b28db2edd92deeb3c
|
|
| MD5 |
4a5ef807c9a6a43c33ccd51bd887443f
|
|
| BLAKE2b-256 |
fa51d5f8bc697c84bdae90c6d5fd038662d3509879c28f2076ef70fdbd0ab61a
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
8e7f847b38195c45f6f6c966df5d8600ab9d522df632d61b28db2edd92deeb3c - Sigstore transparency entry: 1049627510
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4782cc1e162ca422a325302cdad344cd853cfde19004b870e5b6c3df651abab
|
|
| MD5 |
d9777fe5239b4a0aac8ce13f6e598d2f
|
|
| BLAKE2b-256 |
771bc1fc7711ad8b1c3b60a987fa258d47cb93a8b3b9f21ca8a6aa24e5e7705c
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
a4782cc1e162ca422a325302cdad344cd853cfde19004b870e5b6c3df651abab - Sigstore transparency entry: 1049629200
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea46dbb3592ec0aa78662ecdcac8c083313dafbc6bd8277620b8301db658d638
|
|
| MD5 |
192ae114cafc43143527282f929b5cbb
|
|
| BLAKE2b-256 |
f7e7bbb13633f4378dbc390c874be4321fd4d09388a44b66f1c26625730030ba
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
ea46dbb3592ec0aa78662ecdcac8c083313dafbc6bd8277620b8301db658d638 - Sigstore transparency entry: 1049629823
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a6735711f492532a83df6d501e8647feea48d893e703f0354e61ba868757f9b
|
|
| MD5 |
ce2554c75a3b8d638e313b1c694b0e09
|
|
| BLAKE2b-256 |
1a4c544385da484f6a3b8ba70ea4ad15a121adb0cf2b55b74f2560b8e01f44cc
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5a6735711f492532a83df6d501e8647feea48d893e703f0354e61ba868757f9b - Sigstore transparency entry: 1049627858
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- 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 |
2f19bb52c27f526d89383ec178daa31fcb93dbec90106bfb3e2d43c2970f3b72
|
|
| MD5 |
c3050e1a1866398b77151253c15d34ac
|
|
| BLAKE2b-256 |
d67dbcc37be0537802f8d94e61d30f4d36130afa2ae2fa59758b534e4bbe80e7
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
2f19bb52c27f526d89383ec178daa31fcb93dbec90106bfb3e2d43c2970f3b72 - Sigstore transparency entry: 1049627074
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp314-cp314-macosx_10_13_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp314-cp314-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.14, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f29ad4506fe84152391998ae5b05aaae80d237795567009a518496d0daf4908
|
|
| MD5 |
73cb877891fa18406331f6113437e09d
|
|
| BLAKE2b-256 |
355a76f9ee49b4bbb27ebe2d3b26ad84b6887f41d181dd8682278ccea50ed75f
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp314-cp314-macosx_10_13_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp314-cp314-macosx_10_13_x86_64.whl -
Subject digest:
9f29ad4506fe84152391998ae5b05aaae80d237795567009a518496d0daf4908 - Sigstore transparency entry: 1049629399
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cbd1143920b7bd1b80e092d5a16c97fdc741b0325a42862f20edcb55ab493e8
|
|
| MD5 |
74f13164999515d92d1c9353b29d4f87
|
|
| BLAKE2b-256 |
59d7d2206d9f38a534b4fc4383c7dd427ba0b927075c96881274a60978411723
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-win_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-win_arm64.whl -
Subject digest:
7cbd1143920b7bd1b80e092d5a16c97fdc741b0325a42862f20edcb55ab493e8 - Sigstore transparency entry: 1049627552
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- 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 |
5a613760d2b890d7befd2e585a37dd0bdae9e23eee0cacb15d24adb83232c94e
|
|
| MD5 |
fff8d7211ebfcdfda8fde5df2f62ce61
|
|
| BLAKE2b-256 |
6c1cd22cbd6c5828a59addd42626c22b2afb3422bfce59cf88d15095da05243f
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-win_amd64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-win_amd64.whl -
Subject digest:
5a613760d2b890d7befd2e585a37dd0bdae9e23eee0cacb15d24adb83232c94e - Sigstore transparency entry: 1049629759
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-win32.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-win32.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df8a8db519484c868839f1d36be720feeb228c8f75cf7b745e325db183b319c6
|
|
| MD5 |
28f11080f836a207fbae8530f9021c74
|
|
| BLAKE2b-256 |
24676ba2b7140d7e92a3a0f815ac6c8001171973248a9f27206b339019e0b288
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-win32.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-win32.whl -
Subject digest:
df8a8db519484c868839f1d36be720feeb228c8f75cf7b745e325db183b319c6 - Sigstore transparency entry: 1049629150
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c70be8f4154a80b8d435bcc3217c04a82f928849fa2f6acd554d24c5b911db6
|
|
| MD5 |
ef6d2be953d0f8f2a31919643434ab75
|
|
| BLAKE2b-256 |
b6c234b132d14922b7d8dbb50d0b487d22aeb7af8a47421baaf05f2cc1cc2dbd
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
9c70be8f4154a80b8d435bcc3217c04a82f928849fa2f6acd554d24c5b911db6 - Sigstore transparency entry: 1049628834
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3da9e1609cefc9bb403f62c2b03d2f5622cbe3057c2f06e308a29fad8ae5654
|
|
| MD5 |
2db2598faae6d3141e8232862ef7eeb8
|
|
| BLAKE2b-256 |
91b0779ab6c428be5cf53ebae1bc2539ebe9df9d8b76e2f9810f107a0338800e
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
d3da9e1609cefc9bb403f62c2b03d2f5622cbe3057c2f06e308a29fad8ae5654 - Sigstore transparency entry: 1049628923
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a7016db9c55ae541f1669a3433aee03fc0a1111d70c84aa5636a5a6b9499854
|
|
| MD5 |
beb00c11269604f28180ed758bf6fa1e
|
|
| BLAKE2b-256 |
5924324a271f7ef49786d7bed5674e23718504fe996866e23c75f91ac06c3bfa
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
1a7016db9c55ae541f1669a3433aee03fc0a1111d70c84aa5636a5a6b9499854 - Sigstore transparency entry: 1049627945
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdc5ec34ccce3a691e1664a14bf0f40ad6a41117e5de88e85d8ac8e68a7ea8bd
|
|
| MD5 |
0688f0bb8aaa103db779220db9d5341b
|
|
| BLAKE2b-256 |
af9505f264c622d0f0839954d0f197d420cffe5723354521b6ce543d32b272a1
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
fdc5ec34ccce3a691e1664a14bf0f40ad6a41117e5de88e85d8ac8e68a7ea8bd - Sigstore transparency entry: 1049628715
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- 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 |
feaea6ac95da2fa137abad3c1ae13596bffed44c8e2bfa7802f89a37a1e5e39a
|
|
| MD5 |
f7e2578ba4a0d7a2fa110adbf378114b
|
|
| BLAKE2b-256 |
f34422e433b7dc31ff83574051dd9951175bcd0e36b56c0e25cb277929e77ecb
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
feaea6ac95da2fa137abad3c1ae13596bffed44c8e2bfa7802f89a37a1e5e39a - Sigstore transparency entry: 1049628382
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb8f169511f037b662dac1a0e27cff30f4317f9aa30af2e37c8a37c3ca8c7e3c
|
|
| MD5 |
71b63b8e68d9e2ef9f317547edc6455b
|
|
| BLAKE2b-256 |
d26b238c03a1be1aa73c5392026ae4efbcf9f8356bb5a07dda1134f07d33e78c
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
fb8f169511f037b662dac1a0e27cff30f4317f9aa30af2e37c8a37c3ca8c7e3c - Sigstore transparency entry: 1049628487
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6b8d0f7cbdc6ca5cbf52dbd37f70c170184040499ac59a23409724724276784
|
|
| MD5 |
8adfb3eb2670574e63a357c950ae3103
|
|
| BLAKE2b-256 |
63adbb94f409f33871b6d9b3b4d56fb82d14d9b2fd2e7657f32c25a35167187e
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-win_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-win_arm64.whl -
Subject digest:
e6b8d0f7cbdc6ca5cbf52dbd37f70c170184040499ac59a23409724724276784 - Sigstore transparency entry: 1049629674
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- 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 |
00953c3c6a7e4dfd990a5651315b713d50131706c239c1f1c5b6d4a75a11975a
|
|
| MD5 |
a7772e1782e6b7f64b49a628b7fbdc75
|
|
| BLAKE2b-256 |
31255b893677a0acfc579d9ccb3f01204c4554ba533db5c144cc3b18e33e347b
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-win_amd64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-win_amd64.whl -
Subject digest:
00953c3c6a7e4dfd990a5651315b713d50131706c239c1f1c5b6d4a75a11975a - Sigstore transparency entry: 1049628328
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-win32.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-win32.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88344c8764f3a2fbcae2fd2353201c330920943c2da34a16e9b063f918deb7d6
|
|
| MD5 |
e69f2c1c3ddfe1cc156c589afffc436c
|
|
| BLAKE2b-256 |
dd9dfef3b7d4f8da87762574ea20ff9612485639d6b0a9b7d3839738d8ced105
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-win32.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-win32.whl -
Subject digest:
88344c8764f3a2fbcae2fd2353201c330920943c2da34a16e9b063f918deb7d6 - Sigstore transparency entry: 1049627220
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3799b39d60266f7d4c48f322fac8eaecc6dec38f4342d6d3b17085d11815bcb4
|
|
| MD5 |
d7c5e3160d7408dfc524b08a82f4b3a7
|
|
| BLAKE2b-256 |
e24ffa4125a9a92b2a15a3b332592270e003e9092bb97c3d6c3a7f2714b4c507
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
3799b39d60266f7d4c48f322fac8eaecc6dec38f4342d6d3b17085d11815bcb4 - Sigstore transparency entry: 1049630143
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb6faf15e6cc6a7c61c04e15c3490e3f6693c98f732e531941687093de36db81
|
|
| MD5 |
30df4b8d16745712ba436909669c4acc
|
|
| BLAKE2b-256 |
855415c3b5d94cf969748ffcca7289245d477ef69ce30a359c5a764b0bc2226e
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
eb6faf15e6cc6a7c61c04e15c3490e3f6693c98f732e531941687093de36db81 - Sigstore transparency entry: 1049627443
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3840b79f5f39744b95dc80e3b428cf4e49b86d8c6e9cbb3e7df3e702bf240cce
|
|
| MD5 |
df56f484c444efea8071b8d0d12ff008
|
|
| BLAKE2b-256 |
e91bd8f84cb6385637cd793aad3a53618d3ee1b4329e0feb0f4db7a7f81af4da
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
3840b79f5f39744b95dc80e3b428cf4e49b86d8c6e9cbb3e7df3e702bf240cce - Sigstore transparency entry: 1049627730
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7134b119c011e18d1e914d5adbb8f953e391649b4af734fcec61dad691a16f59
|
|
| MD5 |
0125dcc941cce50b2a3085737ebddd3f
|
|
| BLAKE2b-256 |
e442969e084f59c845fbb304d55f8e3899ffe823f3cd78d85d083edffe772766
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
7134b119c011e18d1e914d5adbb8f953e391649b4af734fcec61dad691a16f59 - Sigstore transparency entry: 1049629880
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- 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 |
2a0e9b1e3b1d091a0133b44b3967c79db8de73d99efe38af85bab615775aa4e8
|
|
| MD5 |
38ce30e57ef9af3b3500fc4cfe060ef0
|
|
| BLAKE2b-256 |
4264de442c5056aa4f42d140556a8093bfadee72545919384cf38d6f651b75b0
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
2a0e9b1e3b1d091a0133b44b3967c79db8de73d99efe38af85bab615775aa4e8 - Sigstore transparency entry: 1049629942
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fa541a520cc6213d754ec747ebbff12fdcc5b9f6bb7615784486e18697209fb
|
|
| MD5 |
b41d3f24314a55d5a525d60df9d14b74
|
|
| BLAKE2b-256 |
1f1d8d3db7dcc053f7f4088a826f9089324c7b37617f9caaf6a03f0ff5854bbd
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
8fa541a520cc6213d754ec747ebbff12fdcc5b9f6bb7615784486e18697209fb - Sigstore transparency entry: 1049628554
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e3dac7de3864701a18cd6c4806d07944a5a48d1db2f107a0ce8531f72881462
|
|
| MD5 |
ca9ce1fe8ee81a264294d21df6ee99f1
|
|
| BLAKE2b-256 |
d5cd6a1989b9866430ad358865020e82e5aeb16a813df92455d4fd8608e27cae
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-win_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-win_arm64.whl -
Subject digest:
3e3dac7de3864701a18cd6c4806d07944a5a48d1db2f107a0ce8531f72881462 - Sigstore transparency entry: 1049627360
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- 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 |
d322e725e0c575cacc8ba2f0041fb8405dc3932bff9073a563f568c6ef3a217b
|
|
| MD5 |
356450dc09e649b5683c0dc8ab00c3d3
|
|
| BLAKE2b-256 |
93d82b8ff4f2cef4236ffc3bdf1c500517fddf9b0cf9d4db20d1d01a6c49a128
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-win_amd64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-win_amd64.whl -
Subject digest:
d322e725e0c575cacc8ba2f0041fb8405dc3932bff9073a563f568c6ef3a217b - Sigstore transparency entry: 1049629099
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-win32.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-win32.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ca0af7156315d9193fac699e8e4c3281ea6dccc6262eed33b32001a633e57a9
|
|
| MD5 |
0f3cd620c697edc06523029790f2bcf4
|
|
| BLAKE2b-256 |
53096dff1dcf77f762f3b088b63d6bc6ce15ce649066019e508031c140d483af
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-win32.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-win32.whl -
Subject digest:
8ca0af7156315d9193fac699e8e4c3281ea6dccc6262eed33b32001a633e57a9 - Sigstore transparency entry: 1049628203
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fb1c01d39570f0990e8e2a2037e3f0cf8d193da6ea9ca1936d5818d5cf6a260
|
|
| MD5 |
654ca402a5f5efcedbb53cee53f63635
|
|
| BLAKE2b-256 |
94cb8dbecbacf55d55dd5cfe046a4d943ae1df979a96a7a407ee7d8c277976d5
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
5fb1c01d39570f0990e8e2a2037e3f0cf8d193da6ea9ca1936d5818d5cf6a260 - Sigstore transparency entry: 1049629713
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50a668ede8d3f2dbe872c2713a28348e9e3e154a49118b898568243bfb356c96
|
|
| MD5 |
9c50a4345b59ecd03783e10c33c501f1
|
|
| BLAKE2b-256 |
5cda6d068419854eff6a83247804e358ef3abaa62815adac61f329583a992ab3
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
50a668ede8d3f2dbe872c2713a28348e9e3e154a49118b898568243bfb356c96 - Sigstore transparency entry: 1049627901
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26e24768ce86d376b50d311c1bdf54c5445139ac90cc5d955a7703402d2e2f7c
|
|
| MD5 |
37665c891153539da3d8ad6b5e606cb0
|
|
| BLAKE2b-256 |
17f83c15c68b5cd2126cdadb9c47dd8931330d0ef40d64533fed3460feb8a9e8
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
26e24768ce86d376b50d311c1bdf54c5445139ac90cc5d955a7703402d2e2f7c - Sigstore transparency entry: 1049628107
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cc5c190277ff34f2e42be473ec5947ad5d87c07a072e25d0701c03b7ceb5b12
|
|
| MD5 |
da3f134f941bab8c1122c150ec71299c
|
|
| BLAKE2b-256 |
e2e08014f221b5ae3a3b1dbd915318cb01ee37e31f29a4cce088b39baab4a59d
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
4cc5c190277ff34f2e42be473ec5947ad5d87c07a072e25d0701c03b7ceb5b12 - Sigstore transparency entry: 1049629048
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- 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 |
f222827fef20c142131f1948bc08ebf1c9f3294c79bca8fa9c0a71e234be7b2f
|
|
| MD5 |
3a6c461ec03da874c4cdfb517a5acbbe
|
|
| BLAKE2b-256 |
45b3ea286b3e89b56d55995927f8fa01cc01b985a14bb7f0c572f06db051c33e
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
f222827fef20c142131f1948bc08ebf1c9f3294c79bca8fa9c0a71e234be7b2f - Sigstore transparency entry: 1049628869
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48d95f3bbe37caa6fe341992ac7b4fb5b7efad1ed8bd939af67b6be0ccd5634e
|
|
| MD5 |
9aa5cc6e14d5fb624ab053d7394f04a3
|
|
| BLAKE2b-256 |
a46b3409a8fd1d217f3449742e86fffe6e29d3f5f9a969a8a6121b1002f377fb
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
48d95f3bbe37caa6fe341992ac7b4fb5b7efad1ed8bd939af67b6be0ccd5634e - Sigstore transparency entry: 1049627403
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e221e7403005e343c636ed51846ae20e52b81be24becaf9195308d24114c061
|
|
| MD5 |
997083c6eb07ebeb003098874be92ec7
|
|
| BLAKE2b-256 |
4b5713bc1fcd4250c1f9d52774ff1488cb10936473963f9af39a59cfce688aa0
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-win_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-win_arm64.whl -
Subject digest:
0e221e7403005e343c636ed51846ae20e52b81be24becaf9195308d24114c061 - Sigstore transparency entry: 1049627266
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- 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 |
98007b5882c968f5f33f9e01d088fbd796aa7debcbbadb68e95c130a7cecfd19
|
|
| MD5 |
ed1529ead998af7b8c6f650acf11d431
|
|
| BLAKE2b-256 |
fb5210e978a9d835a8b7f795339b23cdaabc9c2a4d34596d7caa876868dbf2aa
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-win_amd64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-win_amd64.whl -
Subject digest:
98007b5882c968f5f33f9e01d088fbd796aa7debcbbadb68e95c130a7cecfd19 - Sigstore transparency entry: 1049629296
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-win32.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-win32.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a151972637887614dad8ea77bd36ea992fef1fb42cf246be60fe2aff83080537
|
|
| MD5 |
57842a7afa132aec42d4c4bbb959ccdc
|
|
| BLAKE2b-256 |
35ebab880b7a68ebc94ba5d685e80b356180fb679c85f3973b45aed219df693d
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-win32.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-win32.whl -
Subject digest:
a151972637887614dad8ea77bd36ea992fef1fb42cf246be60fe2aff83080537 - Sigstore transparency entry: 1049628006
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e475e009e9f2df91e3971d89aa889072219bfee8fcf4b6c36db859a4301982cd
|
|
| MD5 |
b6cdcc1f42fc39e32f0ac7e121481c93
|
|
| BLAKE2b-256 |
e82f91e0b8ab4be42b1a3505b4de482b0f50b59f04b3df60ab2b3038a3d2e378
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
e475e009e9f2df91e3971d89aa889072219bfee8fcf4b6c36db859a4301982cd - Sigstore transparency entry: 1049629346
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9d46ffaded9c3dd09371174f4302314851bacb7e0ff1a370f609b3aaa93431a
|
|
| MD5 |
60e6a057e1f24b689078ebc7b86bb9c3
|
|
| BLAKE2b-256 |
43c429d3b88d85a0761a023b9c8cf74e5cab7aa4e3253f135da2457fd5c242ad
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
e9d46ffaded9c3dd09371174f4302314851bacb7e0ff1a370f609b3aaa93431a - Sigstore transparency entry: 1049627591
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f815a0bd233ca188b117006c6ca7540031f259a8332592b276e802d24fed44bf
|
|
| MD5 |
51dfc66bafd7a856bd5f48cbb3b297a5
|
|
| BLAKE2b-256 |
3af5b7cf054eba94cf9bc527af1ad353aa1e3058b896648ebcf050c3378cfee0
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f815a0bd233ca188b117006c6ca7540031f259a8332592b276e802d24fed44bf - Sigstore transparency entry: 1049628054
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab50b89f3d9b791696bc04eb2761c617f6c5979d57cde1ae93373a9d42d3a6ae
|
|
| MD5 |
c1cbeebf26780edbc4c80cde8315b907
|
|
| BLAKE2b-256 |
e48d361c81bba10e99e2f13d4922451ed3ae462d26da29119fe14c85154bafa6
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ab50b89f3d9b791696bc04eb2761c617f6c5979d57cde1ae93373a9d42d3a6ae - Sigstore transparency entry: 1049629998
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, 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 |
9bddcca1fd74a7a92d53f13116b244fbd4dce84ac0dde60b6ee722212840fe2f
|
|
| MD5 |
abfb414ff45564dda7ee1a95685889a2
|
|
| BLAKE2b-256 |
de4a508795393f5ec2fb0669886be4d6dcab8d0bd32022a37c873fa91ba65045
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
9bddcca1fd74a7a92d53f13116b244fbd4dce84ac0dde60b6ee722212840fe2f - Sigstore transparency entry: 1049627026
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcf6e535cb2b2c0e5b35eb0d5bbe6d17f8d2cf96108addda1491cda083b798d7
|
|
| MD5 |
2eb5263fc01b21aab3f2ceb828a735ad
|
|
| BLAKE2b-256 |
67c723dced785d2b343819791506419d64ac8c99857b9925e86821c047ae795a
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
bcf6e535cb2b2c0e5b35eb0d5bbe6d17f8d2cf96108addda1491cda083b798d7 - Sigstore transparency entry: 1049628439
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a231801ae248bdb511417af568f2890768c486f6f5dde4251c6e7eadea637103
|
|
| MD5 |
8f22ec313b18a7ead5e0e2844158643c
|
|
| BLAKE2b-256 |
9899200026e83b5a2512dedca5095f13735daad845a730fdb8c56525c3db7c12
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-win_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-win_arm64.whl -
Subject digest:
a231801ae248bdb511417af568f2890768c486f6f5dde4251c6e7eadea637103 - Sigstore transparency entry: 1049627482
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed00a4244c52f96f610a164b87e807b49fcd06bb045fe9f9fb0ca2ed8b973a13
|
|
| MD5 |
d2ef0e00a6918044de8250c25aba7e19
|
|
| BLAKE2b-256 |
3ad0932503dd9c6ffd46f7c30eeb65fd8f7228cf61b3a5fb0a226ab888fe31bb
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-win_amd64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-win_amd64.whl -
Subject digest:
ed00a4244c52f96f610a164b87e807b49fcd06bb045fe9f9fb0ca2ed8b973a13 - Sigstore transparency entry: 1049629500
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-win32.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-win32.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d72c67fb56639433f130b2e44a783f4d0efb862a285413b9fc8789a851f5383
|
|
| MD5 |
400117de33f7331c36372850e23a3cb2
|
|
| BLAKE2b-256 |
037895c2c7fc9dadb20c189e9c5f6f4e3559d8fa767f2256ac7398bdf7ed8270
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-win32.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-win32.whl -
Subject digest:
1d72c67fb56639433f130b2e44a783f4d0efb862a285413b9fc8789a851f5383 - Sigstore transparency entry: 1049627110
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3968f272b0aa93927b3ba17104c0d2980286fcb0def44babb87dab3673936377
|
|
| MD5 |
9f35723d5310bf1bcbb89071b9427445
|
|
| BLAKE2b-256 |
f9f90c8aff336c3d32b1e2d80fb2be5f906b0c67541fef01e675b7693e905769
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
3968f272b0aa93927b3ba17104c0d2980286fcb0def44babb87dab3673936377 - Sigstore transparency entry: 1049627773
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90fc1146b9130a4891f3fc1f414113ccbee419e84c7f1c5948071f88e46ef16c
|
|
| MD5 |
b03be739c58f3c8d47de63a76fe6676f
|
|
| BLAKE2b-256 |
dd497050dd67d12973ccc0f2c88c88851e124885812038ebbead0f1e3a2dc9f7
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
90fc1146b9130a4891f3fc1f414113ccbee419e84c7f1c5948071f88e46ef16c - Sigstore transparency entry: 1049627818
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c74313af027e989f3b8432c8da6511a34fffd7b3f2fec3cb7019ab32e6e11973
|
|
| MD5 |
588feab511be6162fefe90862470a9bd
|
|
| BLAKE2b-256 |
ba1bf682e30074e4f4ab5da8cfa1f90b2cdfe1479d055029f5bcec3345c642b5
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c74313af027e989f3b8432c8da6511a34fffd7b3f2fec3cb7019ab32e6e11973 - Sigstore transparency entry: 1049627687
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0d6a2ad265b95a9c1abef15fedcfebf3d6ec250520b1b64a3d2887dcee17ec6
|
|
| MD5 |
9fbbbf16e7472d786cec15d70f3da893
|
|
| BLAKE2b-256 |
a89672a08f574b7adba07ee2ce40a876be237674312c7f0a513b6088ac4dbce2
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
c0d6a2ad265b95a9c1abef15fedcfebf3d6ec250520b1b64a3d2887dcee17ec6 - Sigstore transparency entry: 1049629621
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, 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 |
434ee92be15534c10db308ae9ab3f93a224e2a60f1c0ab9453a97ee09b056ca7
|
|
| MD5 |
269ef212259758141a9be969f3473a0e
|
|
| BLAKE2b-256 |
df51bdcc3d57cd2ebf46402c7e0c1be387be625e0e050841110487b4736d3805
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
434ee92be15534c10db308ae9ab3f93a224e2a60f1c0ab9453a97ee09b056ca7 - Sigstore transparency entry: 1049628598
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type:
File details
Details for the file selectolax-0.4.7-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: selectolax-0.4.7-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cf39b5200ec82ae75b35549ee71fb5b344ba0420b1a8a49f3fb38d14082c463
|
|
| MD5 |
fc5e0a0d54c33a042ce8521f50d2461a
|
|
| BLAKE2b-256 |
f6b7729b8b48d727fc5d4e8e96b45ffde367916049f495b0e346994bc4b9d2b3
|
Provenance
The following attestation bundles were made for selectolax-0.4.7-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
make_release.yml on rushter/selectolax
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
selectolax-0.4.7-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
2cf39b5200ec82ae75b35549ee71fb5b344ba0420b1a8a49f3fb38d14082c463 - Sigstore transparency entry: 1049628158
- Sigstore integration time:
-
Permalink:
rushter/selectolax@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Branch / Tag:
refs/tags/v0.4.7 - Owner: https://github.com/rushter
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
make_release.yml@16b0e295adc418580d6e6ec4631fd072eb9f4b8f -
Trigger Event:
release
-
Statement type: