.. image:: docs/logo.png
:alt: selectolax logo
-------------------------
.. image:: https://img.shields.io/pypi/v/selectolax.svg
:target: https://pypi.python.org/pypi/selectolax
A fast HTML5 parser with CSS selectors using `Modest <https://github.com/lexborisov/Modest/>`_ and
`Lexbor <https://github.com/lexbor/lexbor>`_ engines.
Installation
------------
From PyPI using pip:
.. code-block:: bash
pip install selectolax
If installation fails due to compilation errors, you may need to install `Cython <https://github.com/cython/cython>`_:
.. code-block:: bash
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:
.. code-block:: bash
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:
.. code-block:: bash
make clean
make dev
Basic examples
--------------
.. code:: python
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.']
.. code:: python
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>
* `Detailed overview <https://github.com/rushter/selectolax/blob/master/examples/walkthrough.ipynb>`_
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`.
.. code:: python
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
-----
* `selectolax API reference <http://selectolax.readthedocs.io/en/latest/parser.html>`_
* `Video introduction to web scraping using selectolax <https://youtu.be/HpRsfpPuUzE>`_
* `How to Scrape 7k Products with Python using selectolax and httpx <https://www.youtube.com/watch?v=XpGvq755J2U>`_
* `Detailed overview <https://github.com/rushter/selectolax/blob/master/examples/walkthrough.ipynb>`_
* `Modest introduction <https://lexborisov.github.io/Modest/>`_
* `Modest benchmark <http://lexborisov.github.io/benchmark-html-persers/>`_
* `Python benchmark <https://rushter.com/blog/python-fast-html-parser/>`_
* `Another Python benchmark <https://www.peterbe.com/plog/selectolax-or-pyquery>`_
License
-------
* Modest engine — `LGPL2.1 <https://github.com/lexborisov/Modest/blob/master/LICENSE>`_
* selectolax - `MIT <https://github.com/rushter/selectolax/blob/master/LICENSE>`_
Raw data
{
"_id": null,
"home_page": "https://github.com/rushter/selectolax",
"name": "selectolax",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "selectolax",
"author": "Artem Golubin",
"author_email": "me@rushter.com",
"download_url": "https://files.pythonhosted.org/packages/1e/86/5f3f956ad7e553deb5f09410764a3bc51f450349c6be8a5990af2f870c09/selectolax-0.3.26.tar.gz",
"platform": null,
"description": ".. image:: docs/logo.png\n :alt: selectolax logo\n\n-------------------------\n\n.. image:: https://img.shields.io/pypi/v/selectolax.svg\n :target: https://pypi.python.org/pypi/selectolax\n\nA fast HTML5 parser with CSS selectors using `Modest <https://github.com/lexborisov/Modest/>`_ and\n`Lexbor <https://github.com/lexbor/lexbor>`_ engines.\n\n\nInstallation\n------------\nFrom PyPI using pip:\n\n.. code-block:: bash\n\n pip install selectolax\n\nIf installation fails due to compilation errors, you may need to install `Cython <https://github.com/cython/cython>`_:\n\n.. code-block:: bash\n\n pip install selectolax[cython]\n\nThis usually happens when you try to install an outdated version of selectolax on a newer version of Python.\n\n\nDevelopment version from GitHub:\n\n.. code-block:: bash\n\n git clone --recursive https://github.com/rushter/selectolax\n cd selectolax\n pip install -r requirements_dev.txt\n python setup.py install\n\nHow to compile selectolax while developing:\n\n.. code-block:: bash\n\n make clean\n make dev\n\nBasic examples\n--------------\n\n.. code:: python\n\n In [1]: from selectolax.parser import HTMLParser\n ...:\n ...: html = \"\"\"\n ...: <h1 id=\"title\" data-updated=\"20201101\">Hi there</h1>\n ...: <div class=\"post\">Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div>\n ...: <div class=\"post\">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>\n ...: \"\"\"\n ...: tree = HTMLParser(html)\n\n In [2]: tree.css_first('h1#title').text()\n Out[2]: 'Hi there'\n\n In [3]: tree.css_first('h1#title').attributes\n Out[3]: {'id': 'title', 'data-updated': '20201101'}\n\n In [4]: [node.text() for node in tree.css('.post')]\n Out[4]:\n ['Lorem Ipsum is simply dummy text of the printing and typesetting industry. ',\n 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.']\n\n.. code:: python\n\n 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>\"\n ...: selector = \"div > :nth-child(2n+1):not(:has(a))\"\n\n In [2]: for node in HTMLParser(html).css(selector):\n ...: print(node.attributes, node.text(), node.tag)\n ...: print(node.parent.tag)\n ...: print(node.html)\n ...:\n {'id': 'p1'} p\n div\n <p id=\"p1\"></p>\n {'id': 'p5'} text p\n div\n <p id=\"p5\">text</p>\n\n\n* `Detailed overview <https://github.com/rushter/selectolax/blob/master/examples/walkthrough.ipynb>`_\n\nAvailable backends\n------------------\n\nSelectolax supports two backends: ``Modest`` and ``Lexbor``. By default, all examples use the Modest backend.\nMost of the features between backends are almost identical, but there are still some differences.\n\nAs of 2024, the preferred backend is ``Lexbor``. The ``Modest`` backend is still available for compatibility reasons\nand the underlying C library that selectolax uses is not maintained anymore.\n\n\nTo use ``lexbor``, just import the parser and use it in the similar way to the `HTMLParser`.\n\n.. code:: python\n\n In [1]: from selectolax.lexbor import LexborHTMLParser\n\n In [2]: html = \"\"\"\n ...: <title>Hi there</title>\n ...: <div id=\"updated\">2021-08-15</div>\n ...: \"\"\"\n\n In [3]: parser = LexborHTMLParser(html)\n In [4]: parser.root.css_first(\"#updated\").text()\n Out[4]: '2021-08-15'\n\n\nSimple Benchmark\n----------------\n\n* Extract title, links, scripts and a meta tag from main pages of top 754 domains. See ``examples/benchmark.py`` for more information.\n\n============================ ===========\nPackage Time\n============================ ===========\nBeautiful Soup (html.parser) 61.02 sec.\nlxml / Beautiful Soup (lxml) 9.09 sec.\nhtml5_parser 16.10 sec.\nselectolax (Modest) 2.94 sec.\nselectolax (Lexbor) 2.39 sec.\n============================ ===========\n\nLinks\n-----\n\n* `selectolax API reference <http://selectolax.readthedocs.io/en/latest/parser.html>`_\n* `Video introduction to web scraping using selectolax <https://youtu.be/HpRsfpPuUzE>`_\n* `How to Scrape 7k Products with Python using selectolax and httpx <https://www.youtube.com/watch?v=XpGvq755J2U>`_\n* `Detailed overview <https://github.com/rushter/selectolax/blob/master/examples/walkthrough.ipynb>`_\n* `Modest introduction <https://lexborisov.github.io/Modest/>`_\n* `Modest benchmark <http://lexborisov.github.io/benchmark-html-persers/>`_\n* `Python benchmark <https://rushter.com/blog/python-fast-html-parser/>`_\n* `Another Python benchmark <https://www.peterbe.com/plog/selectolax-or-pyquery>`_\n\nLicense\n-------\n\n* Modest engine \u2014 `LGPL2.1 <https://github.com/lexborisov/Modest/blob/master/LICENSE>`_\n* selectolax - `MIT <https://github.com/rushter/selectolax/blob/master/LICENSE>`_\n",
"bugtrack_url": null,
"license": "MIT license",
"summary": "Fast HTML5 parser with CSS selectors.",
"version": "0.3.26",
"project_urls": {
"Homepage": "https://github.com/rushter/selectolax",
"Source code": "https://github.com/rushter/selectolax"
},
"split_keywords": [
"selectolax"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c7c2263dfb337798d7c273e118e1dca6b016b98e765801e2c6aab99ce07cbf7b",
"md5": "325525a11f6da94879be5e6386e575c9",
"sha256": "2a421ba2e61f9567f90a1259cb34dc31586e6b2025ad6d7909b39339a183044c"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "325525a11f6da94879be5e6386e575c9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5844596,
"upload_time": "2024-11-11T12:31:29",
"upload_time_iso_8601": "2024-11-11T12:31:29.983843Z",
"url": "https://files.pythonhosted.org/packages/c7/c2/263dfb337798d7c273e118e1dca6b016b98e765801e2c6aab99ce07cbf7b/selectolax-0.3.26-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59014795fff83e35daa531695c07b3687002bdf5b75903de7c77b2d1aa6a9ba9",
"md5": "ebe7bd417b302c0b6e2679513514f412",
"sha256": "a87a6681fdafb4388464df368065fecbfdf82531ae33a2f699d2e6ede3a396a5"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ebe7bd417b302c0b6e2679513514f412",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3159178,
"upload_time": "2024-11-11T12:31:31",
"upload_time_iso_8601": "2024-11-11T12:31:31.874397Z",
"url": "https://files.pythonhosted.org/packages/59/01/4795fff83e35daa531695c07b3687002bdf5b75903de7c77b2d1aa6a9ba9/selectolax-0.3.26-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a529dbe73e1f7c85f58a9a50d80e5b493e18bc1d4dabac27fbee4bc776525caf",
"md5": "31ba64cf48b685d0d8779c68b3825f61",
"sha256": "2bb10fba206cab32206f218fb560ed50263420b29024ac990202bf6e3f5e207b"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "31ba64cf48b685d0d8779c68b3825f61",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7313713,
"upload_time": "2024-11-11T12:31:34",
"upload_time_iso_8601": "2024-11-11T12:31:34.038844Z",
"url": "https://files.pythonhosted.org/packages/a5/29/dbe73e1f7c85f58a9a50d80e5b493e18bc1d4dabac27fbee4bc776525caf/selectolax-0.3.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f8b75883b5279528179d692fc698c5f3d5172848a06468c255a90a25c0ce541",
"md5": "bfc07328e4bf8cf3789f8ff0978600ad",
"sha256": "1d56ce5ac3c2b56d0d115fa0d206f3273ce9942dc4e8b3f1c73b8d185a4b90f3"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bfc07328e4bf8cf3789f8ff0978600ad",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7349772,
"upload_time": "2024-11-11T12:31:36",
"upload_time_iso_8601": "2024-11-11T12:31:36.316465Z",
"url": "https://files.pythonhosted.org/packages/9f/8b/75883b5279528179d692fc698c5f3d5172848a06468c255a90a25c0ce541/selectolax-0.3.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ee60b2fa533449f533c8a2ef25e0d3c09acf738202b16367231304112e2528c",
"md5": "399740d8d5bea917be46b31887a4d48a",
"sha256": "4537276c1c93a33ddaae3e63705b5199a0519e930ee49708d95d64a1af77931d"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "399740d8d5bea917be46b31887a4d48a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 6772536,
"upload_time": "2024-11-11T12:31:38",
"upload_time_iso_8601": "2024-11-11T12:31:38.116672Z",
"url": "https://files.pythonhosted.org/packages/2e/e6/0b2fa533449f533c8a2ef25e0d3c09acf738202b16367231304112e2528c/selectolax-0.3.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a05ad0ed82216381c4193f703c1bbef063e0f0c04e27abe7b34ed360d39cea57",
"md5": "1f2f367db9a7b54e7466552ec047d74a",
"sha256": "7f5c933802676ea30d4413b0035d0da584b4052bb721f7db57aa2aa9c0b4e6f9"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1f2f367db9a7b54e7466552ec047d74a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7214029,
"upload_time": "2024-11-11T12:31:40",
"upload_time_iso_8601": "2024-11-11T12:31:40.369079Z",
"url": "https://files.pythonhosted.org/packages/a0/5a/d0ed82216381c4193f703c1bbef063e0f0c04e27abe7b34ed360d39cea57/selectolax-0.3.26-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4332f7d1907f49f59e609a46471fc85565898025c67c3490085083b480a534dc",
"md5": "fe822c302c9b49bf1eff88e84099fcf1",
"sha256": "e2a445576f341a698421a5fe39df25def3e37da6136a4de0d0103ee08611afd8"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fe822c302c9b49bf1eff88e84099fcf1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 6770507,
"upload_time": "2024-11-11T12:31:42",
"upload_time_iso_8601": "2024-11-11T12:31:42.783539Z",
"url": "https://files.pythonhosted.org/packages/43/32/f7d1907f49f59e609a46471fc85565898025c67c3490085083b480a534dc/selectolax-0.3.26-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b79b1a50f80b2be59a7417c5959bfef391a8be2ff3e5dc3662d7e01f232d160a",
"md5": "1e6eafb3842c628f675a15ec81ab55d8",
"sha256": "f54e6ae15294ceb3c7da34b1c30aa7c83c3b1d14142a62b592cdf494c08c4617"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1e6eafb3842c628f675a15ec81ab55d8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7299420,
"upload_time": "2024-11-11T12:31:44",
"upload_time_iso_8601": "2024-11-11T12:31:44.756097Z",
"url": "https://files.pythonhosted.org/packages/b7/9b/1a50f80b2be59a7417c5959bfef391a8be2ff3e5dc3662d7e01f232d160a/selectolax-0.3.26-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5244cbb5a327370ff1472227f7ea7959fe0b023b1a4c2800969f5b4dc535fc96",
"md5": "4ef52c0cca84fadef49d2e799f30ba76",
"sha256": "6e9bcc0007a5dbf7d29db6e05d31e66ee59de9ce102e96a6071e1fac478f769e"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "4ef52c0cca84fadef49d2e799f30ba76",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2337702,
"upload_time": "2024-11-11T12:31:46",
"upload_time_iso_8601": "2024-11-11T12:31:46.245177Z",
"url": "https://files.pythonhosted.org/packages/52/44/cbb5a327370ff1472227f7ea7959fe0b023b1a4c2800969f5b4dc535fc96/selectolax-0.3.26-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "11a927e8d28d922502750be3f82296181d404064a38cb972b7a5efe9c8e74a28",
"md5": "3fc5ec2a1a33056700111e7ba236ad40",
"sha256": "84aff790d22651aed8881e07213c7806f65e1f50d0891ec28c47f0e109a249c6"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "3fc5ec2a1a33056700111e7ba236ad40",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2486359,
"upload_time": "2024-11-11T12:31:47",
"upload_time_iso_8601": "2024-11-11T12:31:47.740405Z",
"url": "https://files.pythonhosted.org/packages/11/a9/27e8d28d922502750be3f82296181d404064a38cb972b7a5efe9c8e74a28/selectolax-0.3.26-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed502f62c1d882c970bbc390688f87aeee8b617731a6ef4bb7101f345b58d0d2",
"md5": "5a022686b4654b61f02d4da9a2a6bc2d",
"sha256": "6d17b3ec3fa7a526be7073482ccf8a23e403893994674d709f61affdb6c5545a"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "5a022686b4654b61f02d4da9a2a6bc2d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5846308,
"upload_time": "2024-11-11T12:31:49",
"upload_time_iso_8601": "2024-11-11T12:31:49.851075Z",
"url": "https://files.pythonhosted.org/packages/ed/50/2f62c1d882c970bbc390688f87aeee8b617731a6ef4bb7101f345b58d0d2/selectolax-0.3.26-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1fc588371f42b35f15a1a41ccf897aaf248db0d19aabef09c5fc380745bd8ecf",
"md5": "d68b10c22c4cfc5274b6e5f1180f4b76",
"sha256": "c1240e7933d09d27bf9326db1466be648751530edd87e7d82126e4d2d1766a8c"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d68b10c22c4cfc5274b6e5f1180f4b76",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3160501,
"upload_time": "2024-11-11T12:31:51",
"upload_time_iso_8601": "2024-11-11T12:31:51.848670Z",
"url": "https://files.pythonhosted.org/packages/1f/c5/88371f42b35f15a1a41ccf897aaf248db0d19aabef09c5fc380745bd8ecf/selectolax-0.3.26-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5d917ceab17e5d17e1af1f144dbe3f99a093bd9de216a57dfd4a3b3bbceecb4",
"md5": "db9aca7a83a06b281321c7a57e492008",
"sha256": "a5b58e7894453a8d6d4c26350d4b2356ddcb38f160cb0074a55d33138ef8392d"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "db9aca7a83a06b281321c7a57e492008",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7448668,
"upload_time": "2024-11-11T12:31:53",
"upload_time_iso_8601": "2024-11-11T12:31:53.934549Z",
"url": "https://files.pythonhosted.org/packages/a5/d9/17ceab17e5d17e1af1f144dbe3f99a093bd9de216a57dfd4a3b3bbceecb4/selectolax-0.3.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36bff128fcf1e2b8b4676cc4e3dc7fae06f43fa5110756cf501733976f82981e",
"md5": "e0fc486ed7c6961d8b06603aeadf0233",
"sha256": "165b14b2485af63ceb3a67e4e8ab53dd8c3a4ed368a064e7d6d68b3dfcbf8cd1"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e0fc486ed7c6961d8b06603aeadf0233",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7490708,
"upload_time": "2024-11-11T12:31:55",
"upload_time_iso_8601": "2024-11-11T12:31:55.448523Z",
"url": "https://files.pythonhosted.org/packages/36/bf/f128fcf1e2b8b4676cc4e3dc7fae06f43fa5110756cf501733976f82981e/selectolax-0.3.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46048e5def3118f6dcef39381ceb430a07693a07e3193ad5a3f9b5f54f5028ac",
"md5": "bf3fc95374234164b72dc548422b909a",
"sha256": "d6f5489ca476a347e88e030db3bde44dff9b4a6fe719cfd0b8ae78cfd86669cb"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "bf3fc95374234164b72dc548422b909a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 6892716,
"upload_time": "2024-11-11T12:31:56",
"upload_time_iso_8601": "2024-11-11T12:31:56.959591Z",
"url": "https://files.pythonhosted.org/packages/46/04/8e5def3118f6dcef39381ceb430a07693a07e3193ad5a3f9b5f54f5028ac/selectolax-0.3.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c93409f59beedddd8f975ed47693885705b406a1f2dea0f86ac2dc0ab2acf13b",
"md5": "22340b756dc88936d510a7232e853204",
"sha256": "1ba5e30494efb39bf87f31820169381738eb475965c65e9ac492667617f2ea60"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "22340b756dc88936d510a7232e853204",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7352782,
"upload_time": "2024-11-11T12:31:58",
"upload_time_iso_8601": "2024-11-11T12:31:58.579625Z",
"url": "https://files.pythonhosted.org/packages/c9/34/09f59beedddd8f975ed47693885705b406a1f2dea0f86ac2dc0ab2acf13b/selectolax-0.3.26-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e69151e05599504ec123def962c61f706afe45ea4293b8f0f6cad1a15cf7fe6",
"md5": "87d05e82e387a429d73fd0d5eba77ca8",
"sha256": "329eef64abc7a0a2d754c313dae544592944ebf58ac77313525f46fe1e80805e"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "87d05e82e387a429d73fd0d5eba77ca8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 6911288,
"upload_time": "2024-11-11T12:32:00",
"upload_time_iso_8601": "2024-11-11T12:32:00.915113Z",
"url": "https://files.pythonhosted.org/packages/6e/69/151e05599504ec123def962c61f706afe45ea4293b8f0f6cad1a15cf7fe6/selectolax-0.3.26-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c15fcb54217a36614a1369e4fdae0c9eff20286635714ebd95a60af6b70eaf15",
"md5": "3817cf83150deb7c871a74135cbc78d5",
"sha256": "462c4ae027cf8c2623177eb8bb7e43fc72505d6958c2bb7043591d25c8221ab9"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3817cf83150deb7c871a74135cbc78d5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7428664,
"upload_time": "2024-11-11T12:32:02",
"upload_time_iso_8601": "2024-11-11T12:32:02.695627Z",
"url": "https://files.pythonhosted.org/packages/c1/5f/cb54217a36614a1369e4fdae0c9eff20286635714ebd95a60af6b70eaf15/selectolax-0.3.26-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1f61fd26e4232cfe413bcecdda4dc9b9f6a5b1018ae54bd5f547f1e906b4615",
"md5": "d1bbfc599ea545fc1fcde54da5e1389c",
"sha256": "33d296c1f64b5a3e6f6fd9feb8d1b6ba69281f4b4083274a274959c3017c2081"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "d1bbfc599ea545fc1fcde54da5e1389c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2336982,
"upload_time": "2024-11-11T12:32:04",
"upload_time_iso_8601": "2024-11-11T12:32:04.915335Z",
"url": "https://files.pythonhosted.org/packages/e1/f6/1fd26e4232cfe413bcecdda4dc9b9f6a5b1018ae54bd5f547f1e906b4615/selectolax-0.3.26-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af54d92f27366093a526c864dde22d87650c0f2d2e19629ce75cec37f49ccef7",
"md5": "c6c28ed742d2b5a787494c9d57c73b4a",
"sha256": "dfedb7ba2383e6b4eafaf607ec39ce1e7f40508efe06c1e984bcaac5effbc3f9"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "c6c28ed742d2b5a787494c9d57c73b4a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2486627,
"upload_time": "2024-11-11T12:32:06",
"upload_time_iso_8601": "2024-11-11T12:32:06.973985Z",
"url": "https://files.pythonhosted.org/packages/af/54/d92f27366093a526c864dde22d87650c0f2d2e19629ce75cec37f49ccef7/selectolax-0.3.26-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb7ebfb9fbff4d4df5d4125672d65cd6f48ae1cc9dbcdbc3f182b92d11a16087",
"md5": "0be1907aa984b9b72a0fc7f319674f1a",
"sha256": "4af271eaf21ce7c27a749171e4f06480324323e7d60d5afdf2d204076cfa58c5"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "0be1907aa984b9b72a0fc7f319674f1a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5851095,
"upload_time": "2024-11-11T12:32:08",
"upload_time_iso_8601": "2024-11-11T12:32:08.327688Z",
"url": "https://files.pythonhosted.org/packages/fb/7e/bfb9fbff4d4df5d4125672d65cd6f48ae1cc9dbcdbc3f182b92d11a16087/selectolax-0.3.26-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "922711ea76601648e66cd0d622d82b187db1c35edbd7ee46ca1e9ab1e7e4c14b",
"md5": "968464b46112280ca517b316413bc8cc",
"sha256": "59f3ab9f4bc57b919a5405ef8bed7bfca62250411df1fd198a62d40d13c4df2a"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "968464b46112280ca517b316413bc8cc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3163030,
"upload_time": "2024-11-11T12:32:10",
"upload_time_iso_8601": "2024-11-11T12:32:10.066908Z",
"url": "https://files.pythonhosted.org/packages/92/27/11ea76601648e66cd0d622d82b187db1c35edbd7ee46ca1e9ab1e7e4c14b/selectolax-0.3.26-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3167c992ade2821ecbe4248abf9b0d62675d52aa23d4ef43e4de8efaa248e9a5",
"md5": "21aecac0fe0fa16b1b3883173d440929",
"sha256": "9ca4cf160975268431b7c014b30d892d49a2862a75677059efe0bca8063def72"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "21aecac0fe0fa16b1b3883173d440929",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7656849,
"upload_time": "2024-11-11T12:32:11",
"upload_time_iso_8601": "2024-11-11T12:32:11.673588Z",
"url": "https://files.pythonhosted.org/packages/31/67/c992ade2821ecbe4248abf9b0d62675d52aa23d4ef43e4de8efaa248e9a5/selectolax-0.3.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "058eae0b31f4a875ac528ebf171b70080b02629cd1b854525a89f654c0343bde",
"md5": "aae7718cbe7a4957b28eeece432ee15d",
"sha256": "ddf4ec725d2d52e8d7aebc4a0e98adc3e5248cbe957438c2c5495e0cea8fa3b8"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "aae7718cbe7a4957b28eeece432ee15d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7699079,
"upload_time": "2024-11-11T12:32:13",
"upload_time_iso_8601": "2024-11-11T12:32:13.958025Z",
"url": "https://files.pythonhosted.org/packages/05/8e/ae0b31f4a875ac528ebf171b70080b02629cd1b854525a89f654c0343bde/selectolax-0.3.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc83da1744cbf60a96b70d7e220ce70f6e75531f0c4ee979ad74c6e38b79d777",
"md5": "c44ae8970bbe13c9de6cb3507f78af34",
"sha256": "641b00bc707a5af29fffead812a63b19e8a961ee6d7705e8f6b40802ce70a077"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c44ae8970bbe13c9de6cb3507f78af34",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7084712,
"upload_time": "2024-11-11T12:32:16",
"upload_time_iso_8601": "2024-11-11T12:32:16.203107Z",
"url": "https://files.pythonhosted.org/packages/bc/83/da1744cbf60a96b70d7e220ce70f6e75531f0c4ee979ad74c6e38b79d777/selectolax-0.3.26-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b65e007b12ca4db5d5402f0f67ed4de759a8ea2bb7fb7b0a75c0bdc8aafcae4e",
"md5": "76e905009b0a3d1c2b45d9732e6af615",
"sha256": "1fae04b787be96851251b387d72bb488a6752981aa4cad492d98835a4d7c6b78"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "76e905009b0a3d1c2b45d9732e6af615",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7495735,
"upload_time": "2024-11-11T12:32:17",
"upload_time_iso_8601": "2024-11-11T12:32:17.741261Z",
"url": "https://files.pythonhosted.org/packages/b6/5e/007b12ca4db5d5402f0f67ed4de759a8ea2bb7fb7b0a75c0bdc8aafcae4e/selectolax-0.3.26-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b312e13a6f3d07255c239149ed585b662069ead177d7107966b07ca049b84520",
"md5": "3e4e8b607081f61ad62697b8f52f69e0",
"sha256": "559e581dca455b7d96ba4190f6909f86a68642e23139ceb3dad2bb4831b59c62"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3e4e8b607081f61ad62697b8f52f69e0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7086549,
"upload_time": "2024-11-11T12:32:19",
"upload_time_iso_8601": "2024-11-11T12:32:19.987469Z",
"url": "https://files.pythonhosted.org/packages/b3/12/e13a6f3d07255c239149ed585b662069ead177d7107966b07ca049b84520/selectolax-0.3.26-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22e3d9be58345937cc83b9d88dd1702ddc7354883fa3eaed12e8f3960ad6d743",
"md5": "0a4bd6e6b768fb05290c608bdb65fe3d",
"sha256": "87b7d0297feee682aa4d6760590c6b2ba4b60772f087f0ec2ecd77cf564e979e"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0a4bd6e6b768fb05290c608bdb65fe3d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7605004,
"upload_time": "2024-11-11T12:32:22",
"upload_time_iso_8601": "2024-11-11T12:32:22.331921Z",
"url": "https://files.pythonhosted.org/packages/22/e3/d9be58345937cc83b9d88dd1702ddc7354883fa3eaed12e8f3960ad6d743/selectolax-0.3.26-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a5477ee0f7ddad9791f4976c38720b0f45d05def9afa55fc2749cdf1be1f196",
"md5": "9dd1be5c06046c56dfb6be0720802b96",
"sha256": "e9533166e1cd773ef032df8fcd2693d0dda801cbb225d1074e4616eb419271d7"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "9dd1be5c06046c56dfb6be0720802b96",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2335633,
"upload_time": "2024-11-11T12:32:24",
"upload_time_iso_8601": "2024-11-11T12:32:24.590702Z",
"url": "https://files.pythonhosted.org/packages/5a/54/77ee0f7ddad9791f4976c38720b0f45d05def9afa55fc2749cdf1be1f196/selectolax-0.3.26-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0264ee9f173fb02579dc56b6d30d7e66cba55d2ac9a08f5a60e3ad52d665e192",
"md5": "62ceb2606544806b9ffc0f8535d68601",
"sha256": "ce4ff49a68b1104bcf4588d9917033593442538d3d0cac1a74abcef23e478770"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "62ceb2606544806b9ffc0f8535d68601",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2484178,
"upload_time": "2024-11-11T12:32:26",
"upload_time_iso_8601": "2024-11-11T12:32:26.646977Z",
"url": "https://files.pythonhosted.org/packages/02/64/ee9f173fb02579dc56b6d30d7e66cba55d2ac9a08f5a60e3ad52d665e192/selectolax-0.3.26-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17f2aed6dc62065fdda236db874ae02f8458d9c94f3859d59b234d481ef8e9b7",
"md5": "32dbef75ab8a02ed0faecccf7476bae3",
"sha256": "66c25f78cc2006c9386a8c228dab84ccc00b45c8edb667329e39fe7adbee13bc"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "32dbef75ab8a02ed0faecccf7476bae3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5848836,
"upload_time": "2024-11-11T12:32:28",
"upload_time_iso_8601": "2024-11-11T12:32:28.039166Z",
"url": "https://files.pythonhosted.org/packages/17/f2/aed6dc62065fdda236db874ae02f8458d9c94f3859d59b234d481ef8e9b7/selectolax-0.3.26-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a42ac6e8e2c028ef0dbfc45895eb1e36fb909679d5e791372587597ed6edd56f",
"md5": "0565c1c82256c4b7a4285792dbc5134a",
"sha256": "c4cdb2c3187d3615cf551c8c821cdf861592736c7efa58fefadaaca89b48474f"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "0565c1c82256c4b7a4285792dbc5134a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3161035,
"upload_time": "2024-11-11T12:32:29",
"upload_time_iso_8601": "2024-11-11T12:32:29.513413Z",
"url": "https://files.pythonhosted.org/packages/a4/2a/c6e8e2c028ef0dbfc45895eb1e36fb909679d5e791372587597ed6edd56f/selectolax-0.3.26-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1483ba1ddd35209092af8a615ddec982568e5864f2353af4cd304cc699b7d503",
"md5": "1d8cf3111c2e2c2cbc714468d2e72dcd",
"sha256": "3fb6b7df8d20592db1960d40e21874709315479457cdcb49f02c257c80df1035"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1d8cf3111c2e2c2cbc714468d2e72dcd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7628783,
"upload_time": "2024-11-11T12:32:30",
"upload_time_iso_8601": "2024-11-11T12:32:30.935001Z",
"url": "https://files.pythonhosted.org/packages/14/83/ba1ddd35209092af8a615ddec982568e5864f2353af4cd304cc699b7d503/selectolax-0.3.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7ecb457ccd023f95780e73c79b8f4a83b393598453301dbaf4d2dd85b436e89e",
"md5": "3e47383374d3bd0f5cd442993560e09d",
"sha256": "49b9c2d4bb990e7b8d1911e9d9af02f37bd5e391f748c85af44e4277b4cd61c0"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3e47383374d3bd0f5cd442993560e09d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7670720,
"upload_time": "2024-11-11T12:32:32",
"upload_time_iso_8601": "2024-11-11T12:32:32.503639Z",
"url": "https://files.pythonhosted.org/packages/7e/cb/457ccd023f95780e73c79b8f4a83b393598453301dbaf4d2dd85b436e89e/selectolax-0.3.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b896eca16a066c6332a0fcd9cf7ae33abc045158ccff3c79c5d8587f4dae16e3",
"md5": "771e4cb9ff5c87dcc27e1ac4985e3022",
"sha256": "1a98d0dcc150f4b9fa4a610f6a55119631b0b0bb892eb3ce32aa566bd3efae4a"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "771e4cb9ff5c87dcc27e1ac4985e3022",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7057942,
"upload_time": "2024-11-11T12:32:34",
"upload_time_iso_8601": "2024-11-11T12:32:34.583279Z",
"url": "https://files.pythonhosted.org/packages/b8/96/eca16a066c6332a0fcd9cf7ae33abc045158ccff3c79c5d8587f4dae16e3/selectolax-0.3.26-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "558cd2f458f2d38538f9bb7890acb8d4e0d518d3750558a344c9b5d7f5af0096",
"md5": "39badf5d003f914db3f26e12c2936cf8",
"sha256": "841865ddebfc3f60518b31af9072fd15f731a39e41dc1c5d10bf652200aec9aa"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "39badf5d003f914db3f26e12c2936cf8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7440259,
"upload_time": "2024-11-11T12:32:36",
"upload_time_iso_8601": "2024-11-11T12:32:36.445349Z",
"url": "https://files.pythonhosted.org/packages/55/8c/d2f458f2d38538f9bb7890acb8d4e0d518d3750558a344c9b5d7f5af0096/selectolax-0.3.26-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "963cef2fedddb64042b4d5a7bc62bd8e1af4b2601db45d79e41660a2d90b90f9",
"md5": "1d24785815485c5020dc88c1d2711903",
"sha256": "0b4b1a80eccff025c00410048662c183746a8a966aff30d55e608988ebdbf148"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1d24785815485c5020dc88c1d2711903",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7011597,
"upload_time": "2024-11-11T12:32:38",
"upload_time_iso_8601": "2024-11-11T12:32:38.100858Z",
"url": "https://files.pythonhosted.org/packages/96/3c/ef2fedddb64042b4d5a7bc62bd8e1af4b2601db45d79e41660a2d90b90f9/selectolax-0.3.26-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f6cced3219f728795d00e61802704d451c87db5b64a74e783d08d2272a42c26",
"md5": "18362a6fc62b286ac621cd464682cf77",
"sha256": "b6532e60e6e966afef1f1281835cd6bbdcdcc17b3ee4d048469ab0ebdfc9722f"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "18362a6fc62b286ac621cd464682cf77",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7542790,
"upload_time": "2024-11-11T12:32:40",
"upload_time_iso_8601": "2024-11-11T12:32:40.323927Z",
"url": "https://files.pythonhosted.org/packages/6f/6c/ced3219f728795d00e61802704d451c87db5b64a74e783d08d2272a42c26/selectolax-0.3.26-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c40b8ca282f846f279525ae3748d2afe725fe26ad6eb6e8b7c882f74bb39161c",
"md5": "69fb57777e4d247055bcdfe6dd00d971",
"sha256": "7e808f7c0b85997af9115f6fabf1b209940d2ceaa3a405417a63bf9eaf115b3a"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "69fb57777e4d247055bcdfe6dd00d971",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2335230,
"upload_time": "2024-11-11T12:32:41",
"upload_time_iso_8601": "2024-11-11T12:32:41.967296Z",
"url": "https://files.pythonhosted.org/packages/c4/0b/8ca282f846f279525ae3748d2afe725fe26ad6eb6e8b7c882f74bb39161c/selectolax-0.3.26-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d53d88dfdf51f607ccca9aa412610d3b09e0d0a033d3a5d7162c97adae9dc93",
"md5": "21b9eac0c8524937dd8ab12adfa3c2e6",
"sha256": "064a15d56697cd66a4a78310cd5719cac57563ee6a94f05e01ca252fe4813a1b"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "21b9eac0c8524937dd8ab12adfa3c2e6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2484478,
"upload_time": "2024-11-11T12:32:43",
"upload_time_iso_8601": "2024-11-11T12:32:43.208222Z",
"url": "https://files.pythonhosted.org/packages/2d/53/d88dfdf51f607ccca9aa412610d3b09e0d0a033d3a5d7162c97adae9dc93/selectolax-0.3.26-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "635c5a717d1633cdb6ed812ecb1a3d8240abfb2371c1f71f76818d53ca3c79a9",
"md5": "683bd2f348fb05837cc243b27631eb50",
"sha256": "136041fe36cdac45d5586d34f758c857f56c9558fdb060cb0d7233d508917bf4"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "683bd2f348fb05837cc243b27631eb50",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3152820,
"upload_time": "2024-11-11T12:32:45",
"upload_time_iso_8601": "2024-11-11T12:32:45.201123Z",
"url": "https://files.pythonhosted.org/packages/63/5c/5a717d1633cdb6ed812ecb1a3d8240abfb2371c1f71f76818d53ca3c79a9/selectolax-0.3.26-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54504359d9dda21d771ca0e68a2b5c0bb1d72dde7ad91fcdf432300e27057507",
"md5": "56b4e7df35afbb7b4e32f4c04af0f411",
"sha256": "7023550a2d1e41b4e45ee4901f734590c73df778ee9e93a54c570968f74fd094"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "56b4e7df35afbb7b4e32f4c04af0f411",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 7188511,
"upload_time": "2024-11-11T12:32:46",
"upload_time_iso_8601": "2024-11-11T12:32:46.560550Z",
"url": "https://files.pythonhosted.org/packages/54/50/4359d9dda21d771ca0e68a2b5c0bb1d72dde7ad91fcdf432300e27057507/selectolax-0.3.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b579b2b90a9e2bb242e8c92ecf627faec3bb140263a7c80741a6618ca96307d3",
"md5": "9fb7375600be5778a6ba9cbbf523be57",
"sha256": "88a74f3c7859f1d79da79b837ce49f7dba67e1d6815315dbbfb85c34bccc2a42"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "9fb7375600be5778a6ba9cbbf523be57",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 6617885,
"upload_time": "2024-11-11T12:32:48",
"upload_time_iso_8601": "2024-11-11T12:32:48.449769Z",
"url": "https://files.pythonhosted.org/packages/b5/79/b2b90a9e2bb242e8c92ecf627faec3bb140263a7c80741a6618ca96307d3/selectolax-0.3.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "819a010b3236ba72bee4c794cbef0c2444b933fbbdccb0c567fd999cbf995839",
"md5": "67f57aad276c3bc095fda0ca0f10fc76",
"sha256": "8c269cdff9edbf0bada7f58f60cf1f1d615919fbda39a8f0e3a7b79ca89d1726"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "67f57aad276c3bc095fda0ca0f10fc76",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 6596217,
"upload_time": "2024-11-11T12:32:49",
"upload_time_iso_8601": "2024-11-11T12:32:49.900634Z",
"url": "https://files.pythonhosted.org/packages/81/9a/010b3236ba72bee4c794cbef0c2444b933fbbdccb0c567fd999cbf995839/selectolax-0.3.26-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9607ca82ead748d8c946e43e0dde3487bb7a8d70aea077cd4ea9b866827d27e2",
"md5": "ee2fd60760a3a02e02a832df48398aca",
"sha256": "e6d7adee1220ca49a705719200bf59bc54d2b3ce6fc148d0beab10624502151a"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ee2fd60760a3a02e02a832df48398aca",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 7145176,
"upload_time": "2024-11-11T12:32:52",
"upload_time_iso_8601": "2024-11-11T12:32:52.138678Z",
"url": "https://files.pythonhosted.org/packages/96/07/ca82ead748d8c946e43e0dde3487bb7a8d70aea077cd4ea9b866827d27e2/selectolax-0.3.26-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f2a6f22ff3a3cd7115cfd1d78d0bc6c5f8f96653e4b37ce75dfd4e72376e1c6",
"md5": "5936a26812476d2fa8f90a903506bb08",
"sha256": "703d05a16fc7070cbd381549b8236f9ae7af05b0f03c084344a686d7e810bdb3"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "5936a26812476d2fa8f90a903506bb08",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2334423,
"upload_time": "2024-11-11T12:32:53",
"upload_time_iso_8601": "2024-11-11T12:32:53.600400Z",
"url": "https://files.pythonhosted.org/packages/9f/2a/6f22ff3a3cd7115cfd1d78d0bc6c5f8f96653e4b37ce75dfd4e72376e1c6/selectolax-0.3.26-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41925dc10b11b4bf3f4f60f9e3d8a9970bcd91b91079bc600247fc9567c514b3",
"md5": "e5b123f0d56cefb77a1eb0dcb426f3bd",
"sha256": "78b17dc4fcdd1056656ebebd7ef18f9c0ce8ade11f6e7ab8cf9f700f6ae2bb76"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "e5b123f0d56cefb77a1eb0dcb426f3bd",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2482117,
"upload_time": "2024-11-11T12:32:54",
"upload_time_iso_8601": "2024-11-11T12:32:54.854869Z",
"url": "https://files.pythonhosted.org/packages/41/92/5dc10b11b4bf3f4f60f9e3d8a9970bcd91b91079bc600247fc9567c514b3/selectolax-0.3.26-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c74ec501699e5449f57da45add872225afafad43a478546926cc0e88411cc445",
"md5": "ac810bea8a5921fc0286fce5ddf97b87",
"sha256": "59c35a041533576e77371f51e05d9cf620c572cf9c74cb7b87895fb71cdcb88d"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "ac810bea8a5921fc0286fce5ddf97b87",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 5845386,
"upload_time": "2024-11-11T12:32:57",
"upload_time_iso_8601": "2024-11-11T12:32:57.379893Z",
"url": "https://files.pythonhosted.org/packages/c7/4e/c501699e5449f57da45add872225afafad43a478546926cc0e88411cc445/selectolax-0.3.26-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "366443a8035120994d2eb25c674cb1fa3cbc7d312910dcecea8c7c85a87836a4",
"md5": "78829b5941230269ce90480c4fc39c36",
"sha256": "7fda1bb437b598610cbf9d0d3f60b906eddf9774b5fa48c8edd0152d6eaa7d8f"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "78829b5941230269ce90480c4fc39c36",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3159456,
"upload_time": "2024-11-11T12:32:58",
"upload_time_iso_8601": "2024-11-11T12:32:58.967841Z",
"url": "https://files.pythonhosted.org/packages/36/64/43a8035120994d2eb25c674cb1fa3cbc7d312910dcecea8c7c85a87836a4/selectolax-0.3.26-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bead568069cc5b5b5ce986b261061bda5300f33571845dfb191fd3bd04bdfdd6",
"md5": "c9c19aace1d4a45bc8874d774735ea16",
"sha256": "0b480d5d7255554c38822f884ff7c88f9b8c54697fc1917611fca7de0490d3b9"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c9c19aace1d4a45bc8874d774735ea16",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7473991,
"upload_time": "2024-11-11T12:33:00",
"upload_time_iso_8601": "2024-11-11T12:33:00.344075Z",
"url": "https://files.pythonhosted.org/packages/be/ad/568069cc5b5b5ce986b261061bda5300f33571845dfb191fd3bd04bdfdd6/selectolax-0.3.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d0aaccf5e2795ac90a8e019afcb18c596c83f161cb546d27d53c158d0760418b",
"md5": "0474be1da2d4172aa8ca0f2dbba6dd74",
"sha256": "062c37d71b2bbf19a3e6f2d74fbf11d4c82e63c01fc9960cb8d20fc0583bf0d8"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0474be1da2d4172aa8ca0f2dbba6dd74",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 6886138,
"upload_time": "2024-11-11T12:33:01",
"upload_time_iso_8601": "2024-11-11T12:33:01.967123Z",
"url": "https://files.pythonhosted.org/packages/d0/aa/ccf5e2795ac90a8e019afcb18c596c83f161cb546d27d53c158d0760418b/selectolax-0.3.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "644ed426f9b6326078abf3bf8a2e33a1e3b208aed7befc4851aa214be3c4ec4a",
"md5": "d6f7f128e542f9a746114749572cd90a",
"sha256": "375db89b7142cf0e2176f4377ca815d69226c27caf0266e01936fd7fd6fa96f9"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d6f7f128e542f9a746114749572cd90a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 6915388,
"upload_time": "2024-11-11T12:33:03",
"upload_time_iso_8601": "2024-11-11T12:33:03.430919Z",
"url": "https://files.pythonhosted.org/packages/64/4e/d426f9b6326078abf3bf8a2e33a1e3b208aed7befc4851aa214be3c4ec4a/selectolax-0.3.26-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb8a6bbc36cdf25d52592d7ea98f9362b7e0f787e3eecf4cef27236524115047",
"md5": "7217b3a894d96e632ac241002c22a939",
"sha256": "612084d383b9ccd5f75c55f82471ee96e40c69e4bc3eeeba5212416e06e34baa"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7217b3a894d96e632ac241002c22a939",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7436910,
"upload_time": "2024-11-11T12:33:05",
"upload_time_iso_8601": "2024-11-11T12:33:05.002707Z",
"url": "https://files.pythonhosted.org/packages/bb/8a/6bbc36cdf25d52592d7ea98f9362b7e0f787e3eecf4cef27236524115047/selectolax-0.3.26-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2fb7100439495069a94c0ef27c4bb56fb375139f59a31463ebfc232d2616313",
"md5": "94bba031eb83f9a2609f0ef36a4c3c97",
"sha256": "a9d11aad28baabad65488f4cf1c0413093a820299c68df34e7cd6a81828ea486"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "94bba031eb83f9a2609f0ef36a4c3c97",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2339624,
"upload_time": "2024-11-11T12:33:06",
"upload_time_iso_8601": "2024-11-11T12:33:06.477655Z",
"url": "https://files.pythonhosted.org/packages/b2/fb/7100439495069a94c0ef27c4bb56fb375139f59a31463ebfc232d2616313/selectolax-0.3.26-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68c97db93291752bdd263fb435660f5f2702cc30bba9e928041d576dd63c78e7",
"md5": "8a68b09c0aaf08dba561225cbb7bb42e",
"sha256": "e782c5fe53937eb4bbdbaa0642e14384a84ccec8ddc8b478ad1f4fb57fa07a33"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "8a68b09c0aaf08dba561225cbb7bb42e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2487542,
"upload_time": "2024-11-11T12:33:09",
"upload_time_iso_8601": "2024-11-11T12:33:09.239783Z",
"url": "https://files.pythonhosted.org/packages/68/c9/7db93291752bdd263fb435660f5f2702cc30bba9e928041d576dd63c78e7/selectolax-0.3.26-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "651853a17b7c938180d94861296275abfddf0224b55046ec8ef867128ddce2c4",
"md5": "a907055f95c7f7b81b9335552e8c993d",
"sha256": "9d64e7d3c83fea58f8630259267bdfdd6c0f183612e70b3514590c058551bb28"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "a907055f95c7f7b81b9335552e8c993d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5842027,
"upload_time": "2024-11-11T12:33:10",
"upload_time_iso_8601": "2024-11-11T12:33:10.677537Z",
"url": "https://files.pythonhosted.org/packages/65/18/53a17b7c938180d94861296275abfddf0224b55046ec8ef867128ddce2c4/selectolax-0.3.26-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89df9641bd7fe00fc9a0ff1ffe17a9b59a391a9a1d2b314594d25e4f4c16d7fc",
"md5": "6d8173af8fd8ec1ceb4995a605745916",
"sha256": "822f8fcb7eeb43c0fc09fd20027ef68bd000228ebd4f5a031ac1b646d1b155ce"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6d8173af8fd8ec1ceb4995a605745916",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3159367,
"upload_time": "2024-11-11T12:33:12",
"upload_time_iso_8601": "2024-11-11T12:33:12.918751Z",
"url": "https://files.pythonhosted.org/packages/89/df/9641bd7fe00fc9a0ff1ffe17a9b59a391a9a1d2b314594d25e4f4c16d7fc/selectolax-0.3.26-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd446c72e2d79f03f8fd570da7b96dcad4790d3ae55859180012eac1b45a45b4",
"md5": "1c166cbce71f3a8542c52a7fd8f1670a",
"sha256": "713cb93b173950a40e70cdb163f3a0e422a9bdf5df1627c5ac109fe662b11f68"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1c166cbce71f3a8542c52a7fd8f1670a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7311832,
"upload_time": "2024-11-11T12:33:14",
"upload_time_iso_8601": "2024-11-11T12:33:14.331639Z",
"url": "https://files.pythonhosted.org/packages/fd/44/6c72e2d79f03f8fd570da7b96dcad4790d3ae55859180012eac1b45a45b4/selectolax-0.3.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e28859536fe9fe352d792563595e52a3545ab91e4b06d086e27de192c187a17",
"md5": "8cecd8cffa31066c5e510ca0828502ad",
"sha256": "ed961a5c7cd1875e9a251eeb12efa0cef3daf9a73bfed26b4410b0f7ca4075e8"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8cecd8cffa31066c5e510ca0828502ad",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7347545,
"upload_time": "2024-11-11T12:33:16",
"upload_time_iso_8601": "2024-11-11T12:33:16.252039Z",
"url": "https://files.pythonhosted.org/packages/3e/28/859536fe9fe352d792563595e52a3545ab91e4b06d086e27de192c187a17/selectolax-0.3.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aca4bacb5f2c97415c5c5c39b7de0c0124d9d97617401d809feb5358feb3822c",
"md5": "5edd1fbf8a97fb59dd9d4f6f39aedd4b",
"sha256": "d2bd8ef1c360da936605f34bcb31711d05ff1c1907b4a1573511cdeb2ffd8448"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5edd1fbf8a97fb59dd9d4f6f39aedd4b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 6766731,
"upload_time": "2024-11-11T12:33:19",
"upload_time_iso_8601": "2024-11-11T12:33:19.316369Z",
"url": "https://files.pythonhosted.org/packages/ac/a4/bacb5f2c97415c5c5c39b7de0c0124d9d97617401d809feb5358feb3822c/selectolax-0.3.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2249e8680b4304ec2f93ca5a42f0f9db8e861fc58d482f7c0c26bc929f553c5",
"md5": "93c69e3062e424a58bb31a7a536fc8b3",
"sha256": "c9d823a8f24158cc62e8d7e676a0504bf59278ceee34f09976ddeb4c190eca73"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "93c69e3062e424a58bb31a7a536fc8b3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7207761,
"upload_time": "2024-11-11T12:33:20",
"upload_time_iso_8601": "2024-11-11T12:33:20.917227Z",
"url": "https://files.pythonhosted.org/packages/b2/24/9e8680b4304ec2f93ca5a42f0f9db8e861fc58d482f7c0c26bc929f553c5/selectolax-0.3.26-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93df437838fdc5ef98dcb9f5192aac58f8cc32b5f5978600243d276b1d0d4293",
"md5": "fbb604474adaa5ff1e1b74fbac9a1491",
"sha256": "a47757f97b6ffc2699d6ac02d1b8890258c43b95676e64f58b5c15e201b9ceff"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fbb604474adaa5ff1e1b74fbac9a1491",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 6771050,
"upload_time": "2024-11-11T12:33:23",
"upload_time_iso_8601": "2024-11-11T12:33:23.299495Z",
"url": "https://files.pythonhosted.org/packages/93/df/437838fdc5ef98dcb9f5192aac58f8cc32b5f5978600243d276b1d0d4293/selectolax-0.3.26-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b81c841e55aa2030a3e23664ba619703ee97769d7ae97bafdc4402201cc5c1b",
"md5": "696eb3442183c6fab8296681ed181d59",
"sha256": "c4998cea022c360eeb17613678b861b5a724066c499508dd86c1812910cdeaa3"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "696eb3442183c6fab8296681ed181d59",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7290010,
"upload_time": "2024-11-11T12:33:25",
"upload_time_iso_8601": "2024-11-11T12:33:25.612564Z",
"url": "https://files.pythonhosted.org/packages/7b/81/c841e55aa2030a3e23664ba619703ee97769d7ae97bafdc4402201cc5c1b/selectolax-0.3.26-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ea53d67d7114499c1cf9ba6ea274904d525fe2c10afa3aca72f560b9e7ead16",
"md5": "da3621a6ed569cb48081fb09cdcc1232",
"sha256": "5e6a2d755695359b2465efaad8ad840dc4d7a328d62f8673110fdaabfe8cfd98"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "da3621a6ed569cb48081fb09cdcc1232",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2338019,
"upload_time": "2024-11-11T12:33:28",
"upload_time_iso_8601": "2024-11-11T12:33:28.110798Z",
"url": "https://files.pythonhosted.org/packages/5e/a5/3d67d7114499c1cf9ba6ea274904d525fe2c10afa3aca72f560b9e7ead16/selectolax-0.3.26-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95ad18d5a2f3fcff5bc55f69934c4a493001fb32f1bdec517e609331fd9d92d6",
"md5": "f261eee253a83dd6145e101907dfd7ce",
"sha256": "bfaeb5d055592b4455cebd3cbd80ef1f47b97df991798f92814030f7ea8fa0fc"
},
"downloads": -1,
"filename": "selectolax-0.3.26-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "f261eee253a83dd6145e101907dfd7ce",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2486662,
"upload_time": "2024-11-11T12:33:29",
"upload_time_iso_8601": "2024-11-11T12:33:29.446202Z",
"url": "https://files.pythonhosted.org/packages/95/ad/18d5a2f3fcff5bc55f69934c4a493001fb32f1bdec517e609331fd9d92d6/selectolax-0.3.26-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e865f3f956ad7e553deb5f09410764a3bc51f450349c6be8a5990af2f870c09",
"md5": "eced6b5d644b39863617b915d14d85b5",
"sha256": "fd8da39a64145cb14c1f6ec9ca7378342af7de9ba4c8e3d65d5daa107594826b"
},
"downloads": -1,
"filename": "selectolax-0.3.26.tar.gz",
"has_sig": false,
"md5_digest": "eced6b5d644b39863617b915d14d85b5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3610572,
"upload_time": "2024-11-11T12:33:30",
"upload_time_iso_8601": "2024-11-11T12:33:30.853180Z",
"url": "https://files.pythonhosted.org/packages/1e/86/5f3f956ad7e553deb5f09410764a3bc51f450349c6be8a5990af2f870c09/selectolax-0.3.26.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-11 12:33:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "rushter",
"github_project": "selectolax",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "selectolax"
}