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

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.

Currently, the Lexbor backend is in beta and missing some of the features.

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

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.8.tar.gz (2.8 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.3.8-pp39-pypy39_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

selectolax-0.3.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

selectolax-0.3.8-pp38-pypy38_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

selectolax-0.3.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

selectolax-0.3.8-pp37-pypy37_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

selectolax-0.3.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

selectolax-0.3.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

selectolax-0.3.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

selectolax-0.3.8-cp310-cp310-musllinux_1_1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

selectolax-0.3.8-cp310-cp310-musllinux_1_1_i686.whl (4.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

selectolax-0.3.8-cp310-cp310-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

selectolax-0.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

selectolax-0.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

selectolax-0.3.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

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

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

Uploaded CPython 3.10macOS 10.9+ x86-64

selectolax-0.3.8-cp310-cp310-macosx_10_9_universal2.whl (4.1 MB view details)

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

selectolax-0.3.8-cp39-cp39-musllinux_1_1_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

selectolax-0.3.8-cp39-cp39-musllinux_1_1_i686.whl (4.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

selectolax-0.3.8-cp39-cp39-musllinux_1_1_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

selectolax-0.3.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

selectolax-0.3.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

selectolax-0.3.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.5 MB view details)

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

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

Uploaded CPython 3.9macOS 10.9+ x86-64

selectolax-0.3.8-cp39-cp39-macosx_10_9_universal2.whl (4.1 MB view details)

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

selectolax-0.3.8-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

selectolax-0.3.8-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86

selectolax-0.3.8-cp38-cp38-musllinux_1_1_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

selectolax-0.3.8-cp38-cp38-musllinux_1_1_i686.whl (4.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

selectolax-0.3.8-cp38-cp38-musllinux_1_1_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

selectolax-0.3.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

selectolax-0.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

selectolax-0.3.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.6 MB view details)

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

selectolax-0.3.8-cp38-cp38-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

selectolax-0.3.8-cp38-cp38-macosx_10_9_universal2.whl (4.1 MB view details)

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

selectolax-0.3.8-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

selectolax-0.3.8-cp37-cp37m-win32.whl (1.8 MB view details)

Uploaded CPython 3.7mWindows x86

selectolax-0.3.8-cp37-cp37m-musllinux_1_1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

selectolax-0.3.8-cp37-cp37m-musllinux_1_1_i686.whl (4.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

selectolax-0.3.8-cp37-cp37m-musllinux_1_1_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

selectolax-0.3.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

selectolax-0.3.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

selectolax-0.3.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

selectolax-0.3.8-cp37-cp37m-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

selectolax-0.3.8-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

selectolax-0.3.8-cp36-cp36m-win32.whl (2.0 MB view details)

Uploaded CPython 3.6mWindows x86

selectolax-0.3.8-cp36-cp36m-musllinux_1_1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

selectolax-0.3.8-cp36-cp36m-musllinux_1_1_i686.whl (4.5 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

selectolax-0.3.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

selectolax-0.3.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (4.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

selectolax-0.3.8-cp36-cp36m-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: selectolax-0.3.8.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8.tar.gz
Algorithm Hash digest
SHA256 070b55311b05667c71fde6c44a29a5bddf961d6de25712a5da884fa2c8789345
MD5 a53552a52723fc351770e723b4089ef6
BLAKE2b-256 ef0cf51e442dd92b70da8ad43834c77e05ba496bf49275ac139071cc05cc284b

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 43da9073d168bde72c6901142176386fc9d100daf6f4e22542edf5ff0be8e92e
MD5 beb7dcebc55e6be5197718e7b0e05a62
BLAKE2b-256 75e0f282eaf2adde4641ebb3da33e5c609648aad4e25fd799dba8f0c8c912c1c

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4b9c422c907000a8b91b321db78d1e11163d11c9d5bbea4003d63c3931ad3c7
MD5 ac2067a70ee88ab39dfa705be745c505
BLAKE2b-256 26bb6c7aa37ceab663f0e42c18bdeab17d0c92fedb888c8b7eb852985d39351d

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bccb452df75f7f8f095c4c3a24f221c20919ad4e8ef843d83b7c78830a2ff1bd
MD5 121fdfb352969124645b579908d5d245
BLAKE2b-256 338c6c5387a0d1e71a2a673dfcd986ab71e59ee7eec591d9162296d023fa93db

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92f7560039a703304c5ee2c4fb90b5bd3408af8dc17bf6a4084cf7dd610209c8
MD5 6745fb2fab32b0abb2e7c0e1f03a52d0
BLAKE2b-256 29b3d6ff28e420e4b8b9dfb9b22b98507a13a785cada266eded059367b3cd9d0

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40be84b438871305b6f743d9bba48e829da4a3daec6d2c6b060622e6b1444400
MD5 228369908b5431c21ea65056df09a926
BLAKE2b-256 5a5fcea4ed584b480295fe64479e199905db39297c1b89a2ecfda311fec7aabf

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a254bf167c130115942484654fe91ee1a75ec30d493533f856af7f127c25ac26
MD5 bbc2c0aad99fcbfc75966a0bec8e8d1c
BLAKE2b-256 e2e19ec44cf2110d84459880bbf70dcc139192cd99c400cc0069f6136009511e

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8268fc33c4f04b7daf62f8c3ed3ef9945b77a834d79c695e0cb428930ba7a6f6
MD5 414bacecd91d4dead522d3c45aba8208
BLAKE2b-256 175939a7ffd44e39ff122304475453b9e45a637574104294a926703cd7295b5a

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44abbacbdefea013653cbfe80896a730ccb172c2a2112ad7a2c3e9e2c4cbe922
MD5 51e1522388dabedbf2442580aea23112
BLAKE2b-256 0cabce6b33e5fdf990f718db0fc99a4bcf9fa4ec2849ebc5d2155f98ac08fba7

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d9b14c8467cd6a93a6225daaae919e64f149f13e6e9b1b74d7ff33d7c0c703b
MD5 8d7cd6a4a0b5c1e1426e6fd47fe24c93
BLAKE2b-256 1c2ec9d1215a70c628ed4227ada2f0db60c55bf728fe739c77b35b976c88de11

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 849ac213b810e69638a1dd3f89ad611f7dbf36189ff52b57eee1dbc12a54ab36
MD5 cadf23f3f5cb04692fdac7723a31cc33
BLAKE2b-256 293e6cf699b951994506151c7a4ea5327a82d8e47ec5a4b233bdc8945d4282b1

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7fb11cf2b051dfac0c0a1f34e76b6d7ded8ca8ef3ca9c948997e664ca62d6c63
MD5 201c7ee1398652561059e28f4d9564c3
BLAKE2b-256 4599adf7dd548a03e9c0c16db9fd3ebeaa3acb29d743a59d1e62fe7d96e7f659

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 239182bddaa87cb07d6527074cd8b0675610351df70e4bf006e28015b58a8703
MD5 d803fce83415d12feee7dd4c0d67b4ab
BLAKE2b-256 d34c2b84e89b98fa484aaed3b792c2e7a5ff09fe91ea8375959792fb5cb3748e

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9792ed26bcf9993cb507113d7429826229e786e4290f38568bb05d36e90222d7
MD5 3b5da8532d03c1e4d632b25b2e469a81
BLAKE2b-256 7d4b7c302766ea9fa17f75d5f95bff512a600f11aedefc0ebbf53987a6e7c351

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 548e286ffa80bd20a9f30bd15547bab5def26853250935ce8ad893c4e45cde2b
MD5 e2d0447f98a427af4884087b46ed57c2
BLAKE2b-256 b678fec18ccf8e3c99edb773ea8bbe4e1374448b432298f168fde32b8e462791

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4b4f22ddc56d8e4ed28f1456c00437ea4fbccce6502b329d91b3e6f8ce983ff9
MD5 dc0d23be838f2039f0e6fa3095643813
BLAKE2b-256 46cee87110e5ab28af1ad0157a5480edca7145923932d5b5bbe03d1bebe07204

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8f95bc74d4ccf1b50e9e66101a9000d438086a5bb95558b37bdd4d7c207f5ba5
MD5 2bbabe1171f555f208d3fffdf47f1f14
BLAKE2b-256 0eded969fa64311ff6977ed1dd842d97eb1c412959d4b3ab578ede36489042cc

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 72162930612d94cde5aaee8bde5b759e58b05b79be2d933fb6528b4a62ad4856
MD5 b342df13ff83e2bf19b8a1b346fb04fe
BLAKE2b-256 856eb0731769f794fb0893a6303cdcca0b20cff4cba7d4c2e8634954d7951e94

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 73c3ae2b31ec51d2445b76c7bc7af73a5fa105f2aeec3deec280714eda8e9479
MD5 2b1d72b6bf03ab3a6ef78af1db8541c5
BLAKE2b-256 a43923824c28474bb38cb738316d8fd8ce28a41982d0c82afa7359998b33dda1

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 611c87a59d1b147b8ff098b388b2758c9fb0b84979955eabd66b9e067c0cfbf4
MD5 01f9069b59786516de51957b89bb476a
BLAKE2b-256 f04ba12570fce09ce4bfb95167863b71a16ef1d8e589d6798d5b38293d2560a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be9da458ce56ef3fa97d74214f7612019d5abd49b5ce510f8fc2e59910903bca
MD5 9df1e3975ef80e4d1a7382b563d78674
BLAKE2b-256 8179ceeb6be7880e386f3745b3415546810d1ed2357c58912211c43d727996c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf29c0e9b3d1ee121b8dd50bb84291008b91d1d7c0eedc028a3c0e308b0aa8ca
MD5 71f3df715af6d81845e5e648d77c39d0
BLAKE2b-256 656a4d52342c11e23bb36bc689743d68e2758519ca5486c1082e7c8f3eba3dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8db22c09206ca2e0b65dfd0b6137078d82cc8d6713715c11e4e0eaec2e3c193e
MD5 5899aa3cd70ab335d235448c3f6622dd
BLAKE2b-256 3f38e5e7ce7bc9f7ec0da3128c3eac1f3049f42d090214485d0d9f06f174eaac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b826cbae3d6d92dc8c1f424481259c03bc0f236024a9ea89406e800156febbe
MD5 6692951152a1fdca9ec70a6d283a819a
BLAKE2b-256 e6cdf4783b0dfc1039fe5854b3f99100ee89187ea6b47d4f274a93af8bc7e807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f30a626431b3664feb6682ba4c159568e1421d0f12a77eec7acc89cf8e8a4fa8
MD5 64d4cff6ca717017df8610ea48dece4c
BLAKE2b-256 8d3d5ad3916438edeff54f6e7eda71cbeb9fcb16b99401c1953bde580ad270b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6f8836f8d34fd0dc79610e2501397241de6cf71842aa2da643d5ea5538e8b708
MD5 24baf42c2276d904af42d81b4fbe8c65
BLAKE2b-256 d199d648dff9c02838481c521e53535bc070077bba40be0e73679d88093c0aac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 26b05606912f265b19d47956b8652d7f956c71fec31c69a6da7e9f7853627df9
MD5 4f4df63d6228866f61f79d75af24a249
BLAKE2b-256 a65d762099c980677a4346cc66d2400fed2ee2d7eba2453db2b437cc371374c0

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2fd669228d689f046ad8d5708a9fbf84c29d78d55dde0bcc04988e2611b29218
MD5 7ebf8a9e443d5bb744898f18a0f5a5c5
BLAKE2b-256 472532ebc72833d5edb9f131e49c406e09c49ca402c80f9f207e7ba43b34ab89

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 94da792acee834a705262860cc4fc2a7b8db70ad7441dc39afcfe3b4924ea53b
MD5 99a3c5067ee007a2ef615a1a1470fa6c
BLAKE2b-256 0b640c175c00d47a8e3b46ce8dda2e5828575a91e789c8615cec0e8caaf36e61

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf3e608c2e5225203671ec8c10c850868f6f16c94ebfb5e3becab16e3b59bbff
MD5 a11f2ddf769f5877d654ef6f3055e6b5
BLAKE2b-256 f412f11c063b8a07f6ce7e6caef4c1aea1f23649a9eb91b4871ac4697c3726e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 589eb7c2d64a75bc09d792cbe89a8163f21421fa2179d1fe47918f10ebdc10fd
MD5 1ff522c186c45b3941a49e6746578c76
BLAKE2b-256 aed67757aa294fb465ffdab47073ca5ee337145a8160fb52284d4799d598337f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cbf3fcf50068ee6ba0a49e0093de4f80b97b848e16ed13126aec5763d15cdaa
MD5 d1bbdaed5b60a623007b13ed32634c43
BLAKE2b-256 5bea88ff83cc9b8b454b6504fa488b452ecd0f67b00fc0a80bbbae84e8594bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d29729209a59b9c253135cc9f481b797da11b22486a82008f798bba9fac3404c
MD5 9392a069b8a26f1ad9cbc4cb3aabb3e4
BLAKE2b-256 0b348647d2abfa15dfca19eeeec17b8c9a3af03cca3d9fc18b32f448dfaaa73a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 079ba940f886c4469d4d9433ebafb942a00bdb79015d8fb09646a27ed578154c
MD5 6092536b05f094480f43e07623ff7395
BLAKE2b-256 f6833e8726eaa7b47a614c6a02e753c34379c34a6f1a4c1c2dfe3daade567909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 47b587e3473154ac5f2f5c3e02c71d361dceaff60dbe8385042bc3943fb74ceb
MD5 761f6269476c6f7744b977999d909acc
BLAKE2b-256 a97761927cdab7ed03196b6aa2d0e91d346fd4b515436e11e247183a935ac11c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b916798b5b6511ebc22a62b7bbbbf06b06c8bc2d5194940cb88b1b37ef81931
MD5 0d3cfca1bee4d12d005da870241cb2f8
BLAKE2b-256 e14c0c5370c34dcc77497da6411eca344219b2cad2dabe18882dc6274f02db4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 36fe253cdf2bb1b17e13da9ec9c09055f48ecf41559980aae2dba30808dab8e1
MD5 96b67e2d63565ef79ed73b450dc2b612
BLAKE2b-256 5678e7dc32a6153b8038bf4863a4fbc66b37d5c507af96b0ed312dc2046163c8

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70bcd7efc7ad3eec663607998e102f3b2847dcd7d27c3305f109efaede5491e6
MD5 5d5784b1ed999e27479a897d8d74b2d7
BLAKE2b-256 4250f54fb43bb34efd71942801ad4546ac1fe9665397e591fc6ad3c6ad9f9b47

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2f2e6de5a48c658f94d1b130dfb9c143012a1a3578d2ba65c59cebb012e8e42e
MD5 144bdf6f7bc4c087bc9bf1c45bd82be8
BLAKE2b-256 fbe013a7d52b4f1b602da7b51c42fc0a177cd45e1b9b553d624f2b1203c9cf40

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e41ef00a2c960aa94d6259ec459c8c71570727704975ed5b8ce5d8767e4f2cb
MD5 c8454c9a8b348575281d36f9f3460bfd
BLAKE2b-256 c2be35985a1810ffa344c6050cf7f4cd14ad3a0bb4fa8e422d8d260c9a38c5e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb86f631fb7d5a7e279dc23127e4234d1b3907eb7f748c505dc93daac71282bb
MD5 e11ab58ac7ace14a8061e386d53f8d3f
BLAKE2b-256 3d6e583ea61eee6bcb653afd4faa879d6851897c8c0c1fd9db35aa674bda46a2

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 434b335bfcecf2f72161d2ec1a98b4a089ed94497d29e0e1450d74b21f974a99
MD5 1d001bdd48459acbdec6a3fc4f77c41b
BLAKE2b-256 3220b716eb0b4c7d940609b3a84aa72888d091cc145b89b1f44f0df2e51a68e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 886495d94815d186c75d92f65e32358a4d560eaf4f4bcee9dedaa3a4c9ec604a
MD5 9d17cba845ebe8bb85ea4bb54e42f700
BLAKE2b-256 1516557f48b7a1785058d2a1558710bdec317dc848320fb6fa74364643203610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27c0ad76fac5c471f3c4ed4f36cdecf107d9410ed7c41754f42eb93a94d84b15
MD5 867fa9c56d5ecf5f4310da609c9172e3
BLAKE2b-256 a04d30c70a13e681b2ead74367f2fa8dbe998d30a7ee70f8487c306c28b8d8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 521c67d1951741dd972c2b7f0cf146633ea991ac342d0169459837a8f45d4dc4
MD5 40a73c4033b0adb6e019790038e1e5a0
BLAKE2b-256 5cc395385fcdd46720ac17c3486b71a82253f8db9de078df56bb4e632833ef6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.8-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eb07b2ce7e74bdf6397baf57542580f9adf90e763de3c5a2717b63c427b398ba
MD5 b74098507b22808fbe922b8cedd16da0
BLAKE2b-256 70d45fdd29b94079eae6fed0a5832d776830dfc0d1193542e1b18f27b3367db5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: selectolax-0.3.8-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1e00c6d699caa45cc00330ecfc173e555ed4512c0934c84922d178a47b64d14f
MD5 f39234c527541294e7eb51012a6f7a1e
BLAKE2b-256 727665d2a52b0c68ac66d77986b8d70704e601ce228202ab1842eb5e85b76dd7

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9a464b7856ca90b9147454b613d7cf8661593f6424ec451fe7d0a739523ef621
MD5 9dafd5fdf4d1bed6496a7f88e090bf7e
BLAKE2b-256 760d48be5b5af2da404f4a89eda5c8fb3afc24d31601742585d715cc03ff4e73

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2af874d81ae10ff684f180ea0e34d714af2d52c9ac13de65b79d1c2292b4a011
MD5 14a5a14c8762e082d908593038521cd1
BLAKE2b-256 7757efdca801d546776556771bad0e591644bdfa473c166f6add4b7921223ed7

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d6affcc5ea39a2343816de58994f48c09254835763fc4544aae49e5db299883c
MD5 4c462f78f6a6cd0e034aba26ec51d7be
BLAKE2b-256 4c2649f1b1a69f9696913da5a84546114cdf3475fdf976eb132c36203b113901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67955e1fc113f59d6cf12d902e65fe70923a4eb99f71a50b384ddbd3ca80a7bd
MD5 c6503504862d83e3ced17997724a8f68
BLAKE2b-256 3a1301c2d3264158cda3994eb165b26869b41e91d46031a809275271b5bb0b15

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1794033ca106e4c8d65f9ddb3d95ff31d807955ee4d3cde4f455b13a9711efe8
MD5 c7a59209ad14bae374567e34b4bb0141
BLAKE2b-256 9cf96c864f4c1e1b859410d54fef3ef6743f7dd011100e724aa34dfdbcc767fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e9863bdf84bfda282da1f35516f70cfbcf6bc23cd28fdc1ad1f7da70d918af9
MD5 15a5377c51e012b0a80aeba30c0a0785
BLAKE2b-256 4c83b724efdd058b29e22565b56363cdcf8a979a23bf329fb7c6287d03e9d540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for selectolax-0.3.8-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e19b32daf181f15d049c47f93dcd33eff50899b42a1eeecffb128794a99a7b2
MD5 75ae7b934b01794e7b4aa34c19e84aac
BLAKE2b-256 c10bdf6a5944314ea1ccedcc1c95c53bc4a4f4809d5287467ca1a003855482a5

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: selectolax-0.3.8-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 db0e5e294226ecb0c12f00ca2f9f8689fbeb168755bb7a8e2de18653a065c5e4
MD5 36eeec357d1deafa6a47707ce7557519
BLAKE2b-256 f57d0a7685e268bdef29fcac600bbccad00ffb31473cef3a874c5ccffad93332

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp36-cp36m-win32.whl.

File metadata

  • Download URL: selectolax-0.3.8-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for selectolax-0.3.8-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2025269bb32c7a63df1b8cfd1dafc719d6d565f3441040f9a0d9e6fd607adc0d
MD5 934bc0d9470ebc79f39808e7523d2a78
BLAKE2b-256 2a8dfcdd6f99591a22db830ba2f5f0f7bbed30558e0cf930d7b22ed901db0ac8

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1f1dceb4a6c42f62ff5362d671a5e3ac72fcc2176f10bf9deb0d7d8bbcbb8341
MD5 6cae9f0f66651ff2383adb9ae4d8194e
BLAKE2b-256 a27c1d5c27da5b8e93aa60d4ef4e9f713618a2ba75039290f6563cbbdbbf99fb

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eaaeb9e92f602a84568bc7dada790cdfad8faa58482871bafdca7d923508ff27
MD5 16e38e360c5968a6f44164fba7177c27
BLAKE2b-256 9fac46da3c8d25bada541cbc5a1775c513214a3553e30cebc4c0f26a5b55e7c8

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0082ca58fb99dbf33d740b4b1de50d43b41d9218e7a10cc0f04a055e6511c614
MD5 4e0a24c4fefc8876bb659687b997f5d0
BLAKE2b-256 2354c75cffa1c68f281a8704d0e49c860163db92496aef92ac84d248afe1c33a

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d2cbd87d5221039da305ed74a4482e1c39738d8766a11398048c4c82e75a114
MD5 aa44efb23e327a8fe709e472cce5957b
BLAKE2b-256 c5058627ab94bfcd958ca40aa50fb8842a5721f98287938556633b19b2c08980

See more details on using hashes here.

File details

Details for the file selectolax-0.3.8-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for selectolax-0.3.8-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb51db97de7885a94a952d8025a7b0129499d5fcf86a3d44bfa437f918fb9d13
MD5 2596ed857ab75a7a434e72cd4cfb93ab
BLAKE2b-256 9a1145e190ad3bb753162c528aabbb3e213d956421f8fd3b51bf37dda0b7361c

See more details on using hashes here.

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