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.10.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.10-cp314-cp314t-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

selectolax-0.4.10-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.10-cp314-cp314t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

selectolax-0.4.10-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.10-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.10-cp314-cp314t-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.13+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

selectolax-0.4.10-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.10-cp314-cp314-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

selectolax-0.4.10-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.10-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.10-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

selectolax-0.4.10-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.10-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

selectolax-0.4.10-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.10-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.10-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

selectolax-0.4.10-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.10-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

selectolax-0.4.10-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.10-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.10-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

selectolax-0.4.10-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.10-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

selectolax-0.4.10-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.10-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.10-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

selectolax-0.4.10-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.10-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

selectolax-0.4.10-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.10-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.10-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

selectolax-0.4.10-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.10-cp39-cp39-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

selectolax-0.4.10-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.10-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.10-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

selectolax-0.4.10-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.10.tar.gz.

File metadata

  • Download URL: selectolax-0.4.10.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.10.tar.gz
Algorithm Hash digest
SHA256 89764b4d1e32d38e635dfb270a639fc707af4315b863fd161357a517321e5046
MD5 c85a8099fe236beeea7955236fe0f66c
BLAKE2b-256 47dfd19f9b47eb6c1aa0ddf95259c757c018c39682facb569e81c23e173bbf35

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10.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.10-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 68e1ef717b47f5cdcd1b151b2176d7184c38cb3772f8964509979840575203ef
MD5 db4edf286f2215991190d1b31deb7312
BLAKE2b-256 1b02e511474facfd324529509626097f981986b7adc935fb4eb436c0812c540f

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9c4c9afbd28b81892806e9699ecd323656e1eff7318c1245e80cd6bb78566a99
MD5 523225b9b62662f2c7af52429b0b71c1
BLAKE2b-256 5be58fbe188c6c2aa41e10bd83b46e0498b60ed36584f9ce0a7796ca7f7cd34e

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314t-win32.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 67f826152635521e1751665e315f3be82d027fe79d6446bf8434e0f7069e55db
MD5 f4614814ab6d4dd50e8298e801f13cd6
BLAKE2b-256 fb7fb20bb6b03b5cf8e9ff6d524796942291d9157ccfcdbf6bcc5fc322fd2d2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 373298d5c2e22a73740ba8f60a5813fd6bdb8fa2c0fd170841341ad0119bdf6b
MD5 502ffffdc735a2b661c3f8b58c086d35
BLAKE2b-256 b42b39cc5599b5531423a4eb68510a395baf8ce8ba9c3655dd86e7b4bc6140ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b0e1ad8b3d3d11bc173d33bb0fcf9d3ef8c667f1f3debd31ac8e9e3880ee174
MD5 0028b135026c4290905a11efa6f2e4a4
BLAKE2b-256 849d51a5283bb95c679448bc5d3e1da9a00ebd5e3ad983e2247d1a1190ef3ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-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.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3d199a73894368b83e5d744f64bddf80c22a37c160253a8e81c1a6000be607b
MD5 7866701d1c84a9d709773be15f9bb72c
BLAKE2b-256 434a3f086f729dd47423719e5101f64342bd637e4420b0dafb3e5df61a9b37c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40ecd0ff315dffa4a55840107367b0a54f2cd35be66e700c619364e0cd087ace
MD5 6387a73fbc6a7a9e2d917ebdc39bcbfb
BLAKE2b-256 b59ef977b33c18e8957fca9fcbdf445e5501a7dd1afd57b3fc15d07de249e6fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88475ef523fe5426d113e8319eeb741806a51cc025840f337661734c65cf1aa4
MD5 ce61f290fcaeaea1c55109c6870985cf
BLAKE2b-256 9fa4c4f94d1ae0d3da58a3dc410d0c59a8e37429c74b38287a2ab0ed0480123d

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3c21749e3d252419581160f3a3e43c1ad95dd0f83a13fe0d8c8fe6256bf7bbe6
MD5 ee487c940f9a3d18f1472f8053069f93
BLAKE2b-256 0a9b74df013d85601d21c5e79682576ead17abe660ffce39a6fb7c300494f829

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8b57c64690e3c86b5d07386e2e598f4d3b4990144b1d5717db7038d0b675a97e
MD5 5d938e95cdf445526febfeb966bb4f0f
BLAKE2b-256 f4711a1d8196ffa9fc84c64a66294ef1ecdbb9951c7a04b9bb6c6d224d776712

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ab07fc342cf477c0320d22fac52917b824871caf5ab177a0fd94377a901ab657
MD5 5c5a556d97a57e38e23942aaab0aba0f
BLAKE2b-256 7be10a1f9004a48d1229d90ea42efcd9093688c3afc852c2d122245c499e5821

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314-win32.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5d5b5437ce7548e7bc0b7712114de07dd0e4f94a30b06c968a6344148621df50
MD5 20eeb05619c687955038dd96b4a0cdb8
BLAKE2b-256 047da964ceb566a6042170bbb42bd4f22117a13afe15db285c0ab858477c5963

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 794a10f0c2cb9662ad85c5a970a72ca072057d68f7f0b3cf7b3230e5f2a8f221
MD5 698b0981b0968c1ae8f61e03e88272db
BLAKE2b-256 1460b1bd8724aa041b233a32d9eba3135fd7d4f285b1f216c39b5ba7263680d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a96d59ba2a8ba01e4f732913816f5684d30d0646b7cd0fa17377fc9d1032cc0d
MD5 4c1df2702f9ff41d7e9464a7a2d9ff2e
BLAKE2b-256 b3a9c17ed28a06b6f9214845719c8fd73edfa21013cd03da31ce9a2d83951259

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-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.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab8f95b196b2dfb2be3ea7274673d45bb251ec2e16a0e7a3c1fc21c1c20d0722
MD5 349937bf785e38caba236ec8e2df8ff5
BLAKE2b-256 4c6399e3598c137d638ff67aba0b53d99649e560c04230c838776328be98fd64

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d60cabbf1899916a6389fa36f2908b1a76e00dd044f710ae3dd2d0b14919dfc7
MD5 106ec05975d14cc7f91a77e3259c6e05
BLAKE2b-256 5b653cef0d30585e22c808bc09848e318ccf30b3d00a9123e66ec3d5eb5e5899

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01c1354b158f8c87b72ab50a12b4b6d7b276150ded39210d1078d65d1e24ae0d
MD5 9189ed956a1de8a222094c065e0506c0
BLAKE2b-256 dfa5121f398a2ff01a5947b5601ed16f99e29771dbc21b23b18c8f4527f99a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a95f67ed9d5947562e9268332cc7165660c7db0cd3faea959e13b6901b4d323f
MD5 609be8cdf5bcdebbc7ae379bb14af07f
BLAKE2b-256 5f21e48766fb5f921d4a84456a87135a0605d72678753b912be3fd25344f104d

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ec333fe02c4b7d8a03c0aa58c7c2265edd3312b1ef309f03efd020f595f6dae1
MD5 14144ee1f98d2d1e39bb1b86ad7238f4
BLAKE2b-256 23697e31bb9427fee2d7506d20da60257ec3f72c278c176dbf47b7e0c494d521

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1bb589f6ed0f1ec28784c2cd29de111a5b6f8129c3ecf0e71b9665e588667b97
MD5 2b671b72a89cf20c9a36a0cbc2d9244e
BLAKE2b-256 166be77507d5aa7d5724c94333fa229694e108c0a4ca88a1c39ea9ae9ed7afc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp313-cp313-win32.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7c596b424c55ae87003140f55e6aa6f88e060b645781fa69e947ef60691b2bde
MD5 2524b3b79113c2e5c3c916daa8a9c270
BLAKE2b-256 34f383e49b1b8dd68d4844a85930a6d68cbf14636be222cda03229833b8326be

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6517b40e41ae5cc7756f92d88c59f178eb4a3683c7ce39c66bd5617587f628e5
MD5 a8d4ce83bfae9d33d79b5f5e4bb14ebf
BLAKE2b-256 fdd03f9ba04dba314c2f3237aca73e5b6c9578d693297bc0c91b2224d48b2455

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d42566a7e649d4e5461e763a241f46542df2613876422e0530bc59999063f36d
MD5 733ec307636cf74ff29a09759cfad7c6
BLAKE2b-256 e6fa0cd29c8a629fe890a53ef2db9cf9282dffad9f4d0cf9a41553a87058f82c

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-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.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16055f712bd93507ce61ecac156bb7acf96b2e46c4d4d30c616e810f74f4da6e
MD5 35f8fad659b892b0b92bd67e23fe4c50
BLAKE2b-256 6444ac6011d2785f643baf3be4b8910e657e71427d37e41a15a513274b794425

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5c80477a3a93f0ee350d832c6fc764cd2df1299914a816bcd5ed4f0c9701b9b
MD5 2d434e32ec1550d7b88a43c7bb76be28
BLAKE2b-256 fbd5687dfb8c09110a5986a4f3f8e424b61c0f71716c5784077b76f02e4e81d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b43da45acece07f94e4b0d555e073f1a91314c98cb86d10860a1b291bc498976
MD5 3f606a68f09357d58ab5a93c9e8a5207
BLAKE2b-256 9a100a2caaceda0c6cf226fe5e43f6d7b9134207cf61642bed651712c7599646

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3236fc0fbea9e237ee963274ebae700e68b9d6784bf91e0b3693eda63b393fa2
MD5 bc8fa18281988b1b75c9dc3b8e4e5417
BLAKE2b-256 3788f932da5e018dcec1fa4286414db4798afdd244fbf95a46ac79db018318e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 98f93b92d23a8feb88efc7c8e692221456bae30dc551d86d376931491152b909
MD5 4a2e66d44c6a235e2feed8bfce806e9d
BLAKE2b-256 fca56a84520df37873cbc08af4fd8a719a495d5971a7c370c2ed8512e8391935

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4b4b7c5d09a20539d369891332a107a869ee170453254048fbc18f893deb4f9
MD5 18a7319013e51232c28392d66d2c4745
BLAKE2b-256 1066abcf20676cd05eeefef58f6644855216575ae3988b719e914d359ffa3104

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp312-cp312-win32.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2428f04d2a48ba5f4c182f0d7234a7e38ac799b3358b3063f0ae41f754ee1c4a
MD5 95564bf5ff21eda354c551d573c96af8
BLAKE2b-256 677305eda9364c5f1053f166648a1e69c546e53af0e01901a2f218b32c2a7010

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ff2585eaf13ddc5c6614b10a7e47679b0c18a78821495e0c448364f8871592e
MD5 3f036096e2691a8a7de4cbc5494f2dc0
BLAKE2b-256 4761c4e8aa47d25245644cc0ce60ea2eb922f501ccea8f642ba01c5d551e8959

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 425288d4f5b18cfb0049fd1d6f3bddfba319657b9547b0e2bd24103b4b69435e
MD5 94ec3bf51f6d9af2cadcbd65fc3d26bd
BLAKE2b-256 23f385f1ac82944254822d7bc8b20bae674d9bb4fb93fd3e101f6f807c7f075c

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-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.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98e41ac4a761c5d4589ce9c40866a80fa2c5d413ac6b3af9546b43a2b3a8da18
MD5 9e0fadc75fcaf3c54c6fe6d4d6004bd0
BLAKE2b-256 2ec523903b34869f6721c36a46b8231da202b7af729f6e28b54fbb06f59e5195

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d41b7e95ab0e025053efcba71267af12a6c12bc624e3bdf5dd83c6534f3d696
MD5 1c90b851c3ffc4a40bff97c89d5c4b44
BLAKE2b-256 47956d821c8de1bcc8be380c4f9efc6688a433796a5c18809b77219e9616a918

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40babac4aea579edfb32b74acdacdb4c38bacb1ee3d1c4189f9665c52c67586f
MD5 0ddccf9c829df95acd10b5f3a9a4c579
BLAKE2b-256 76550181dfa3cdec4c5db9868ca489fc50b5521a74c1847a0628db6e08bd3359

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c1933f53fe7410777b3373b9900010ae8d392a6d245f019d8f011d12f700e389
MD5 a492385baf8d540d44d39ab7491c3282
BLAKE2b-256 3326a7966a2e2667463717c71903851b4c8a434afd3b592e8528bc87efa1cb1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 746838a34df35ceff5f6154991b09aa6c27f044dc1fe9a4137f8c57e3e9f1203
MD5 bbf85ce4338b65b983f718cd3993b223
BLAKE2b-256 cfb57eb96a229cbdd7773c223c7ecfd0b0eead78b330218c6768179ab5daa2d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db236a92e49b27369a98b9e8ac6c97e1534368d83281d097f3e50c2ba597f112
MD5 9d7f4930f00be8a4a9ce301d53fd4368
BLAKE2b-256 818cae5b0f04d1e39bc212f3a3e1cf308a8c5f117f03cd3c089b6a04e8d8fbc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp311-cp311-win32.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e053064c5e00788a6bcc5427a753e41c058f29e4285bf84a3e663989b7218cdb
MD5 9780baf2b4914ca1cdaa5f34d527fd02
BLAKE2b-256 06af5346ac7a2053a502687b136c836c0902d0570398e8f71d73182492a3863b

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 547de570413e22ae5cbc8432d6224dd5a2d5bc66d1a50e34b705e5940d035caa
MD5 86891080118d31003ebad2ae4df851ad
BLAKE2b-256 c780cb89e578a53cf51674c9083e3a9518a45bf5b8af56309cc1fa63cc007703

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c74168deeb116a1271e74e7a157e329930b7f54e328b323ce00bf7089f39dc9
MD5 70b6dc94ca3adc64c87028277b1f26cc
BLAKE2b-256 6e0346ed77c44e877278723c31ce8fac7942a6909d46a4d50c87cd6d685b21ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-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.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 975bf1199c80965307168a05c4d88312a62b8151ac27216ed1248fbd175695bb
MD5 ce007d06c322b3a13a0aa6199bc745ea
BLAKE2b-256 5bf5fdb59ef99828ee43e2792507bd67f7d5dfd844dbb1ac6512698e16fa8add

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48c238f4f2b4ebd3d94ec260363d2bbab7df2825b592a1f9b12d59a9a9e9ee9a
MD5 f4e6f8c1304a05f211b9f399b653b1ca
BLAKE2b-256 41e77bef2f76dfd0d270899277d07d7418df82623f1985d570f73ad0a0b963a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1bb382bd7009676716814ee81327015ab3d472aff0148fccbd20322d37af83d
MD5 750d0b118e0c77977c323bcbf33a4999
BLAKE2b-256 8a2960ddd1570386ea2e13683848b7d21ffbd1d41c921cb88df20cd10fd6679d

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b65ce508ed7f3951a2f36f807494c253d0ebe99d2b18ede149f9a97b99be7d7a
MD5 da936a5425b138280300b581efa2f7cc
BLAKE2b-256 6334cee18c79edc4268b679ff7af60c58918f2c8279de7715998c81ff4f39eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d9c5b4a32e33359bc6919fd9f3259d2ba51c04b8aa5b25e91611d94d4a503020
MD5 35dcff6cad1ee79466e1ec0c9109ec3d
BLAKE2b-256 bde5d9ffa0b10d0414f820760ab599a0f2ab5dab2bcfa15cb61d81c7044a8323

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fb27937417ca7e60a5b408e1deb6fe9af691ba16d962101e9cb1e73aeefc1802
MD5 13729af87825f81a8232041faaa7ec58
BLAKE2b-256 9094a0c9ffed6816467213783132621c4530520ad17a264b2acb69f5c38341d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp310-cp310-win32.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3608997f2ef5f1ba80d26da784604335229deeae66e37d67122b48ef2436bf6b
MD5 1e85736a0480d4181e4454edf551725d
BLAKE2b-256 183ca507ecb4ff757387cc18c0600a5d282c43671b53e705db6d8574ab09249d

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0770275c24b900410eab4b08dd2e6ca8508bbe1d1880bfaf7f17123ad8889242
MD5 396fcefb86eb454aa73a4d70e0e8e585
BLAKE2b-256 dff4676db73dc3273dc0a10da6c9fde7ac3daa610a7a0c46fa84c89f58906616

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 529333e1d855a0ad3b9414b5a798bb5686f584cb868f1183bb5ec9f3cb5fec4d
MD5 30ea8521543cd262c51e812f415efb6e
BLAKE2b-256 53865eb10718d3100ee961e2b8624681d1d65741c6a8a38de61f0b57cfbf5b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-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.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd436b0143edb5e1c4f126eeb4647344bedaab9e2a379eddb528ffac33c7adad
MD5 9cb60ab061cae7c7e1005b0a0617ccae
BLAKE2b-256 52824254fd5cdb78075f1e32d145b2dc286ed4ba42a94e24672fabc5998281a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8fc8fc6b8597eb724b647757417080f1ba042eb6098a702d55cc8ab1eca6367
MD5 a32a8e8f62ec981f61a6fad688e66989
BLAKE2b-256 610053d8f7c60dac83744eb7dba53517675c9988ff93bf1ffa745a7bd06acf7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d06ddf24ebcddead2c5a2ed96607f46651db899b8f331a16481d88a91d5c9af
MD5 52cb54e32e7246034e56d69847bcd88f
BLAKE2b-256 821d4591bf79e2e50d91373330fa28af995453e4f93032b81a4f019c2299c7da

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8cc9177f9200687a24ade718f49cff09738add8eea5230445937dc6de322e1b
MD5 5e0f2d7623b885f1f383bc003a982ab6
BLAKE2b-256 4659442ebebf0d18e0f873101956a8dbe441752f758289c1a780503c6008893f

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0836e228bbf160c9a56f8909f26166c5ed1f4f8d5b17db895fe1e7fe6efae42d
MD5 91d27005212f613d41735db9f77ffc8f
BLAKE2b-256 76eeebecc06faa25212ae458f4e6cad986cac12b47ee948df0a8a4acd3b8202f

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 54aaaf9ea13343f62ca2de4fd7667ae6288050e9d9ac5305a8afbeebde67c74d
MD5 168030fd4823ddd768a913977ca12ea7
BLAKE2b-256 f8a5b915b1fba90d90640c4ab4e87a240a5a220dde3d3e053404f760289969c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp39-cp39-win32.whl.

