Skip to main content

A fast HTML5 parser with CSS selectors, written in Cython, using Modest and Lexbor engines.

Project description

selectolax logo


A fast HTML5 parser with CSS selectors, written in Cython, using Modest and Lexbor engines.


PyPI - Version PyPI Total Downloads CI Python Versions GitHub License


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.py for 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

License

Contributors

Thanks to all the contributors of selectolax!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

selectolax-0.4.8.tar.gz (4.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

selectolax-0.4.8-cp314-cp314t-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14tWindows ARM64

selectolax-0.4.8-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

selectolax-0.4.8-cp314-cp314t-win32.whl (1.9 MB view details)

Uploaded CPython 3.14tWindows x86

selectolax-0.4.8-cp314-cp314t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

selectolax-0.4.8-cp314-cp314t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

selectolax-0.4.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

selectolax-0.4.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

selectolax-0.4.8-cp314-cp314t-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

selectolax-0.4.8-cp314-cp314t-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

selectolax-0.4.8-cp314-cp314-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows ARM64

selectolax-0.4.8-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

selectolax-0.4.8-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

selectolax-0.4.8-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

selectolax-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

selectolax-0.4.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

selectolax-0.4.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

selectolax-0.4.8-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

selectolax-0.4.8-cp314-cp314-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

selectolax-0.4.8-cp313-cp313-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows ARM64

selectolax-0.4.8-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

selectolax-0.4.8-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

selectolax-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

selectolax-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

selectolax-0.4.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

selectolax-0.4.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

selectolax-0.4.8-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

selectolax-0.4.8-cp313-cp313-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

selectolax-0.4.8-cp312-cp312-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows ARM64

selectolax-0.4.8-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

selectolax-0.4.8-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

selectolax-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

selectolax-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

selectolax-0.4.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

selectolax-0.4.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

selectolax-0.4.8-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

selectolax-0.4.8-cp312-cp312-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

selectolax-0.4.8-cp311-cp311-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows ARM64

selectolax-0.4.8-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

selectolax-0.4.8-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

selectolax-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

selectolax-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

selectolax-0.4.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

selectolax-0.4.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

selectolax-0.4.8-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

selectolax-0.4.8-cp311-cp311-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

selectolax-0.4.8-cp310-cp310-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows ARM64

selectolax-0.4.8-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

selectolax-0.4.8-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

selectolax-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

selectolax-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

selectolax-0.4.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

selectolax-0.4.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

selectolax-0.4.8-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

selectolax-0.4.8-cp310-cp310-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

selectolax-0.4.8-cp39-cp39-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows ARM64

selectolax-0.4.8-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

selectolax-0.4.8-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

selectolax-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

selectolax-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

selectolax-0.4.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

selectolax-0.4.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

selectolax-0.4.8-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

selectolax-0.4.8-cp39-cp39-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file selectolax-0.4.8.tar.gz.

File metadata

  • Download URL: selectolax-0.4.8.tar.gz
  • Upload date:
  • Size: 4.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8.tar.gz
Algorithm Hash digest
SHA256 cd703165b9a346be255e2ca5b4219e01009911977ac8a474d8ccb7e32e9a4fae
MD5 fbf005fd64da30a9b8a0790e45bed189
BLAKE2b-256 b31ace7768c1bff5cf07e3e12f904d54a63c3f85f78e3b299c0b561839d0238e

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8.tar.gz:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 136dfad919728023fcd13fc773a1c488204fb0efd9c1f9baf7bd815fbb35eec3
MD5 9a487f586defa63e5d5e34ce107d4e54
BLAKE2b-256 31581e080cf00d7c4712e6411cd9cd3c927ec6ad4adf25d280a73ef38aeeb68a

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-win_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5c34fd9a29a430c1f8800d94e7a2c4fd0b1aef10485b0871fbae914cde232c41
MD5 89ac15f9f5e9ae2d7feff8e06565dbfc
BLAKE2b-256 3a8e4e576a67fdd3a44d76418a196b7850890af8ef254efbca3eabef1b70fad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-win_amd64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-win32.whl.

File metadata

  • Download URL: selectolax-0.4.8-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.12

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ccfb2d172db96401a8d4ebc2dc12f4f4f20208597f5e6510d3f6bdc5a49c46b5
MD5 914860f394aab970e2cb6ae07c5fab7b
BLAKE2b-256 9b542250ce95c2b4f47f43b5fb9a156db823faffe1623c95e42137c738234573

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-win32.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6aacac9d106a2c992b817b5c1d4a1aa2e825403a5c1354386657968fa4b9b15
MD5 ccbe9759eebdf7e5ae5e1e8cc3e924ba
BLAKE2b-256 598de51946644e5abbe53d08634ac2251f73132d290116a9d349ec5d381c8ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3972b884caa78abf3710a0e7723dc705974dbdaef46d98a05e47c68493d86922
MD5 865aebbb3600fd755ac743a05bd2ee30
BLAKE2b-256 b3d35114524c7480c6f55791ef7ab82a4a923b0367553bc9f39541ed8b392117

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f293e28183b329bed738918d18cd35966add6600bad2f3431470ffa18c0639e
MD5 3bd256a361510559ac9e91451ab4ae88
BLAKE2b-256 9f01bb5fe5a69997282764174d4fdd0246d6ceb269c03806f07ad454d3fdc07c

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d001ceff303937e0d05ecba4c1a8d39ea04840a653ccaecf59446667c16f65bc
MD5 d8a75a77daabb45096a5f0e375b5e676
BLAKE2b-256 dc004ef2186699d1097f7275eade50cc27d41a1ecb8311b8d46c185e5266dd9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 957fd757b0491e29f96235cb5ce0a46b8cdc8cce41f5032805387311d2504677
MD5 5dadfd4b6de1ebfc201d74beaceabba5
BLAKE2b-256 b0071c398f0040f21897945d6a750dbc49bf1e0190f57490ba631bda4a421e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bc041e2554c4cce221401bbde42177a99670fdba8a60448f0ae65731fc08a0b5
MD5 14f4a93429d6f1ceb326081a8321a099
BLAKE2b-256 b33b5d0087a277802a0054073d67919e560de3fada54497762f065ea5e54b0cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: selectolax-0.4.8-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.12

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5125e171b16bbbdb76ea36140c165f183b1e99fe4170eb9b79a7141090bba51c
MD5 1aabb0cec08e4b36287a34e18aa61333
BLAKE2b-256 63a5f0042a20e4ca914e66d2f513491bfc92d907ead59d3a63c6e56e6130b006

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-win_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ce6668c260ada8880106f6d37cd073b53ac3342f04b8a771dacb6ea68d953285
MD5 cb29492c2c198614ecacb190a2a57519
BLAKE2b-256 34e42d111f68cbd2ed1270d37b2fe23f9dbd2059cfa80f492ee19b3ad3b641b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-win_amd64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-win32.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 40f6de3a820983c1f3feacb60351677b69d0c829b63aa11c7bd4811bcbcb8f42
MD5 3c91829760f2d0124220ab98ac1382a6
BLAKE2b-256 2d9c628723b10aece08f963b8d38473433df66986b419c9789d130cae9ff61dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-win32.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7af017e28bcdcea1d7aaeab329f78515fab3becf30c4c9408e0c9b8303be1393
MD5 b629a20369324f1ddac6a850440205cf
BLAKE2b-256 1c3d0045463e7b8e9229a422507aac28fa71fa5cf548c1410f47f1337fe54bdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7923f90a5d51325cde8b47e41aa71a0f81429afb85d26966369389c5eaf99c6e
MD5 31e0b066328ef2e42da6e2a89b7726d6
BLAKE2b-256 81fcab5f27398bfa65d49e92b5846e0ed4bb92c45c5cfe759d3c14ba47845085

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fab78f7cab55c06a1a994f522adb5b4c5302aaacac60bdca7de1f8eaacaa9f9
MD5 aed1592aa73784f860d950dd44180a96
BLAKE2b-256 7eb4cf8c860906aeeb074a0babe070d399416b9ec80c1029e1ed187aed443936

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f7aa77dec4a04b8b63aeaa505c168ac2597df2be426783ede8d74d56e925b48
MD5 1cbf8f96a922e4c5776dbaf1e0fe4e09
BLAKE2b-256 0481ae320006cb5f327926d7888fabdec3181c1a4dbb6218ebe05f10f204fdd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45e02ed68d9888828edae568c17ebd055f265221c2784329ed63078283c4e0ea
MD5 aa1f54b3371134454bd4ca945e22f0c8
BLAKE2b-256 4e792455aab4dc66a7f6c49af5dda759eca3bdbd20f2fa4193eb1daf32abc93e

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 412d8c3203d294a36bed5b01942d8f81724a6731458e257b0153f2f4425e3da9
MD5 9441ea95b291a947d13af24e22dd256a
BLAKE2b-256 2560d1a14de44725277d91111931d785edc8387de1e95fe0987766b1e73a899e

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: selectolax-0.4.8-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.12

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9a593eaf1a6686b559e3f65f20d21c592933cf6c18a0a042a9f46d96a88f54d3
MD5 a8175a67d2fe6a397d2ba3a0c96a2525
BLAKE2b-256 c52da9adae174d3b6e83eda10854e3921f298a2764f604bb6b8bea68461cb003

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-win_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e57a2c314b339ffd6da899bf7d37a3d850aa03b8bcbcbb25d183fdae4525ad6d
MD5 7d6a2b9673919454ae27ab73f71183b2
BLAKE2b-256 4c4d6635f0ba2d0f456f5f5ded29691fab431da94ae8403b88379da730337971

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-win_amd64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 69cf8b1edbc2f6e401a1be0a2fc6eb1ea05679446053724a3ac399abea1e98d3
MD5 6ce4d2997673bfe837bf49085da4cc59
BLAKE2b-256 1ccb771e3e7ad7ef51ddafecf7b80e92421113cc4026fb951740009633d34d1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-win32.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 573b67610d2876b67707eaaad71d28da5a0d4ce72ab4880a68abeacdbdd825b1
MD5 e995002dfcf59e5635afd3cfc46da039
BLAKE2b-256 9c8dba692cc70aa45feb55d8241e05f8b8bde97ed4c7d5b4d83b148d1f6ebc43

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 899b62117147fd804b43822e7af0c422730c6743b27b20b233c4896363b1e655
MD5 5796038dddcb5922ecf9e02382ec496b
BLAKE2b-256 b808a20f9ef0213b8f33c5164781e8cc18eeb059779ed8b4051df39cbfde3d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b6225fd6b5bec6be59bc07aeee17f50448c9b4769531afaa079c74650ebd2c5
MD5 31fb78460e493be9ab4d2ef46769d853
BLAKE2b-256 ec2d2ba76651c93907b2c3c0005d4745df94493e29bd15cfb9edd7c0e6a7a4d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8513c179ec9758d9bbc43a9e7e58fecfcfc1ec88e9100ed592cce2703c316b63
MD5 e7808c2259105f0986ba0849b04d7431
BLAKE2b-256 10acf0d4e4061de679f5f3d1858f50d31b09935fa97c05f8a2b2e46c344c74a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a2d83e04bf0a9f0a8c9a6a7989df1844acc2242025f26293c1e12ce82b4a3f9
MD5 84241c8481e5ff0cd95dff5944144a61
BLAKE2b-256 3efe1624eb5024e897bf4074bfc31f9e5e823160aed1ac14e7720e849a3d1109

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fb2c4bed19e0c3e34b877b6df607150725d84a38dda32bccb030d8744078eda6
MD5 efc3438b54d4f34ee4f2e0c3c5cedede
BLAKE2b-256 3dfb678ea1250811a4b42686c506df43d3c752ce2158dc66fd4f60c39d4ae1d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: selectolax-0.4.8-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.12

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 52db6be936a0f0648d9d8acbfdf16d4c5a16600cfc31db1b557b0effd8b164ce
MD5 5bb294444c19054d05cea4e34416309c
BLAKE2b-256 2d859b64306821eb38fb84510e43bd5e8685fbf179ce5717496522fdf208573c

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-win_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 877df05c9fb306ed6b4d094cbd655ad8e89ea4744d3597eb1e5217c7f71d4ea4
MD5 0c35e0e4f3832e126582f7896905b3b6
BLAKE2b-256 acc0b7e681cf829f58be0927b10d606ec96126e3d863b11c4ba6cabb701a1b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-win_amd64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b812691bbdf7c958b29956138917bd46cd78b96f2d4f51f56063f584f0d6c476
MD5 6e1b7bc0e2f69122ec33935b03cd357f
BLAKE2b-256 6ee4a465e3d7b641b7693c36a20401c1cd924bd9038dfbee195c11087de08aae

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-win32.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca2e1a9a06d1b1a7549d2828240f1888a172b60720baf8a2cb90936482d8b6b4
MD5 2d212bb91b50e0180ad88ceb4e82dcc3
BLAKE2b-256 6a0f4de417c1bbc44c31453ac0582f578ddfdf4f4e29d55d451e4435cef7f4eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0cf863f652ed6de58c9f3599173be70064827807f46ddd38ad82b185fead322
MD5 54ce831f31929fc9727df000453c960c
BLAKE2b-256 4692cf0ffe4668af87f2071253ad43cccf73ac6bc6324c13fefe38fdb198d54b

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0bbd33d348a555b37d5f922c421338db690500e5b579353ffa24e3bd23a04704
MD5 ddd4e70fdb53cbb00ff8339c58adb872
BLAKE2b-256 e98148b5cfa5b2803379855050310c876a6f68b7e53598f9252e5bb3fb911ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 074254670a8a00b36202ab0cd99ce8fb2a25b3b2f10072891a35a6a85c53f679
MD5 5fc8f2ac17cad4c6912a52fc3aa8f8da
BLAKE2b-256 9f7d5a47a0d102709297b6b09473a58c7e9727955a0d6e0c8eba9b27574e3680

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1cdcf946dd46e11640ca0a0361945c3ed65627ba4bd219ccf84a53fab28c072
MD5 8ccd4ee84dcb17d2daa13d1a3cdf6f68
BLAKE2b-256 9c6b4c343f767fa61131fc03b3de278dfcff024485996d7d6c917b55b0f9ce16

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bbcd4cb837dec4b16a3ab6a8b2ec4388ea20c050092b68536dc9a60ce8f19b56
MD5 8ca64a4ff3e232d58709af54ae5d36a8
BLAKE2b-256 123c9cf255f11d04cf203b61f5a85fb273bc85778c3ab5d2ad98ce892f7df3b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: selectolax-0.4.8-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.12

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 787370345153cde7cd65f2271a00d7608b77993e1951f2f941a3c2ef92b942e0
MD5 bb696dadb24aa4d24fe2d005db517a98
BLAKE2b-256 06602c38d657b6fcdbdb42eb0e37c87fc328f517c6890d6eb196cdb69ab32355

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-win_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f96959cecb10e70fd93e89e2c4522cfa671f5443427f4ccc12285604b6239c85
MD5 d37d23b0310f7fc9216cd883b8868e14
BLAKE2b-256 74c4b8fadb6d43b7c1de1a703f4b064fb9eee65a8342bec0605cc65e02c68fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-win_amd64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ed66d2531b58ff7117c84f8d6d62d2d0d8a426f04d10ca45bd3744c7af71acd1
MD5 1e25a97c416d3725f2602dbfe9614b16
BLAKE2b-256 40a4fb9830ab5973c957f28d651968d3d2e32729bb4e6e43cb313bd2c7b7a035

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-win32.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc2781ef2a6ac8aeed10f729aaafff056053e2430e0effa291a8cc74fdf2fdee
MD5 c00a253c9c3b14c4e73281908538ddf0
BLAKE2b-256 7fc5b141cd0f136a6a41d945869d27e303a96ee76e2feb70045b70754949dd65

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbaac0b708e539358343305534be59cc47875f2b62b50b33af50f5a1ecf7bff2
MD5 93a3ba64da9ac274891204fe77ad6a04
BLAKE2b-256 af8aa955323a52cbae720e515bb7c3b4042c506b28fedf79a25501a0750d8140

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8414beca1e821cd260d94c8fe687f9a8ae4ef765e2b4710d8bd233ec32cde26
MD5 dfb21adb1edbc30b1850635c15cc7f82
BLAKE2b-256 63bb3d3e0a9350a81f3cf38e0bf69c4ad0c17e2f4bfe142c98202294fe0cfa92

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1269dcb740b7a1eaefabce6b189324a5bd9c93a39b25b54a888b4ea0cf10290d
MD5 5b0a10386f9da6cb83aa7d6fad751f71
BLAKE2b-256 62fc25939114a8706a8b17b066c594da929fbb9dcdee1fd2bb078befa5ebf2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 241b99d10ebf1df8b7b57fd90a3479abfd987ef04acb6253c4d3571b570346c9
MD5 7fa9fe4408b56b7b3e158b9bf402cb72
BLAKE2b-256 8274d2c2a2448d7355fedcf24583ab9c3083bf0dbd13fb9bad98a166517ac65f

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e334eb5d1a8ed41c539d5fbc170bfbecbaa5312c6f3358cb36b606565f748a8c
MD5 fc6f2e61aee1554e4af369fd121e02b7
BLAKE2b-256 1ed8fd9c0dc417b0e131153925af812be188f6e29139998bddfe3f9f5b275733

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: selectolax-0.4.8-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.12

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 903abf55ffcd2b5a8f8918925e9c532ffeae09b752c39371569a5350dc1c1157
MD5 2cf55f0ed63646f49dda0c10e3e0564b
BLAKE2b-256 b865623fe0540be1e8df84074c0be9136e5be786f17ece3a7ee33bfc2e3ba12d

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-win_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4be603bbe70f6c036b189bd2a7227ab2fd7d47d360c2282a3623712cf3e2f23d
MD5 8fae67f5eb4a65870269d42cc439f9b5
BLAKE2b-256 e6976bdb3f557242838394eb971fba0b0212f982537dc354aadd4624638f6750

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-win_amd64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-win32.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c7a10112c6f96f3db34e757d8e82e7441fd76c7361dc0d8f19a9c383bd4afd26
MD5 833f7b8b86c8b4b27c2335adad90da69
BLAKE2b-256 7246ac5703fafdf12c4b00c76a9c3b7d4a0d9fa1878865fa865d8997203a7e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-win32.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 059056df901766278018a1064dd4e49a6111a01fef02a7e668352fe716c80c84
MD5 bfd01f9b21fcc947c3d6d284f9fbe59b
BLAKE2b-256 153fb34159afe1fcd69a866ab5484d3b73b299f1fbaf27726536881bdc6499e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6753fe6132c4dfbc984ce9b48777f7f7282c63b3943e558459a6b8847da962e
MD5 3fdc2e263dfcecd34ee727a7604bbf1b
BLAKE2b-256 404750b43a9047f230f34e1851cc7beb63123376f40c7eb1d48e24b2eabbd5eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 239fb539f67a43cbd543d48a09314eb955b5f3fe1b9ede4e1a31feb7ccfdd6b0
MD5 c26b7113e706dbc84ed198ac560c1182
BLAKE2b-256 8e85f4f06a30e63bbbaa42685122b7b0718c43ccb37b6e58f8a160b563b6fc37

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c65d50ab4654c55a3fa17db17cae39405a688693aad0681d8cd8bf8c1b01b588
MD5 3ce464aecc4b0704fa9cadef661e21fb
BLAKE2b-256 2ba9a30c621ae96d50c8ef15de3ca0f35c4b2878d5e1e270dcb6a9d1c1299e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4542a35f5ea993ae8bdb5850346f65848794afabc83976e576dcab07a6699020
MD5 047fc0dbd0147ae38c4ee63088044bf0
BLAKE2b-256 e61da8457a0fb898d9803aabdbe2028841f03889ba1d95771164c1bdce9fd1ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2166f893420119151bb644f79c145f6d75f1f0435f98b071d9e663f273890551
MD5 e9029b08eebd1a0e4ab6499c16681d42
BLAKE2b-256 ec890933738d60eb6e0d872e68c7d473d6efe9e99a0f7eec8a970febb4c319c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: selectolax-0.4.8-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.12

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b0e6a9dd04e2e4832e8de6ebd8902dae8584a56ae9b7a826f1b7c64ae3fcc35f
MD5 cc445b9b1d3b7cd274c491771a746bc8
BLAKE2b-256 50f6a36cb5c69aca422be6f0f97a1158a2074c67f31f5eab00f7abb5e36216df

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-win_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e860c5f3970f55d078d87430fb139dadbdd8e23c2ff272f93a999a44611460c6
MD5 9df129fcc3138202843c41eda01cb5de
BLAKE2b-256 e147d36450d184a4d3d27faf13f84dcd432649529ed96a1c64d8fecffb3434f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-win_amd64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-win32.whl.

File metadata

  • Download URL: selectolax-0.4.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cc982706494736b455e7027c064c96048cda97a748fee4a51b5b064232096888
MD5 d29e6e398cda72c3331df286dbd24be6
BLAKE2b-256 773be0c0d103d4d5480e1c1ca56081159d72fe944a26048893b18490c64bd243

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-win32.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44af7c7ecd4c6c55fe1d6a13a21f93aa8fe6b7d3c94d4ede75b620012f7a4686
MD5 b09c82a75c598c8dff09978a68db7488
BLAKE2b-256 05c1f15caa8533015531b49337ad656a5a421064e4fe67927fe8c771d3ac6de3

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1204a0517766d67e0f08b1e329283355ec797a2888100bb29125fe698811ed65
MD5 599d0a19c354af8cc029f28b3e9b0228
BLAKE2b-256 5a2b194eae00c052a6511a2a4532f8d927c50bbf804e3346ac75e53993010597

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ea1c2bd2bae8d57d14109f059da718a4134841d6c37e830beeddb06c4e20400
MD5 1d94c0992a76d20f68fa6c7aba5d4f09
BLAKE2b-256 02aafe3a4a5f21bef83672a653dd5b5012101e9e377d75464c61931cb0a5f2a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5c76b0b9fcec0446f6dd34ad164b5c0e452ca714843befdf164b7f3edfca48b
MD5 1580d84ba8a02a52129fa7f993fef6f8
BLAKE2b-256 0b24248d4171a1d5115b37e6154cd0b321a3c62d2e9214ac29b1bc4256450523

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 969abfbe4bff02b0ddff54542d19bf3806048d3139ec2b5e89214ced1f42a4a7
MD5 711d8ef9b2f39e34b5546c7fc743769d
BLAKE2b-256 86e32f74393a9f976e988f55e4acbcb4d7d18d86715e4ae02cfe0699f3ef0ec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file selectolax-0.4.8-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3284a479b85822f0c468450557c51c81526beafcc705545bd86e6455fe5fd78
MD5 281922d94c43f0e344f3fa34c4ba0247
BLAKE2b-256 b8cddca9c5e6795e954d6be01be634d60e23a1eb184e8a940c28c5dbf16f0f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.8-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: make_release.yml on rushter/selectolax

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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