Skip to main content

Fast HTML5 parser with CSS selectors.

Project description

selectolax logo
https://img.shields.io/pypi/v/selectolax.svg

A fast HTML5 parser with CSS selectors using Modest and Lexbor engines.

Installation

From PyPI using pip:

pip install selectolax

If installation fails due to compilation errors, you may need to install Cython:

pip install selectolax[cython]

This usually happens when you try to install an outdated version of selectolax on a newer version of Python.

Development version from GitHub:

git clone --recursive  https://github.com/rushter/selectolax
cd selectolax
pip install -r requirements_dev.txt
python setup.py install

How to compile selectolax while developing:

make clean
make dev

Basic examples

In [1]: from selectolax.parser import HTMLParser
   ...:
   ...: 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 = HTMLParser(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.']
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 HTMLParser(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>

Available backends

Selectolax supports two backends: Modest and Lexbor. By default, all examples use the Modest backend. Most of the features between backends are almost identical, but there are still 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.

License

Project details


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.3.26.tar.gz (3.6 MB view details)

Uploaded Source

Built Distributions

selectolax-0.3.26-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13 Windows x86-64

selectolax-0.3.26-cp313-cp313-win32.whl (2.3 MB view details)

Uploaded CPython 3.13 Windows x86

selectolax-0.3.26-cp313-cp313-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

selectolax-0.3.26-cp313-cp313-musllinux_1_2_i686.whl (7.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

selectolax-0.3.26-cp313-cp313-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

selectolax-0.3.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

selectolax-0.3.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

selectolax-0.3.26-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

selectolax-0.3.26-cp313-cp313-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

selectolax-0.3.26-cp313-cp313-macosx_10_13_universal2.whl (5.8 MB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

selectolax-0.3.26-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

selectolax-0.3.26-cp312-cp312-win32.whl (2.3 MB view details)

Uploaded CPython 3.12 Windows x86

selectolax-0.3.26-cp312-cp312-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

selectolax-0.3.26-cp312-cp312-musllinux_1_2_i686.whl (7.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

selectolax-0.3.26-cp312-cp312-musllinux_1_2_aarch64.whl (7.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

selectolax-0.3.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

selectolax-0.3.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

selectolax-0.3.26-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

selectolax-0.3.26-cp312-cp312-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

selectolax-0.3.26-cp312-cp312-macosx_10_13_universal2.whl (5.9 MB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

selectolax-0.3.26-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

selectolax-0.3.26-cp311-cp311-win32.whl (2.3 MB view details)

Uploaded CPython 3.11 Windows x86

selectolax-0.3.26-cp311-cp311-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

selectolax-0.3.26-cp311-cp311-musllinux_1_2_i686.whl (6.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

selectolax-0.3.26-cp311-cp311-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

selectolax-0.3.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

selectolax-0.3.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

selectolax-0.3.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

selectolax-0.3.26-cp311-cp311-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

selectolax-0.3.26-cp311-cp311-macosx_10_9_universal2.whl (5.8 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

selectolax-0.3.26-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

selectolax-0.3.26-cp310-cp310-win32.whl (2.3 MB view details)

Uploaded CPython 3.10 Windows x86

selectolax-0.3.26-cp310-cp310-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

selectolax-0.3.26-cp310-cp310-musllinux_1_2_i686.whl (6.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

selectolax-0.3.26-cp310-cp310-musllinux_1_2_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

selectolax-0.3.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

selectolax-0.3.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

selectolax-0.3.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

selectolax-0.3.26-cp310-cp310-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

selectolax-0.3.26-cp310-cp310-macosx_10_9_universal2.whl (5.8 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

selectolax-0.3.26-cp39-cp39-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

selectolax-0.3.26-cp39-cp39-win32.whl (2.3 MB view details)

Uploaded CPython 3.9 Windows x86

selectolax-0.3.26-cp39-cp39-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

selectolax-0.3.26-cp39-cp39-musllinux_1_2_i686.whl (6.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

selectolax-0.3.26-cp39-cp39-musllinux_1_2_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

selectolax-0.3.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

selectolax-0.3.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

selectolax-0.3.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

selectolax-0.3.26-cp39-cp39-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

selectolax-0.3.26-cp39-cp39-macosx_10_9_universal2.whl (5.8 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

selectolax-0.3.26-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

selectolax-0.3.26-cp38-cp38-win32.whl (2.3 MB view details)

Uploaded CPython 3.8 Windows x86

selectolax-0.3.26-cp38-cp38-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

selectolax-0.3.26-cp38-cp38-musllinux_1_2_i686.whl (6.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

selectolax-0.3.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

selectolax-0.3.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

selectolax-0.3.26-cp38-cp38-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

selectolax-0.3.26-cp38-cp38-macosx_10_9_universal2.whl (5.8 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

selectolax-0.3.26-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

selectolax-0.3.26-cp37-cp37m-win32.whl (2.3 MB view details)

Uploaded CPython 3.7m Windows x86

selectolax-0.3.26-cp37-cp37m-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

selectolax-0.3.26-cp37-cp37m-musllinux_1_2_i686.whl (6.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

selectolax-0.3.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

selectolax-0.3.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (6.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

selectolax-0.3.26-cp37-cp37m-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: selectolax-0.3.26.tar.gz
  • Upload date:
  • Size: 3.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for selectolax-0.3.26.tar.gz
Algorithm Hash digest
SHA256 fd8da39a64145cb14c1f6ec9ca7378342af7de9ba4c8e3d65d5daa107594826b
MD5 eced6b5d644b39863617b915d14d85b5
BLAKE2b-256 1e865f3f956ad7e553deb5f09410764a3bc51f450349c6be8a5990af2f870c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 064a15d56697cd66a4a78310cd5719cac57563ee6a94f05e01ca252fe4813a1b
MD5 21b9eac0c8524937dd8ab12adfa3c2e6
BLAKE2b-256 2d53d88dfdf51f607ccca9aa412610d3b09e0d0a033d3a5d7162c97adae9dc93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.26-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7e808f7c0b85997af9115f6fabf1b209940d2ceaa3a405417a63bf9eaf115b3a
MD5 69fb57777e4d247055bcdfe6dd00d971
BLAKE2b-256 c40b8ca282f846f279525ae3748d2afe725fe26ad6eb6e8b7c882f74bb39161c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6532e60e6e966afef1f1281835cd6bbdcdcc17b3ee4d048469ab0ebdfc9722f
MD5 18362a6fc62b286ac621cd464682cf77
BLAKE2b-256 6f6cced3219f728795d00e61802704d451c87db5b64a74e783d08d2272a42c26

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b4b1a80eccff025c00410048662c183746a8a966aff30d55e608988ebdbf148
MD5 1d24785815485c5020dc88c1d2711903
BLAKE2b-256 963cef2fedddb64042b4d5a7bc62bd8e1af4b2601db45d79e41660a2d90b90f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 841865ddebfc3f60518b31af9072fd15f731a39e41dc1c5d10bf652200aec9aa
MD5 39badf5d003f914db3f26e12c2936cf8
BLAKE2b-256 558cd2f458f2d38538f9bb7890acb8d4e0d518d3750558a344c9b5d7f5af0096

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49b9c2d4bb990e7b8d1911e9d9af02f37bd5e391f748c85af44e4277b4cd61c0
MD5 3e47383374d3bd0f5cd442993560e09d
BLAKE2b-256 7ecb457ccd023f95780e73c79b8f4a83b393598453301dbaf4d2dd85b436e89e

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fb6b7df8d20592db1960d40e21874709315479457cdcb49f02c257c80df1035
MD5 1d8cf3111c2e2c2cbc714468d2e72dcd
BLAKE2b-256 1483ba1ddd35209092af8a615ddec982568e5864f2353af4cd304cc699b7d503

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a98d0dcc150f4b9fa4a610f6a55119631b0b0bb892eb3ce32aa566bd3efae4a
MD5 771e4cb9ff5c87dcc27e1ac4985e3022
BLAKE2b-256 b896eca16a066c6332a0fcd9cf7ae33abc045158ccff3c79c5d8587f4dae16e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c4cdb2c3187d3615cf551c8c821cdf861592736c7efa58fefadaaca89b48474f
MD5 0565c1c82256c4b7a4285792dbc5134a
BLAKE2b-256 a42ac6e8e2c028ef0dbfc45895eb1e36fb909679d5e791372587597ed6edd56f

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 66c25f78cc2006c9386a8c228dab84ccc00b45c8edb667329e39fe7adbee13bc
MD5 32dbef75ab8a02ed0faecccf7476bae3
BLAKE2b-256 17f2aed6dc62065fdda236db874ae02f8458d9c94f3859d59b234d481ef8e9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ce4ff49a68b1104bcf4588d9917033593442538d3d0cac1a74abcef23e478770
MD5 62ceb2606544806b9ffc0f8535d68601
BLAKE2b-256 0264ee9f173fb02579dc56b6d30d7e66cba55d2ac9a08f5a60e3ad52d665e192

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.26-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e9533166e1cd773ef032df8fcd2693d0dda801cbb225d1074e4616eb419271d7
MD5 9dd1be5c06046c56dfb6be0720802b96
BLAKE2b-256 5a5477ee0f7ddad9791f4976c38720b0f45d05def9afa55fc2749cdf1be1f196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87b7d0297feee682aa4d6760590c6b2ba4b60772f087f0ec2ecd77cf564e979e
MD5 0a4bd6e6b768fb05290c608bdb65fe3d
BLAKE2b-256 22e3d9be58345937cc83b9d88dd1702ddc7354883fa3eaed12e8f3960ad6d743

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 559e581dca455b7d96ba4190f6909f86a68642e23139ceb3dad2bb4831b59c62
MD5 3e4e8b607081f61ad62697b8f52f69e0
BLAKE2b-256 b312e13a6f3d07255c239149ed585b662069ead177d7107966b07ca049b84520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fae04b787be96851251b387d72bb488a6752981aa4cad492d98835a4d7c6b78
MD5 76e905009b0a3d1c2b45d9732e6af615
BLAKE2b-256 b65e007b12ca4db5d5402f0f67ed4de759a8ea2bb7fb7b0a75c0bdc8aafcae4e

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddf4ec725d2d52e8d7aebc4a0e98adc3e5248cbe957438c2c5495e0cea8fa3b8
MD5 aae7718cbe7a4957b28eeece432ee15d
BLAKE2b-256 058eae0b31f4a875ac528ebf171b70080b02629cd1b854525a89f654c0343bde

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ca4cf160975268431b7c014b30d892d49a2862a75677059efe0bca8063def72
MD5 21aecac0fe0fa16b1b3883173d440929
BLAKE2b-256 3167c992ade2821ecbe4248abf9b0d62675d52aa23d4ef43e4de8efaa248e9a5

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 641b00bc707a5af29fffead812a63b19e8a961ee6d7705e8f6b40802ce70a077
MD5 c44ae8970bbe13c9de6cb3507f78af34
BLAKE2b-256 bc83da1744cbf60a96b70d7e220ce70f6e75531f0c4ee979ad74c6e38b79d777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 59f3ab9f4bc57b919a5405ef8bed7bfca62250411df1fd198a62d40d13c4df2a
MD5 968464b46112280ca517b316413bc8cc
BLAKE2b-256 922711ea76601648e66cd0d622d82b187db1c35edbd7ee46ca1e9ab1e7e4c14b

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4af271eaf21ce7c27a749171e4f06480324323e7d60d5afdf2d204076cfa58c5
MD5 0be1907aa984b9b72a0fc7f319674f1a
BLAKE2b-256 fb7ebfb9fbff4d4df5d4125672d65cd6f48ae1cc9dbcdbc3f182b92d11a16087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dfedb7ba2383e6b4eafaf607ec39ce1e7f40508efe06c1e984bcaac5effbc3f9
MD5 c6c28ed742d2b5a787494c9d57c73b4a
BLAKE2b-256 af54d92f27366093a526c864dde22d87650c0f2d2e19629ce75cec37f49ccef7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.26-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 33d296c1f64b5a3e6f6fd9feb8d1b6ba69281f4b4083274a274959c3017c2081
MD5 d1bbfc599ea545fc1fcde54da5e1389c
BLAKE2b-256 e1f61fd26e4232cfe413bcecdda4dc9b9f6a5b1018ae54bd5f547f1e906b4615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 462c4ae027cf8c2623177eb8bb7e43fc72505d6958c2bb7043591d25c8221ab9
MD5 3817cf83150deb7c871a74135cbc78d5
BLAKE2b-256 c15fcb54217a36614a1369e4fdae0c9eff20286635714ebd95a60af6b70eaf15

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 329eef64abc7a0a2d754c313dae544592944ebf58ac77313525f46fe1e80805e
MD5 87d05e82e387a429d73fd0d5eba77ca8
BLAKE2b-256 6e69151e05599504ec123def962c61f706afe45ea4293b8f0f6cad1a15cf7fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ba5e30494efb39bf87f31820169381738eb475965c65e9ac492667617f2ea60
MD5 22340b756dc88936d510a7232e853204
BLAKE2b-256 c93409f59beedddd8f975ed47693885705b406a1f2dea0f86ac2dc0ab2acf13b

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 165b14b2485af63ceb3a67e4e8ab53dd8c3a4ed368a064e7d6d68b3dfcbf8cd1
MD5 e0fc486ed7c6961d8b06603aeadf0233
BLAKE2b-256 36bff128fcf1e2b8b4676cc4e3dc7fae06f43fa5110756cf501733976f82981e

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5b58e7894453a8d6d4c26350d4b2356ddcb38f160cb0074a55d33138ef8392d
MD5 db9aca7a83a06b281321c7a57e492008
BLAKE2b-256 a5d917ceab17e5d17e1af1f144dbe3f99a093bd9de216a57dfd4a3b3bbceecb4

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6f5489ca476a347e88e030db3bde44dff9b4a6fe719cfd0b8ae78cfd86669cb
MD5 bf3fc95374234164b72dc548422b909a
BLAKE2b-256 46048e5def3118f6dcef39381ceb430a07693a07e3193ad5a3f9b5f54f5028ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1240e7933d09d27bf9326db1466be648751530edd87e7d82126e4d2d1766a8c
MD5 d68b10c22c4cfc5274b6e5f1180f4b76
BLAKE2b-256 1fc588371f42b35f15a1a41ccf897aaf248db0d19aabef09c5fc380745bd8ecf

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6d17b3ec3fa7a526be7073482ccf8a23e403893994674d709f61affdb6c5545a
MD5 5a022686b4654b61f02d4da9a2a6bc2d
BLAKE2b-256 ed502f62c1d882c970bbc390688f87aeee8b617731a6ef4bb7101f345b58d0d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 84aff790d22651aed8881e07213c7806f65e1f50d0891ec28c47f0e109a249c6
MD5 3fc5ec2a1a33056700111e7ba236ad40
BLAKE2b-256 11a927e8d28d922502750be3f82296181d404064a38cb972b7a5efe9c8e74a28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.26-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6e9bcc0007a5dbf7d29db6e05d31e66ee59de9ce102e96a6071e1fac478f769e
MD5 4ef52c0cca84fadef49d2e799f30ba76
BLAKE2b-256 5244cbb5a327370ff1472227f7ea7959fe0b023b1a4c2800969f5b4dc535fc96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f54e6ae15294ceb3c7da34b1c30aa7c83c3b1d14142a62b592cdf494c08c4617
MD5 1e6eafb3842c628f675a15ec81ab55d8
BLAKE2b-256 b79b1a50f80b2be59a7417c5959bfef391a8be2ff3e5dc3662d7e01f232d160a

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2a445576f341a698421a5fe39df25def3e37da6136a4de0d0103ee08611afd8
MD5 fe822c302c9b49bf1eff88e84099fcf1
BLAKE2b-256 4332f7d1907f49f59e609a46471fc85565898025c67c3490085083b480a534dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f5c933802676ea30d4413b0035d0da584b4052bb721f7db57aa2aa9c0b4e6f9
MD5 1f2f367db9a7b54e7466552ec047d74a
BLAKE2b-256 a05ad0ed82216381c4193f703c1bbef063e0f0c04e27abe7b34ed360d39cea57

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d56ce5ac3c2b56d0d115fa0d206f3273ce9942dc4e8b3f1c73b8d185a4b90f3
MD5 bfc07328e4bf8cf3789f8ff0978600ad
BLAKE2b-256 9f8b75883b5279528179d692fc698c5f3d5172848a06468c255a90a25c0ce541

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2bb10fba206cab32206f218fb560ed50263420b29024ac990202bf6e3f5e207b
MD5 31ba64cf48b685d0d8779c68b3825f61
BLAKE2b-256 a529dbe73e1f7c85f58a9a50d80e5b493e18bc1d4dabac27fbee4bc776525caf

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4537276c1c93a33ddaae3e63705b5199a0519e930ee49708d95d64a1af77931d
MD5 399740d8d5bea917be46b31887a4d48a
BLAKE2b-256 2ee60b2fa533449f533c8a2ef25e0d3c09acf738202b16367231304112e2528c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a87a6681fdafb4388464df368065fecbfdf82531ae33a2f699d2e6ede3a396a5
MD5 ebe7bd417b302c0b6e2679513514f412
BLAKE2b-256 59014795fff83e35daa531695c07b3687002bdf5b75903de7c77b2d1aa6a9ba9

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a421ba2e61f9567f90a1259cb34dc31586e6b2025ad6d7909b39339a183044c
MD5 325525a11f6da94879be5e6386e575c9
BLAKE2b-256 c7c2263dfb337798d7c273e118e1dca6b016b98e765801e2c6aab99ce07cbf7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bfaeb5d055592b4455cebd3cbd80ef1f47b97df991798f92814030f7ea8fa0fc
MD5 f261eee253a83dd6145e101907dfd7ce
BLAKE2b-256 95ad18d5a2f3fcff5bc55f69934c4a493001fb32f1bdec517e609331fd9d92d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.26-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5e6a2d755695359b2465efaad8ad840dc4d7a328d62f8673110fdaabfe8cfd98
MD5 da3621a6ed569cb48081fb09cdcc1232
BLAKE2b-256 5ea53d67d7114499c1cf9ba6ea274904d525fe2c10afa3aca72f560b9e7ead16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4998cea022c360eeb17613678b861b5a724066c499508dd86c1812910cdeaa3
MD5 696eb3442183c6fab8296681ed181d59
BLAKE2b-256 7b81c841e55aa2030a3e23664ba619703ee97769d7ae97bafdc4402201cc5c1b

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a47757f97b6ffc2699d6ac02d1b8890258c43b95676e64f58b5c15e201b9ceff
MD5 fbb604474adaa5ff1e1b74fbac9a1491
BLAKE2b-256 93df437838fdc5ef98dcb9f5192aac58f8cc32b5f5978600243d276b1d0d4293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9d823a8f24158cc62e8d7e676a0504bf59278ceee34f09976ddeb4c190eca73
MD5 93c69e3062e424a58bb31a7a536fc8b3
BLAKE2b-256 b2249e8680b4304ec2f93ca5a42f0f9db8e861fc58d482f7c0c26bc929f553c5

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed961a5c7cd1875e9a251eeb12efa0cef3daf9a73bfed26b4410b0f7ca4075e8
MD5 8cecd8cffa31066c5e510ca0828502ad
BLAKE2b-256 3e28859536fe9fe352d792563595e52a3545ab91e4b06d086e27de192c187a17

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 713cb93b173950a40e70cdb163f3a0e422a9bdf5df1627c5ac109fe662b11f68
MD5 1c166cbce71f3a8542c52a7fd8f1670a
BLAKE2b-256 fd446c72e2d79f03f8fd570da7b96dcad4790d3ae55859180012eac1b45a45b4

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2bd8ef1c360da936605f34bcb31711d05ff1c1907b4a1573511cdeb2ffd8448
MD5 5edd1fbf8a97fb59dd9d4f6f39aedd4b
BLAKE2b-256 aca4bacb5f2c97415c5c5c39b7de0c0124d9d97617401d809feb5358feb3822c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 822f8fcb7eeb43c0fc09fd20027ef68bd000228ebd4f5a031ac1b646d1b155ce
MD5 6d8173af8fd8ec1ceb4995a605745916
BLAKE2b-256 89df9641bd7fe00fc9a0ff1ffe17a9b59a391a9a1d2b314594d25e4f4c16d7fc

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9d64e7d3c83fea58f8630259267bdfdd6c0f183612e70b3514590c058551bb28
MD5 a907055f95c7f7b81b9335552e8c993d
BLAKE2b-256 651853a17b7c938180d94861296275abfddf0224b55046ec8ef867128ddce2c4

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e782c5fe53937eb4bbdbaa0642e14384a84ccec8ddc8b478ad1f4fb57fa07a33
MD5 8a68b09c0aaf08dba561225cbb7bb42e
BLAKE2b-256 68c97db93291752bdd263fb435660f5f2702cc30bba9e928041d576dd63c78e7

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp38-cp38-win32.whl.

File metadata

  • Download URL: selectolax-0.3.26-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for selectolax-0.3.26-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a9d11aad28baabad65488f4cf1c0413093a820299c68df34e7cd6a81828ea486
MD5 94bba031eb83f9a2609f0ef36a4c3c97
BLAKE2b-256 b2fb7100439495069a94c0ef27c4bb56fb375139f59a31463ebfc232d2616313

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 612084d383b9ccd5f75c55f82471ee96e40c69e4bc3eeeba5212416e06e34baa
MD5 7217b3a894d96e632ac241002c22a939
BLAKE2b-256 bb8a6bbc36cdf25d52592d7ea98f9362b7e0f787e3eecf4cef27236524115047

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 375db89b7142cf0e2176f4377ca815d69226c27caf0266e01936fd7fd6fa96f9
MD5 d6f7f128e542f9a746114749572cd90a
BLAKE2b-256 644ed426f9b6326078abf3bf8a2e33a1e3b208aed7befc4851aa214be3c4ec4a

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b480d5d7255554c38822f884ff7c88f9b8c54697fc1917611fca7de0490d3b9
MD5 c9c19aace1d4a45bc8874d774735ea16
BLAKE2b-256 bead568069cc5b5b5ce986b261061bda5300f33571845dfb191fd3bd04bdfdd6

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 062c37d71b2bbf19a3e6f2d74fbf11d4c82e63c01fc9960cb8d20fc0583bf0d8
MD5 0474be1da2d4172aa8ca0f2dbba6dd74
BLAKE2b-256 d0aaccf5e2795ac90a8e019afcb18c596c83f161cb546d27d53c158d0760418b

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fda1bb437b598610cbf9d0d3f60b906eddf9774b5fa48c8edd0152d6eaa7d8f
MD5 78829b5941230269ce90480c4fc39c36
BLAKE2b-256 366443a8035120994d2eb25c674cb1fa3cbc7d312910dcecea8c7c85a87836a4

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 59c35a041533576e77371f51e05d9cf620c572cf9c74cb7b87895fb71cdcb88d
MD5 ac810bea8a5921fc0286fce5ddf97b87
BLAKE2b-256 c74ec501699e5449f57da45add872225afafad43a478546926cc0e88411cc445

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 78b17dc4fcdd1056656ebebd7ef18f9c0ce8ade11f6e7ab8cf9f700f6ae2bb76
MD5 e5b123f0d56cefb77a1eb0dcb426f3bd
BLAKE2b-256 41925dc10b11b4bf3f4f60f9e3d8a9970bcd91b91079bc600247fc9567c514b3

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp37-cp37m-win32.whl.

File metadata

  • Download URL: selectolax-0.3.26-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for selectolax-0.3.26-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 703d05a16fc7070cbd381549b8236f9ae7af05b0f03c084344a686d7e810bdb3
MD5 5936a26812476d2fa8f90a903506bb08
BLAKE2b-256 9f2a6f22ff3a3cd7115cfd1d78d0bc6c5f8f96653e4b37ce75dfd4e72376e1c6

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6d7adee1220ca49a705719200bf59bc54d2b3ce6fc148d0beab10624502151a
MD5 ee2fd60760a3a02e02a832df48398aca
BLAKE2b-256 9607ca82ead748d8c946e43e0dde3487bb7a8d70aea077cd4ea9b866827d27e2

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c269cdff9edbf0bada7f58f60cf1f1d615919fbda39a8f0e3a7b79ca89d1726
MD5 67f57aad276c3bc095fda0ca0f10fc76
BLAKE2b-256 819a010b3236ba72bee4c794cbef0c2444b933fbbdccb0c567fd999cbf995839

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7023550a2d1e41b4e45ee4901f734590c73df778ee9e93a54c570968f74fd094
MD5 56b4e7df35afbb7b4e32f4c04af0f411
BLAKE2b-256 54504359d9dda21d771ca0e68a2b5c0bb1d72dde7ad91fcdf432300e27057507

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88a74f3c7859f1d79da79b837ce49f7dba67e1d6815315dbbfb85c34bccc2a42
MD5 9fb7375600be5778a6ba9cbbf523be57
BLAKE2b-256 b579b2b90a9e2bb242e8c92ecf627faec3bb140263a7c80741a6618ca96307d3

See more details on using hashes here.

File details

Details for the file selectolax-0.3.26-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.26-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 136041fe36cdac45d5586d34f758c857f56c9558fdb060cb0d7233d508917bf4
MD5 683bd2f348fb05837cc243b27631eb50
BLAKE2b-256 635c5a717d1633cdb6ed812ecb1a3d8240abfb2371c1f71f76818d53ca3c79a9

See more details on using hashes here.

Supported by

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