File metadata

  • Download URL: selectolax-0.4.10-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.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5a07ff76d464379408add75f69d46e1fbfdbebc102d707fa6bd15ec66ac204f2
MD5 219c108895d3137a6c1ce37876503741
BLAKE2b-256 7774fc0e116c8c0b820acc6c822f81801329829fc69bfd6a0fdda6c5545e11d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d702433687b3b8c9355861f1fe3a7d43d0ce76eab826236b9baa25d299d75aa
MD5 f4965500d1180b88a8c8e10eeab78675
BLAKE2b-256 b9aad3d0f805c41adcdbc00df71a5648743930d766eb6a4fd819ac0aefa01d4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e83049e429ad5c7003777afdc37c7262d669d599e92f36fe10b48190892869d3
MD5 a437ec230fbc293e2a61e8e3fa80e4a1
BLAKE2b-256 ce40dae1b674841be72f3326790c39667096f0d514ccb664c1ea079c8affe0e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-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.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e7636ef25131d36879d814e82d3b02614b10433bc9fc6ab4e2a2c7e0b5d8a0c
MD5 2554b4efe6fe7542811797be460df369
BLAKE2b-256 93ffc3e03ed544e494b5defc7ca77c2ea604781b1da1f12fa70ab26770835baf

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1cd5d09606aaa02f82d8cfada6b1b98e4cacb5d4b425f00f20a3fb2c2693bd33
MD5 19851ff983e18f396ffe9eb6b8638e0b
BLAKE2b-256 54d8a5fdb42d71dc9c27a7e11314a5329700f1ff2a7e36f3cf5ff07303503ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 194e50458024ff2281d24baf63557b2e603accd00123bbaf6b6cd9ca8f6f22dc
MD5 68d8e6bb1e2cf8f7af92a5afec2c0b37
BLAKE2b-256 d9d57e98a72e5a5c6283cbef06a57a82a0e474e7d127fefa7f12356300769989

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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.10-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.4.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1cd058a6b3b7cce80c9a0f5858f4fb3c4569403a660f22555e5abdb65c98f5fe
MD5 ae57c555975370275e712039814e33c1
BLAKE2b-256 2a313580112361166ba0dd77bbc963ea484a3d9781c64bdcadd93b9100b27211

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.10-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