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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.13+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

selectolax-0.4.9-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.9.tar.gz.

File metadata

  • Download URL: selectolax-0.4.9.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.9.tar.gz
Algorithm Hash digest
SHA256 15c3de54f75d0d13726fee140bbfec8805050a3d34d298f2e9c05c9da1b87e7a
MD5 73dde38a14d86c09003db0c5afcbc549
BLAKE2b-256 f846b2956203e943c6417ff7da9ad9bcb5860d60372de6e05934af1b3f0a4950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7ab014959dcf68a0be71484dc87b8d4002756c979836d1d873ba81302b6bffe0
MD5 5673e8cdd7e99e90cdb27527fb3a7426
BLAKE2b-256 c2d7525f6a3560d13199d65f1c9f1816ad307d4ed2e1ad05daba08e024fc5364

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 008206609f542cbad133570330e51cb4bb666d532b05111914072673de60f33a
MD5 6c628d21e528c4d50933685de8b9a221
BLAKE2b-256 d87caa021b3ed7c9fce5f16e0a0b4c8897e7970772ba8688754e5813214017d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 596513c191ec4771357abc21160414e2a0054f064ba543e33e1a7ebd35c96ea6
MD5 3ad0dcdb91fbbf1861899e4a2aa59e95
BLAKE2b-256 71f48a764ebfd95bc1c30d542f32d8eda19e78baa07e2de8f6c355b11de6ee56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 919fbb7ba30e9e172913e029e453be68215122bbb3e7e8cedf524e525c24556b
MD5 df2fcd1221e5d78eac94d88cf6318463
BLAKE2b-256 164e99b4962e5a4171c32ae6747a8d84d5d549a85e9cc48a1f8200e35415acec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44d07709c7ddc49702af5661d717aaeab469121328ce1131e182bbe98020c504
MD5 087bd71788d8bb99317d1b15c13ac71d
BLAKE2b-256 2af24d0e8a5b875ca822121a4f3cba66a652379903e2cff1beaace48fa7004db

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.9-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.9-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.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8720dce153464c1d8172160a2dd96e97dfae0a64534aa2b54eafbe8371ba85b1
MD5 47f1d996b451d7e73f16e3bb5f9292db
BLAKE2b-256 20aa92f66653993e9b2006dc37c202dbfa0e49803266dead36301461957e6345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0fe69c7d4a510574746fae68d00016d4ff10cffdba845dfa2a40296534390a91
MD5 cbb64bed172741563cd488200fb41598
BLAKE2b-256 f15ef95857eab0a0e213f46eec42ae74cfe939b8aae507e23af3fa17e111ba0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd270f3c008eddd9b93d6875b05fda569b9943e94b5c918ce5d06123330d35ec
MD5 e88721f2d1d4e2b51a183da1a707050c
BLAKE2b-256 99b06fd60519f100051e58f83c604452c997b0ce4e25c279405bdd80ba1c8ef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fb3eef8d522534b59498e2aff67d30b879ffb70961406fc6359336d846409f24
MD5 caec33d3351fdd06bb8d3662a1949d9f
BLAKE2b-256 1738e0f0bdacc94dc868e4f7b542f459a34bb71330b1351cfe177cfa749abfee

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f214d7c10112c818506e2aa72b309acee76e23b6ff677e91e5fd12fb60176abd
MD5 b62da3b40ef12b86bac0aaddede128b8
BLAKE2b-256 23f697f68770f73b9d65b3584e12d588fda3e4ee86dcfdcbfb05de7c4c6ccf0c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0077fe3d5324a345839c8c9da7ac41b577e13a08266b4a24e7c25e16fb2b6229
MD5 41c54d550fdc99e57b8c977d7a43f6a1
BLAKE2b-256 f78cd140ed3bb7ab6254628e8078c6c7f42d6f857436548c5a1851d6d8e1ccf1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2affc47bbe2faff46410ce4edd82e9e6fe6a7ac7a84b4e572c1b22fc2fb1832f
MD5 26797fa3616b65f76fd46f8aa7d67c0c
BLAKE2b-256 530d3b36c76e478deb6fdc7deb105e99e68a7eecef716611a3ef6776472e3057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 718872445d44b58b0e6bc029993ac79396b5588b13d0c12c8b585f5a1a490c2d
MD5 19349bbb98a8315f0fe3ba6344d13eac
BLAKE2b-256 90f26b0b7434b850415adbe050e82d20a6f119dd05c912022a9964b4db47b880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25da6d4afec67efcb5b9f228a7f318163e65bc7f4956448cfc994b45894a062f
MD5 4ebda2c136e5b9a0f7101dc58a1278e1
BLAKE2b-256 3b0114b5a9a425438d8a40c97b08d3221dd2315470ac6edf586abe1c49f3f8b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.9-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.9-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.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 432dca308603fcb39600fcbf9e02d8917596fde2d7b0fd752d437953bbb83ff0
MD5 d880b2978857407a25bae54dcba679a9
BLAKE2b-256 d3e5a86685d5bf6ae5d8d1068247aae9a64e5b455b2ffe0d7178d1d780fbcbf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85c463dbd4f1a5b9a1219ea7895ed3307231cb4edcf46e60de99dde93d9dc65b
MD5 eacde58ed0ceee6a8674505dfc031cc5
BLAKE2b-256 57c7f1c63a427346f27ca9a94c63f5f6f83a0130e011f7d6e0bd44a9e073cb31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1a2a70a02960efc7112a99b81031fb60bca557e62f99806dd3a6354e6c888e3
MD5 e0b89f2039afc31c9eddfe40bb71253f
BLAKE2b-256 53aa95211bc61a84d2f42678791654bde6a3526520f423c1450b735ef54bcf8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b65f589b8e613089e77b6f735d956f6690021c66acaba0973df0e59b7fb6ab22
MD5 27b142abe86e4ee74e56df5754456de5
BLAKE2b-256 14c7fe04c5466577bd23433f5ea8de16a3e1aa273b547616a6141591641c109c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bca470e8f6bf6b4b41f841e87fcc729c9c2fbed20850ef4bb1b7b9055c1f8a55
MD5 a8c8812ca26a0e6297b19f9fc0562f37
BLAKE2b-256 b9f9cda79bdea85a231cc1c9aafb0c21fda0d56b056b67b1e571c26a5c39f832

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 35097ce93a954a95ac82d930758cfc32c03421c0f173de7185e6381fbd00be28
MD5 01cc4f4470db16f035fb2dd4564b6e37
BLAKE2b-256 28239ac462b19e296a426e7b3fecc2ce65cf3c2db6d405653a96a0a978e1ae44

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2cd98512c3de597a6b5db9bd90d10b35244c4ba7b99c1149874111f453ae82d2
MD5 abf9675b742fffbf3498252a472541e3
BLAKE2b-256 01764d8ceecdb2265ec3a2e64bef83e8a2d96b7c8d9b3505dc504b02be64c684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19ee1f7de842be9dcdae7c7d27b01c91a0a717a06b136984234bc5b3048fc3d4
MD5 ae4429d19bcedd2b237fdfe4d99faeda
BLAKE2b-256 de70a2592179765f948146952fbea67ccf9b8e32f125847bf30632b0a8574af5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 395261e997f0d1d9d0232cf9ba7d69f46229e027ad7eb3ad0afba57c8eec7413
MD5 2ec00a6d2c6dc1d70128fe44fb02970a
BLAKE2b-256 50cc07b6190d0b20627880c612450d1211ff22cfc9ad1e845882846b0f97be97

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.9-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.9-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.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 010ff30cc2266074801d92fa717a3c333cc1cf9c98b699a46fc649a9707acc69
MD5 8370ec87f52f8206848010486e364e66
BLAKE2b-256 e5d6aad9d222d2599bad16f1ee936ccddec3e5e8299a140ea56af2359ed72631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6833df2a2f74cd89872a2915f5ba6b9e56e4bed31c0b3e26b593ca086f10d298
MD5 a35761cf3d08a07296d6a91ad655597c
BLAKE2b-256 fcc0b9dd13726bb13a6d439c1fef14d70345da9d15155f058edf9bb124952cd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f49b7391544f60cc891587bcc504daed4995be2b02af9c6e3054a564a1b25d0
MD5 716b87d144562eaf53c74ecec4288dd6
BLAKE2b-256 da8116ff9754e720769fe3f723baee9e207b2f7b7cf2612d509a9ae84b357ec5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b1ca6686d0199ca3ef2c919421116d9d34f56964e2162a0d8757a4e9a7bdfb4a
MD5 2aba4e47aada7192c08ae905915eddf8
BLAKE2b-256 b3aacf3ef1ae4f9a53f53a0add5dcf7c5b241f56f9a778feb7c13cf65e73331b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9ececc7acdb4d16d217d83a55c41e0f4f74fb0e74858005a542e7bd88090aa0d
MD5 461fc1344a582a4b14c889f772266aa9
BLAKE2b-256 82abf6995eedda5f3b591d57ab1cf964de0dca01cf77e11ce8433ca9bafc11bd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 592bba3ea66658b2080a6978839887eb1a890d8244441f64b9baf0ca74ed7918
MD5 888ab091386f719a4c2fdbdf044c1635
BLAKE2b-256 1cf50727cae946c6dc387f683357c3a48e3f39443f3f0b076513eb4bc4766d3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7d1afdd14451d7a0d9e095e28df2af11ea2066821170aaca1d7db0e56a44f5dc
MD5 3b523a67f7be38cad8ff9154453ecf99
BLAKE2b-256 c806d8d1a0bfb17ec697904bd33be72d9d29e322359f167aaf111e3ce9026131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 428bbfc0375607dc07ef9086ff6c7fb8e6af051876409e3fcac7d8c856b0fa91
MD5 1937b3bc22afcc30ac3268fa22f03c01
BLAKE2b-256 7ef955ac766dcf574e5f590fc0774486f7bd52e6e5c08c364f08cc18626533c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77fd2ab190a5a13ce1c3f616538f325bd0f51760c924c3244f27897d23f0817a
MD5 ffe42645d7381ab82a500054f308fb59
BLAKE2b-256 badb8c715ef0e58cf7a38cd91610a45c19cdb78314584881eaf1499198f69095

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.9-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.9-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.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c37ae18495338320064920144185e3a434d780ddc8654a44f2c611b2e1aa291
MD5 7c060d008fbc1e852e748dee2641fc4d
BLAKE2b-256 7cf2bd9e07a8e51b8f4ddcfe4b2f6bbd7100d763d784910eebe15e48bfa813db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9451274ccdb46f691f90538e2ede26e67d20f1ab17aa25083db4983208451609
MD5 79bea2b371ab0672debabe2c5385a6de
BLAKE2b-256 835c8ef75e1ee59df6f640f79fcf7abc2df012a67587ce0890e5be96e06276ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 668e243607d8bc2d130283506333f63b65bfba83bb32a59cf89f634031f02e0d
MD5 63500cf84f0d531f696c99075753d9d9
BLAKE2b-256 401d22554d2ba0d818ba07402dbab9561ff3b438fb8272727e7dfd21e6cad926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ee28b8f1326e3504a055a8f8a894e1180f5d3522f61391670c8b2d5e768cbc2
MD5 c7c5cdba7e3371af72218ab86105cb0d
BLAKE2b-256 f7a9ef84d5879bdc25ee830e57d030b559bc9e86e9d8f25f6c315511a39c5a67

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 690bca07294e3bc635f44855d2d3a13ffe7085b72b9b4bed5016edfdad291f35
MD5 5afdcd7772d5995a881ec82d12d27630
BLAKE2b-256 ac53188fede267d164ac066961ffc2f5961063c3aebae20f4abb0ccbd4da3f92

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 582d74f84ba02c756ed09a75b918a7dffbfec3683c082e7c7361d44aa7cd9f8f
MD5 9f2d3b116b9620f17589e9fb582f7a40
BLAKE2b-256 0bbec0260cfdf71e4bff267c6b49d6e1e4550b48761ef6223d9d6de038e77b65

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c964592aee0cf73423718cfb4fdbfe99ea7b28f13589f2bfc0e0d45683e0a0bc
MD5 50db67d2783a6129fb037759d08faa08
BLAKE2b-256 30f93b29a9486aae0100a2184e756f4f215790ca0d8eac8057494e17d8bec43c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c77f364e05d8bcf7a89cf57f6414cb0261f968cf60395b381f20ecce01bf8546
MD5 307fa01056d331c893bc2464392550df
BLAKE2b-256 dfd356fbc22ba7777f5f26eb3bbacaab5b5c6fbfcd03a530fd7c372652957f78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3a42930b3eb3088d4ab11db698d3fa3a06c39b2a2d389652c12ecbda2586f89
MD5 4bf38478b80feb1249f77bf98700ebdb
BLAKE2b-256 e4c9b48baffe1224d48e0410ac7078f4af04f4d9082b8c7d4f3fb693e165e474

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.9-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.9-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.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8ac4485bb49a0131bb8f612c3a04653184c2e304d4c4751ae0764439f3b6b76
MD5 57951679828927017d63592e6ffa9aaa
BLAKE2b-256 47194115633e4ee916333eb7f16a611f7b18c69f818ecd3463a3adfb570922a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5bbdd6cc28ae3279b4114b166447e83ecd8fc5aa397ca422645b654f25aff82
MD5 ce46dfa6d24d8d6a0aeac2c33caff41e
BLAKE2b-256 49a3099895b5bc98ceaab564f6d3a799dd796290bb30ec846917055e9262a716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7d988d66a64153edd8db347ae55cb4e52a6157206c66c7f27c65046ad0f2b2d
MD5 aa72ae41a9025252e2dfb2ee6a4a3b2a
BLAKE2b-256 d1b0bf89a8a737a38b41471e0bb52c630ef97c2d1fc889781463b735751411d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aafcee3e53ee3cd7800826e26ba2af3e68370e6a1bd4c223fab27916623cc106
MD5 c3347a76e7b6997e4902bb3cf62d0855
BLAKE2b-256 1310cd0804678dddd218c061b6820325a8cd288a13d55db7c04c59cdc8c4c8d9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e124b1352489cb200db66c7179270dc269eada7d7bf4267d949026540a72a325
MD5 e09ab0fc471ab5c8745a78d654463edd
BLAKE2b-256 f4d5229dd2f847a468c0f9dfdf794cbb667f0524fb684b50e54708b7eed0fdc6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for selectolax-0.4.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 88773dc96c39b71c8980b88abf3588ce780ff95d499065d9531048da7708c6a3
MD5 cf9ad293ca1f0e170d3acd7e89b58795
BLAKE2b-256 e860ddfbd2addd6a0fad854ab06947986ecddcad7523aaf753cafc0d41e7a27c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 05ef4923d89c75c5177f7b45b6917424175ed6ebb6ff9c4616497d83fbe9b9a6
MD5 7b1c6950c37c780d1d65bc3cebce2d84
BLAKE2b-256 3ea2290e0fb800942066b5130d2d5a2b2c1db6ae4366b7c81d4b7cfc3235f9ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f41d3f101b21bc3cb95ad103b98a233c329bb0361b3840decf1a888c2f960494
MD5 984d45b3d1a49b8b039f4cdb1ec38fd8
BLAKE2b-256 acdc09a3b25364019c87d52b7e3870e72610588d5a1a02de5026f0aa58b8c499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4888a59a688b4d206aaac657befb4daf6f96e07d8b5757dc5e82c76505b7a8d3
MD5 27e27aa1487acca769925b1cdfb43b20
BLAKE2b-256 bfc7b87e31700f4f807304a021811471621a278a4d1c94e90708277c93d62089

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.9-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.9-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.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc47abc57b400d57a17ca2f9540c4780b67379a3bb09047c170244f16007cbbc
MD5 756956b10d379956dbea3b9e6cd94e18
BLAKE2b-256 a0c6a07925cdb26e4005f206e45fbca3bf2deb1cd62d68997f9c8b46d19f8af9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d0a9d182e1df3359b821f380ae2a7d8344b403d7ec53c0fc99149e4833ed692
MD5 4b60f8115b0f9181002c58dff382a406
BLAKE2b-256 08c1b4143797b843c326fa1c60c1eb4c1ff5e0bcdc229ca22b02cf8017cddcbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cce375ee59c7462efa38119d784b7e957303d968c4305fd0102def3b46f6a62
MD5 d05a15f72f2fb1c9ac4b333edfea64be
BLAKE2b-256 daeaf8539108deb90f1378395625195a68203537cded415a890923995fb2f396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96117cf8d7f208073daba79515e76e3bec2e28c7fb2fb2bcf9120c73d2d06e97
MD5 259ac8c5516a7b4d026cb075d6bc1fe6
BLAKE2b-256 9b8cdb84bac73f7340bc95c51d81186a754e941c2734602e83f27c07dc2b3021

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 bd5914036479a7522bffb028f1fb145818831c06d021bdf41851a57c219b9b53
MD5 05b5607f206caab4b6532b438e05fcbc
BLAKE2b-256 a5af875bf62ddf866584803b804e83d55e45a92e4a7240a8c12bd7dec4d8b471

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 db788761bba4fbe6838743d9465ffdccb7dc212d91012f02229b0ffab8ee32c1
MD5 9897c3284418d7fa122e9d814850030d
BLAKE2b-256 f316c566f2e1682aaee7485c240cef13a58d42676ae286b6e07ccf97e32cd545

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: selectolax-0.4.9-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.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c75748bd300316b300142193e7dbe0255fd81672f87707bb5a02e491275054a7
MD5 b3f25424cb7dd21a2c3923bae8f8455c
BLAKE2b-256 dd75556c62efdfae657a4db40a79a16ec4936fdd0b1834fd9b5e2ed25680b07a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 536f54435f51e4347411a2d687b03049476cecf0a39682e42946ef407c7342be
MD5 6ed37c943b29501d23b4507d46cc764e
BLAKE2b-256 9ab27af8a62b0db6c0cf9416df0f06648a8ffc66a3d3fba6d993623fee7e7d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62565b700162eb583b340a3f1fc9b7af2aa6027ef35da00e063d67336b9dadc8
MD5 d579dcb122829f8c3b3ae051d89c85b8
BLAKE2b-256 68f476216a5031ecb341ac56fe33a067b469fbab1b8ccc6e7ce5b470d25ae91b

