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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.13+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

selectolax-0.4.11-cp313-cp313-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

selectolax-0.4.11-cp312-cp312-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

selectolax-0.4.11-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.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

selectolax-0.4.11-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.11-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

selectolax-0.4.11-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.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

selectolax-0.4.11-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.11-cp39-cp39-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

selectolax-0.4.11-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.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

selectolax-0.4.11-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.11.tar.gz.

File metadata

  • Download URL: selectolax-0.4.11.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.11.tar.gz
Algorithm Hash digest
SHA256 2b565ddabce6c9a7b73fa28a39acf8f411a084fa2f169234ec2470f552d4421d
MD5 3e02bb48ed617a26a98c4971a0225cdb
BLAKE2b-256 396caec38dfee314a38cb7c0940fe055b22f22627b3e0a216772c24372eef3a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9077fa36e99ef4bb801194ff8f492f67279c0562e7cdfa9b4d06f5c010131969
MD5 bc00d5529ffc3f113ca7d546a3f0de00
BLAKE2b-256 3703193913c0f3d37c1e8d66ebfa0f139b2f286f70ec285907aa98b44a620447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 41f388c26304c1d840f5ee5e07c06bb9388ec834d10fec60dc148f22f98efd38
MD5 0728b3e366edbc98c00dd4f1d7f737b6
BLAKE2b-256 401a88db3237f2fb357119164c4f5a33a659615e3d10dd0f773d092341ee0cc4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1a6deb4464198ac67f32e56c4463aedf3e1d834b458eaac5b5b5b1ef02dcf15e
MD5 a84dc90199c583ea23065b0db492db75
BLAKE2b-256 97140b4865125e777c9d852c9e388c1165e2ef4d7f1fb46596b13a1c02153fe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28915b8fa90c1c3cb585858a6d24d433a3f38ea514aea59013bdb0930d9f6025
MD5 2fd810d3435042597bc64c997584e6d8
BLAKE2b-256 aeb6e774ec9179d7524adf47d7187b3e4e630104e149b2fbcbfe06088a3f4847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1da54e42ab99b9191269306e13c0fd67ada1c6654e8dc8d74fac615931dd3c62
MD5 f2bfdc8a8504b17fc468ecdf112841e5
BLAKE2b-256 d033ab29a558dc65d3a1e28c217b62605b5135123ad89f1f825c8b741366e0fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.11-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.11-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.11-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fad5b1065f73eeaa07ea343cbc548aaa9f9a5c359c3bdd8d98f5d80b61550d1c
MD5 2bfdb4e2041c776a69b97e5a23560e6b
BLAKE2b-256 bc73331f83e64e3a17478e832308248345d5224957eb7a62dad2e7fc5daa15b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3637d21f7fe60fbd6ca3dbc67a1747f6a55a9389114d72f06b5d69ba2beddf01
MD5 3d2ab1ce36b66919f8f9e0786e7a849e
BLAKE2b-256 b6ba25710a259ecb2b66b9168956b768a2651533c8ea813da9decb0e0f3ee39a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b530a2c4fad7400af27b2b7e0333c1318ecb5f5dc38e8a141dbe3bd81b398fdf
MD5 1427441fdd9fec7c49c23b468ee06999
BLAKE2b-256 06c41fbf3624f9e52dadda8471dfb68eaf6021e819b827cdb62ce878fa28f469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 086ca6f7e4c475bfff871ec1448ae5d342d43d6a2ca2cea65160d01b3a6a75ec
MD5 7b0d0cc04e61b8fe0f5f244bad19d9aa
BLAKE2b-256 97e96289d23fa4e5ccd5570a31c9180616a2e3c87ec565f7887bcfbca6204b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 466daca0599408c9d2cad7658a68490facc5c9b8d0f41ac5d17948914f57306f
MD5 266a9ff9e2c2eda0817c44d825a16dfb
BLAKE2b-256 49f9f172cfe8c29e295b9d7bc79e5b071937470f74311cd04dc3090d4166520a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e5929cbe3eedfaf51a09ec89642ab5355b703486d43bcf3c8f0c27d6043a488d
MD5 dea3d9e6a0699038b49effd979921948
BLAKE2b-256 14b56d9ed39e909752645798c1469fb9443c0880ede999e63241ee89e91c7a54

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d33e2ed75cc33e7af3fd50521c33e7d8634fae23bc197a6cee6a5015e056eef6
MD5 ee3905da36195eaa72a43fa6ac456d6d
BLAKE2b-256 f24262c66067cbd3c360f762ac6964793091ea0371b3527ca2bf90955fb0b6f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b842c829f916fecb51f0f55882eca3e2ad49e85388178f14ae6fe0912be0a57
MD5 9346afa45cd49cc846dc4796997b1fbb
BLAKE2b-256 255a3fc3de5bfdc70af07d55bdc17837b5fd4ae6229444868f057085addd9a18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd843540a197a33049a08fd80e59bfeafbaa688e632d53a05a9b65af5e88296f
MD5 19c1293c40245d72e7cbc225d70a0b86
BLAKE2b-256 7081533fa254be8e63b1c0fbe261ba4e2c1ca86357a4844b0830a0d7ae0985f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.11-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.11-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.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 224682039ca13eb822be626e49a03592ee2b8557bcdc6381e49417a995170c94
MD5 dd000f0e8521d7839380b9fefd5ae8bb
BLAKE2b-256 84c3f541806ec7bdd0ce8ec69351572d2f2b3919264818cd5bb792482684d492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b0f56c49161b18621ac452e42e02b0c5c61ba4c21095cfff3990e040bd9a043c
MD5 3a49fd5fb753b46aee982a04be93db32
BLAKE2b-256 96d69d702075634c1a38517a8af4242346bf0e65f206703037b56cf8da114eec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5ce592a92fceeca2694b369a83ad72891a9c356f668718fe7e1c83eea407bb4
MD5 32b460c2ba47b6872b08a2d57f8b5f80
BLAKE2b-256 12fef4d7d554cd7db415c831c8fb5a2b6bbbe3bdf5a49c8f417a6093d4618d6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 663ff792f92ed749cfcf452ac19aff5da74b05521e7daacb3b74388deb14d117
MD5 4fe73cf266e662fad794489ac902a7ec
BLAKE2b-256 085aba94f50ca5a6a0af65e8d47147bbe9f6ad11c408fd03c832ea737836d3eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 597b8e065978be200c598ae6d682496d96fbce14d34b5d519e93cf5b6be5fb60
MD5 8f4689dcb97e69d0299161eefc0b1bfb
BLAKE2b-256 83eae78be8710bf162b43d6336ee354fbe21ea712284bd0bf58c67e15264862d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5c7a91fbe1a94849d85228897c416ab9b4518bea6b04dce8ef8acd825ec80e9d
MD5 d12db911baaeaee3cdaa35056a9c7e9f
BLAKE2b-256 6e902888c831ebd473b6c17486d805a16925187c743964bbf895ec421c1cf2ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bde121202b33e6041e9d2db1d62e7466b5883fd1c441eb96ff68d3ea015cfcbd
MD5 9c97e3c4a80d3f639dabd791f41f8716
BLAKE2b-256 155db5dfbde64d622cc94d2136edb0caaafb5779ebbd884f6ae9c041d8dfa669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8121f4cbfe870d9ad24ae418a735d918d55844e905c3270077e97f4e579770f
MD5 d84e5994682e2af94e98c802df824026
BLAKE2b-256 5a08e242e5785e049499771ac5e560112396d244e6142348eaf1c70849f83a66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3f6fac361b5f415c409dfd1a07dd0e9a5899d10daba8d88ce16bd552b0e06f2
MD5 9c323a4b5b237b85166472f1670bd5c1
BLAKE2b-256 48f6acb03eb9e468f74fab17c655761179022fed57bfb1b25ff741e8c0c6a06c

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.11-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.11-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.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8f014f328f6f79a364293bca54d43af1cec776dc10a5302054a54b5fb2d8675
MD5 b38947a75230d14301568f7fef6e316d
BLAKE2b-256 51f6626716e2730f396bd81b853b37e9eeddd3a847730efff7548ad6d695c6e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47be0e591125484de14ff0c9aaaa814dd4a4019de35eabe360e88169a263a2b5
MD5 4ec75884ba4d3b9d167afe808f10e484
BLAKE2b-256 a761956974dc429e3df99814d1ba5629a324eef366e2116b030fdd5354713402

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 386494779e5464e587ed4dc076e1c48c24ebaf2da1e3a249690551d1f97fe8ed
MD5 30133a95c0a95a2c9c3fec2ce22fea29
BLAKE2b-256 53c5c367cf0583799d8c32555c4fa3b900b1e8de1aef07fb009c488a615b6ed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5153157ed60d968ed303acbfd2c8762fa0c0462e2663bd04466471c565deb88a
MD5 be34715b622ca0e4e4ed05f12c238561
BLAKE2b-256 4eb56e0653d45b8d138b3fc37b37780b989761fb486e7c002aa413eb89d3ad64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 daf7a841d1baa795f940200bec45019c4a31020def16e3a4e35485e82ed64167
MD5 d5645d4e4488d2cfd84e542fa57403a6
BLAKE2b-256 6d485f0e2f9d098333efd3a83ed9dae78b83b6fbb504be1c5a4b95b28e7b5870

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 48545b0351b6f92c4ad2fff835e832768d0cb37834766a82f40242e51fc9901d
MD5 163d0707aed329963ffdc4f7b2f85e2b
BLAKE2b-256 41dae9f32bc598cbd50a5b1e947636f13396511e3d916ab603b622a61c84347f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f69c377298a09f571c89af5916ac85f69a9aaedd7312b0bb803a46d2ca2f9048
MD5 abd7d16cbffedc034b988d0928880a63
BLAKE2b-256 f3de798b416cba8cc05b9382d81724e73abd887d6ebe441edee848bb23773be9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dff45ee85409e6126e4900e0db6950a59a7b58b7ff9d667a6a275b0405b87692
MD5 996e56318b76b93d7020b02bf7c230dd
BLAKE2b-256 c8b9449a4626740099a5cebcb112fee82e423dd1d603f43f72e22b802acc1f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f0223a83051ece2591a1d0cf487f1d0719cb76660d7c5de4c0a201b761c5c23
MD5 3a96cfad2c86c6ad6c96ac123f09f5c6
BLAKE2b-256 0ecad95beee6453d3837cba042351e216fb62881750ca930b8d29b223e174224

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.11-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.11-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.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c3d4fd42deabfd03cc5c4fce9517e7226054f9de3984759476e6c4a7b7fe187
MD5 2eb0c30dee2dbbd5e0059c18f6e11048
BLAKE2b-256 e1a6a556d87dc37e972cc615384df8376e94bc043fba2ef9fbbf68629a1c8d99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 168b34466dc4f998d7ceb04f218693546d141543e7c5d327f9e006c0799cd62c
MD5 0d53dfa00ad2d1f384b88a8492e5258f
BLAKE2b-256 a460faa1878ba9bd362e9078f664e570d3085b3cd679aee49c044a03b4530513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 634db1b7ae1b1f10ee0b0adbef0eee1aec65a3d01f09b75132bc5b043b7623d1
MD5 f882d0189b2f4bc82ea39c28b989f575
BLAKE2b-256 a76521ff78e6050b71f6467e7baad3eb58b935ade210a72e3e339ce9e6f68ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 25d633cddca0fc769e7d890e9e838908fb4a7326eec5e3b23ae42c27f457541d
MD5 1c5bee99e0a2ab37edc3d7ff5da13cf6
BLAKE2b-256 d796d3b085e0a6bcb1e9a21a62617a826f14c7d569f70fee848579039db276bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 dcd24bfc4899e4df2bdcbabc973384367686f391e5a2d8ebb229c043f43be82a
MD5 7eb65e30bb4fa6ce03cda1db741e78cb
BLAKE2b-256 08283d31a7b6aaad9df1c874278d859a8bae025ec26dced1cf5cc12214901151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8da39a07a589fd181b5e8d25f695d7d40d3a1d89e47c2e00c08ece7fff5ddd3d
MD5 ad42b848788ea7546dbb4828f3ee340e
BLAKE2b-256 ac176516a608f7d0f258b27ae7ca838a4db2fb72ade6fed21a05b566795d44cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e2d7e1a2b67a5e8d251733b2c3f978ed26a56d04552472e0a2fb5ea41fa4e663
MD5 80df8f2cddb17971bd06c4f0116126d3
BLAKE2b-256 2b2a07c4a7421bb3d547a54bdd11e91a5e6c5fcf0423bf0f58716fa04db9a53c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9862c1d0435e89e419e0c595084eaa8f6f71c3fb7a968bdff51db595cec07161
MD5 822175b0c48f70d5aefd7725d0ede80e
BLAKE2b-256 7d647b5be0d6a53b9be7f0548c5e54fb2ca9b6c59552fc95ae9ac3d7bccd44ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81f21972788df01b83a5940d9b7d62e6e222f80872c2cfaf67927276e8ef4975
MD5 97b9bec78bdf3c5f129f09664d89f720
BLAKE2b-256 5d0724287ec819f8f8c5ccdcf39b3672fd569a6f53acf7c3ed167dd829fc0f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.11-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.11-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.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad4bbf08af4e2c89f78dd12a7b8265f0924d0434705bd955b5a262297a924452
MD5 40df0fae9527a8ffe12f38283ad83cda
BLAKE2b-256 15422150e058273f5afa3669026bef89bf16cd7d76b38adad4f0a537fec34c2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8166bb8cad8f2eabed664f689b708851078b74dd50dd93e426b291095badc2cb
MD5 9b8b26132d8e54860b6376d97d3e4a78
BLAKE2b-256 7568058eb65781e25c25d5db2eed4a26f0a8a63251c012def5e20eab1ec11eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a532f1993f08f627300891751982dd9641ce1bd29618b535232aec9fa023a1c8
MD5 c455398b1fb454d83d4dff2de518906c
BLAKE2b-256 665a804248c189b0eadeeee613dddfaf965d1476cb7e6480222c2ea707d7d89d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80af1c7345701934769679a83fcc86526c56eef590423cc2d55cc1eb81adfa5f
MD5 8c0bc28b0e6b04db23725887eedaed8b
BLAKE2b-256 78acaeb509fbeaccf339ef66c7ee9e3a203c908e5fffb53cb4deb5aa29a16a41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 96de39e2f28c359cf930547193b2cacf0ab6b9187309e2515461fff9d5a5aa3c
MD5 1104931c974a418a0012140eb596849f
BLAKE2b-256 36ca11c893aa248687fce3e0332b86b373de2493cf8c494e66309fdd1e631a11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21359cf4d1261b314895c07321e76aa2334b1967956efba04cc0d223d7817f48
MD5 c8bca55e606593a6da094362feffee46
BLAKE2b-256 15eefd90974836be691908d83a2a545b8e89de5b0c40568c79cf866e55051af8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3abf5aecfd0c314b62c10ce6e9baee2094cb385e2ec154bd1743febd2fcc9bdb
MD5 f1dd7ae51ac2a595667c69ff67482b36
BLAKE2b-256 6fe8fff61f15307a0ab603589a82d1156608b750484a7313d98e6c5a402cd3a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc8d449adfdef675bcbfc67d5548513271c7ea869e9b71a2e898138bf34a976a
MD5 70dee03b77ec733e8b49fd99100e8ef6
BLAKE2b-256 e4ebf7ea711b7d3ce031fd274c605911044ba0a02e963174d8ae18e424ac2483

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 991866e2f45ce85e3ce7a31714e522f620d83b1eca15fe530055108a94e6087e
MD5 6ad48f968ef9360a5c80c988690d48db
BLAKE2b-256 6b6917211eba5192027edfb8e6c4f81c3c8480aff70f45df11dbfc25804ec036

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.11-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.11-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.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75eeddbd3db7e82293a325c210cf4d218d25961870dbb468383c7516e3f577aa
MD5 fc8d092fa16416fcf9b16d0746243a2b
BLAKE2b-256 8d3ef396451d63adf05733563297eee1f366d28c8d27d570488ff008af542898

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbee8998d426c1b6b78aab7a051009f9de38d77b93d073025ae19f7d71b3ead3
MD5 f12d0f05d2e030c2e977735717e4320c
BLAKE2b-256 f91239dae054c13a07199a53f45e4ea8ffe9b639444d3d0cbfe1cc2479e6fdab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57e71c021d9950113e7d49892eba56014c072c9d86b71c0b3b7cb846ee913e20
MD5 783e7c4520cacb9e0b57c6e2e54d5111
BLAKE2b-256 a1a76753cb42b04b4de4bffe9e3f0af1b896c5aaa8a9cb4d82e68672e1e7de37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3066be35f630e4c4a00cf2c829548574fcba5963735411e6a9ac78bd4ca830ce
MD5 ffbdc9aa74d244e141b3eb88abc2bcc2
BLAKE2b-256 d045db8c56bc6a4adacf308f8b429ad3bb3f610d144c5e715760d523d3d4fe78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2e8d01d9688e9670b7ed3f042dc7ba379f844fb7fcb8e85191885ed75d6178fb
MD5 25d3bffc36fdbd9cc2830af419c5a368
BLAKE2b-256 bba7273a7462c30f54faecc51977884d08b98dc3a7852b08a0f3ce16b1853ab6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f4894d4cb2b9cd4828dc9d9cbed683db051748fde66f5937aa823f2afff16b36
MD5 dd081797dbfd42eb8d4fe2842f0d7713
BLAKE2b-256 7f39a3f8aa79d7b8b00844ffdc3eb9d281dfafc43a032fd6d9e72dfc526e2693

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.11-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.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 903286e6d9752b63b3b37f9ee98a8ff7db403b23416b469b065cc992b2556b80
MD5 58e31eb562967ac2c8e7a40c9cd0b10a
BLAKE2b-256 6c025dc178467c5d356611e7a7958c46dc743664ef17d86481660f8f22ce1e0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75c13f519ecb85185e149049bd4c4937aa0b953bd21e1748eb711c6cdcee571e
MD5 c35c46d775dabacfa21dc5c0bf557c20
BLAKE2b-256 deedd534f47cfaae049d7c6df1cea82825f10a24055731b618a049ad7047585a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ff73122f5fee3350528235349f1b9e5626a1a0ef1887fef82d7fddac18f6605
MD5 914388f897c34e3ec253e528f4e05c0a
BLAKE2b-256 0037ccfd3e5b25df5bed17401468cfc904475ff3482f25c118fba36a03a14287

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.11-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.11-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.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ff49b24d4e5c81bcc96b25e2cf23d9af2d06e4d473865c812487be6665416c0
MD5 7d461efb57d5a57ce9c07014dea6f2b1
BLAKE2b-256 9c42d264789cc13e9bd38cc0ccb19aa9b07f75d825a27fce197faed54259c464

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d00753a5f832625f69b585dda7a7ddc1a7d2803c31aa8710c5d209fca064d774
MD5 470dd5534662994c9c29993e1901ed76
BLAKE2b-256 8642f5a135510880f58bff59a226d5e49053cf167273770d91e9d8d809302d82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83515cc0fe9b8c4a1ca8bfcd83cf48408bcdd3f2fccd088f04635619e93695c9
MD5 15762a9f7b8bcef4fb9cd538c80f51ab
BLAKE2b-256 351ed9e45b15a641c72606c8774a7cab35dcdb2132a78e76c54dcdf8e5a051d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36183968e5c122da414db0dd7d22d4a6ca808e9b9e4837532dfbe55df6f26bff
MD5 34e3afe962fa7fc351798b4c26cad42f
BLAKE2b-256 2636e6bc69e5a222ed744fdd0315843db2f3b47b0185cee11d05369da1f8f714

See more details on using hashes here.

Provenance

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