See more details on using hashes here.

Provenance

The following attestation bundles were made for selectolax-0.4.9-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.9-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.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06a2ca6ee2be60f7193b6c0e3f595737fc5317136092d0f2ae51574904f595d7
MD5 845a91447f81c0dc5c570d4af4023f94
BLAKE2b-256 4c5bb552e588cd68144687f7dec6759a1179d9f749b204d4aa3eadd072f9795c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d327fd802a8b19680748707a5afb975717a22dff1aee63180d6369016350e36
MD5 de1034061f3aca87de8cc50f28167d2c
BLAKE2b-256 27c5a771e20e537fa69ec1a000968b7a85647a586e673daf0d4b0ca8d6db6788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4cec08de53f68354af7d3330edbd0a3ffe88d3312ca369b744d9e20c06a782f
MD5 e052d6aca90656f8e6dc8456d88d05f3
BLAKE2b-256 acbe25da854cbb9763840fef892d23cc7105f313e0b08fbacf7eaa32ce948b9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for selectolax-0.4.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8715a3394efcb35441ba88246bafa201e71f8e2a8b589b677e010f19775ac8d
MD5 685e3876ec8ed6ec2a2fde2dc6aaf33c
BLAKE2b-256 6855f41ec56b22bebc31d22c24fefb3f45d1fc009ecd79f9a07a871c5d88e3c7

See more details on using hashes here.

Provenance

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