.. 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/dd/00/a5240ade1a6ca0f330fbbfb612135b8f363fd87fb450a2def11bc17f44c2/selectolax-0.3.27.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.27",
"project_urls": {
"Homepage": "https://github.com/rushter/selectolax",
"Source code": "https://github.com/rushter/selectolax"
},
"split_keywords": [
"selectolax"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "5d11304e9c73c02ffc10416d376badf0e67db2c420829093894c972671984437",
"md5": "82851077177afcf81375a2779ce7b264",
"sha256": "000b11bbf1c730e61ddd59106cabc77b649e5ebfb3d043abfc1d6b618dab8f0a"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "82851077177afcf81375a2779ce7b264",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 5841875,
"upload_time": "2024-12-09T23:10:04",
"upload_time_iso_8601": "2024-12-09T23:10:04.648220Z",
"url": "https://files.pythonhosted.org/packages/5d/11/304e9c73c02ffc10416d376badf0e67db2c420829093894c972671984437/selectolax-0.3.27-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7289020e1f20f1e5c29959242d432e881177933205cf594bd12bed5b10c47454",
"md5": "c93268a9e2f8feff1622db9a8b88abac",
"sha256": "a975fb54f7180d4b919e084ce54271083fd2960df734ae3045e9c3f557617136"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c93268a9e2f8feff1622db9a8b88abac",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 3158102,
"upload_time": "2024-12-09T23:10:08",
"upload_time_iso_8601": "2024-12-09T23:10:08.090067Z",
"url": "https://files.pythonhosted.org/packages/72/89/020e1f20f1e5c29959242d432e881177933205cf594bd12bed5b10c47454/selectolax-0.3.27-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ff7a7f35ec346aadc30e8351d4bb950b698da8bf0addfa87dcb7630ef1e91fb",
"md5": "2e29ca6e84a15e374e64e68ec7a65913",
"sha256": "d1388d69ddfd4d1b925f2fac9b8077d05b704bc4e93ce99c949a13bc98b6aec9"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2e29ca6e84a15e374e64e68ec7a65913",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7314940,
"upload_time": "2024-12-09T23:10:11",
"upload_time_iso_8601": "2024-12-09T23:10:11.212748Z",
"url": "https://files.pythonhosted.org/packages/0f/f7/a7f35ec346aadc30e8351d4bb950b698da8bf0addfa87dcb7630ef1e91fb/selectolax-0.3.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e0252709d8e3542912798290ea6b091218720c173309909d0bcdcac4872b0cb",
"md5": "7ace3dbb1afd81096c79998505507cfa",
"sha256": "11d29154d3bf9391bacbf7df1ff869427ab82a95730a8ca41b79812e21b0f45e"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7ace3dbb1afd81096c79998505507cfa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7350492,
"upload_time": "2024-12-09T23:10:13",
"upload_time_iso_8601": "2024-12-09T23:10:13.065735Z",
"url": "https://files.pythonhosted.org/packages/1e/02/52709d8e3542912798290ea6b091218720c173309909d0bcdcac4872b0cb/selectolax-0.3.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "741488e3621db5a165424e2f0781b9eea31776bac55413bae45a662b3d893192",
"md5": "ffd4143d038feebfd7c9374f3fae6f33",
"sha256": "1459b78576081317ecebeff15eff5c8903fa1f76dd032068d1c9d23f1aa0c505"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ffd4143d038feebfd7c9374f3fae6f33",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 6773059,
"upload_time": "2024-12-09T23:10:14",
"upload_time_iso_8601": "2024-12-09T23:10:14.977796Z",
"url": "https://files.pythonhosted.org/packages/74/14/88e3621db5a165424e2f0781b9eea31776bac55413bae45a662b3d893192/selectolax-0.3.27-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": "1d1cf1e3095d14b2df050b00782701844d0027a2444672b8b950eee372bfe800",
"md5": "a5ede2418c1c1e00c86438fcc7c7c84b",
"sha256": "2708c2a1546811138f3b71decb1ef1c4a89146b8245116ce60e78597c9e7f232"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a5ede2418c1c1e00c86438fcc7c7c84b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7215119,
"upload_time": "2024-12-09T23:10:18",
"upload_time_iso_8601": "2024-12-09T23:10:18.516359Z",
"url": "https://files.pythonhosted.org/packages/1d/1c/f1e3095d14b2df050b00782701844d0027a2444672b8b950eee372bfe800/selectolax-0.3.27-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6be5e6b76d987bb9e7bcb1832e067d931a61c979aa3f139adf172c1c59ea7ffe",
"md5": "16e7fee397517b1d44b95beb04f76893",
"sha256": "292a43ca8d30f864f23467a67190f38175f33e2d46ece88e5c55a2ef4e2c38cb"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "16e7fee397517b1d44b95beb04f76893",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 6770940,
"upload_time": "2024-12-09T23:10:20",
"upload_time_iso_8601": "2024-12-09T23:10:20.869442Z",
"url": "https://files.pythonhosted.org/packages/6b/e5/e6b76d987bb9e7bcb1832e067d931a61c979aa3f139adf172c1c59ea7ffe/selectolax-0.3.27-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74ed4b64b219b4309ac616a1f0e76b8cc6fdb9a35a2a181c72aa2bb2f240badf",
"md5": "68a25da6ebc969748acb243ee690d85a",
"sha256": "108f8759cd01a3e4d6d5969481f7e4782d4c63fd90be85c35f6925370d43f199"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "68a25da6ebc969748acb243ee690d85a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7299880,
"upload_time": "2024-12-09T23:10:24",
"upload_time_iso_8601": "2024-12-09T23:10:24.248641Z",
"url": "https://files.pythonhosted.org/packages/74/ed/4b64b219b4309ac616a1f0e76b8cc6fdb9a35a2a181c72aa2bb2f240badf/selectolax-0.3.27-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "476ff325bc81c05a60a01c2f51519dfb140d63ccce8ce556287f6a1ac43e0e4e",
"md5": "b88c9db0cbbfc3f167f55c4a14d194f4",
"sha256": "ceb398b9a4e25ae72cf75b6001f599f9ca9caaf652b0928e1aa67149bc3f63f6"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "b88c9db0cbbfc3f167f55c4a14d194f4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2337401,
"upload_time": "2024-12-09T23:10:27",
"upload_time_iso_8601": "2024-12-09T23:10:27.285867Z",
"url": "https://files.pythonhosted.org/packages/47/6f/f325bc81c05a60a01c2f51519dfb140d63ccce8ce556287f6a1ac43e0e4e/selectolax-0.3.27-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73f9a88d43fa28a0d27e33e3f49db3bf402ae09f50e5dada3b66c4c085073145",
"md5": "ae122e11c7e144236d594372bb745092",
"sha256": "613b27f9a97cbae9febdd2d0db18db445a0caedbd9dd227d5f0b061e17bfbed7"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "ae122e11c7e144236d594372bb745092",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2486205,
"upload_time": "2024-12-09T23:10:29",
"upload_time_iso_8601": "2024-12-09T23:10:29.384313Z",
"url": "https://files.pythonhosted.org/packages/73/f9/a88d43fa28a0d27e33e3f49db3bf402ae09f50e5dada3b66c4c085073145/selectolax-0.3.27-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48ceed5d92150b23484626add45868061b50ae8e15e81c86e618500409c1058b",
"md5": "decc83392b8e7f95d431fb5a101c8376",
"sha256": "003e1b51384ad7f76ed97259bfa58f7d3875f77b5621732c851b8b249d6cac2a"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "decc83392b8e7f95d431fb5a101c8376",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 5844836,
"upload_time": "2024-12-09T23:10:32",
"upload_time_iso_8601": "2024-12-09T23:10:32.463704Z",
"url": "https://files.pythonhosted.org/packages/48/ce/ed5d92150b23484626add45868061b50ae8e15e81c86e618500409c1058b/selectolax-0.3.27-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70525e59a53d86fe8b935b237156868a631f049088f5cb2e59e8ea8c12f93c5a",
"md5": "72d2e7a0977c13586bee2e693496b802",
"sha256": "d78cf0ad1853abcde986b0b6fba446bbdd9c604134eb35d1c59f7dacfa5431e6"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "72d2e7a0977c13586bee2e693496b802",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 3160117,
"upload_time": "2024-12-09T23:10:35",
"upload_time_iso_8601": "2024-12-09T23:10:35.392047Z",
"url": "https://files.pythonhosted.org/packages/70/52/5e59a53d86fe8b935b237156868a631f049088f5cb2e59e8ea8c12f93c5a/selectolax-0.3.27-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "886588eecd70d0d7171b82e98be2a0608b4e02a1e3ab5fffca9d72e7e6f43483",
"md5": "9d777e7e29999589c87980d14a7c03e6",
"sha256": "e8c9366bc38ec1e40ed5f3fa29038cc4c300d9bbf5f7c022ee32db39e271ef82"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9d777e7e29999589c87980d14a7c03e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7448786,
"upload_time": "2024-12-09T23:10:38",
"upload_time_iso_8601": "2024-12-09T23:10:38.545878Z",
"url": "https://files.pythonhosted.org/packages/88/65/88eecd70d0d7171b82e98be2a0608b4e02a1e3ab5fffca9d72e7e6f43483/selectolax-0.3.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3dd952a75577d5a498200593d11ee808c66dc555baf919c43672c7b952f3297",
"md5": "abd8638970f56e2b15c9ff01f209a0e5",
"sha256": "f211b38ac9022263d57e713b3b23b1c6cd0aa11ac26dab9a9645cf046554cc7e"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "abd8638970f56e2b15c9ff01f209a0e5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7490171,
"upload_time": "2024-12-09T23:10:40",
"upload_time_iso_8601": "2024-12-09T23:10:40.474475Z",
"url": "https://files.pythonhosted.org/packages/f3/dd/952a75577d5a498200593d11ee808c66dc555baf919c43672c7b952f3297/selectolax-0.3.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d87128b476f5e1b5471f586f9c7e63145019a12c6b4ef1199789429cff25858",
"md5": "97d9dbb716685098ae3ff37585b2bc0e",
"sha256": "48d7df95bbc0c0b104df6ba9c89b2965306b1dc50ef077680c6c39eee0b0db45"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "97d9dbb716685098ae3ff37585b2bc0e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 6893161,
"upload_time": "2024-12-09T23:10:43",
"upload_time_iso_8601": "2024-12-09T23:10:43.773252Z",
"url": "https://files.pythonhosted.org/packages/1d/87/128b476f5e1b5471f586f9c7e63145019a12c6b4ef1199789429cff25858/selectolax-0.3.27-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": "bbb5ffe0f33e65a6553d04d6a1eb5a2b281631d8bde488d0bfbf63e4b20da021",
"md5": "fa5e6aa3e6647c8de541a013577d8a92",
"sha256": "980dfefb53b2c5ee1cb8d624b48d3153c873fb28a3d410908d6c047f76d9a533"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fa5e6aa3e6647c8de541a013577d8a92",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7353316,
"upload_time": "2024-12-09T23:10:45",
"upload_time_iso_8601": "2024-12-09T23:10:45.775010Z",
"url": "https://files.pythonhosted.org/packages/bb/b5/ffe0f33e65a6553d04d6a1eb5a2b281631d8bde488d0bfbf63e4b20da021/selectolax-0.3.27-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9c8257a005a2148c5ae1a548b3f98a10fa33ff8f61038aa7b53a608783bbb5a",
"md5": "246abe7bb596d766777a11658af45674",
"sha256": "f144a4bd5e4895fd445fa69f2304309f7191d6021378f01dccb438d6b3551685"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "246abe7bb596d766777a11658af45674",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 6911640,
"upload_time": "2024-12-09T23:10:47",
"upload_time_iso_8601": "2024-12-09T23:10:47.914724Z",
"url": "https://files.pythonhosted.org/packages/f9/c8/257a005a2148c5ae1a548b3f98a10fa33ff8f61038aa7b53a608783bbb5a/selectolax-0.3.27-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c1dd83947b57f56459d38413730d2b5047e9399094f9ef8c59a45222811528a",
"md5": "3e2a2c583429300b3f3bcbc25c57ce5f",
"sha256": "542183ba360b1852fd4086594393159a02331cf3f358be11e2914bda66ba63a8"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3e2a2c583429300b3f3bcbc25c57ce5f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7428121,
"upload_time": "2024-12-09T23:10:50",
"upload_time_iso_8601": "2024-12-09T23:10:50.776457Z",
"url": "https://files.pythonhosted.org/packages/7c/1d/d83947b57f56459d38413730d2b5047e9399094f9ef8c59a45222811528a/selectolax-0.3.27-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14efadb01eb838b5971856bb5ae080937c6fad8bab34dba639bcaa6fd17de18f",
"md5": "6134f6c57a79043d6b660ac170a770d1",
"sha256": "5cd8282445e079fbcbed4fd39ebe46cc78407f9ec59405c0fdede0653b61c966"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "6134f6c57a79043d6b660ac170a770d1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2336718,
"upload_time": "2024-12-09T23:10:54",
"upload_time_iso_8601": "2024-12-09T23:10:54.057724Z",
"url": "https://files.pythonhosted.org/packages/14/ef/adb01eb838b5971856bb5ae080937c6fad8bab34dba639bcaa6fd17de18f/selectolax-0.3.27-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "412dc5456012366af9a222c6abc064c9800649566a032cc34aa2399d7c1d3acc",
"md5": "d618ba2f5f3815eca5ce880f6f3ffe88",
"sha256": "28b540f21c0395cd9a5960bc3174e9c03e9ad3f5d59ebe7e8abed2d890dd3cac"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "d618ba2f5f3815eca5ce880f6f3ffe88",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2486383,
"upload_time": "2024-12-09T23:10:55",
"upload_time_iso_8601": "2024-12-09T23:10:55.392047Z",
"url": "https://files.pythonhosted.org/packages/41/2d/c5456012366af9a222c6abc064c9800649566a032cc34aa2399d7c1d3acc/selectolax-0.3.27-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44bda4be1c89d0d63dc76620e41b6e6905d6a8c5c2a79eab20a58bd8824b4f56",
"md5": "d1e544c01798ac0d8db1b842baaec1c7",
"sha256": "23eefd8c959e211361c29d33c82665e5b0f5a50501b168d9a3bb9d241627c675"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "d1e544c01798ac0d8db1b842baaec1c7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 5852045,
"upload_time": "2024-12-09T23:10:56",
"upload_time_iso_8601": "2024-12-09T23:10:56.999273Z",
"url": "https://files.pythonhosted.org/packages/44/bd/a4be1c89d0d63dc76620e41b6e6905d6a8c5c2a79eab20a58bd8824b4f56/selectolax-0.3.27-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec0bec42454549e3e6202a54d6a1740348a28c9126dd7d283549b0f6e3ecaf13",
"md5": "900c55bd222de3d576d98182c793ca66",
"sha256": "fcb0e3fd823fc4a7992f15989a64bfebc91aab46873bdd567c5b2122d7ee77d5"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "900c55bd222de3d576d98182c793ca66",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 3162731,
"upload_time": "2024-12-09T23:10:58",
"upload_time_iso_8601": "2024-12-09T23:10:58.685181Z",
"url": "https://files.pythonhosted.org/packages/ec/0b/ec42454549e3e6202a54d6a1740348a28c9126dd7d283549b0f6e3ecaf13/selectolax-0.3.27-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e742f2a62f9e1080746ba9c78a06f32ffd23d5dbf7403a3de2346a93522bd83",
"md5": "f52e5dbe5636a5c82dffbd66540c93fe",
"sha256": "6e5ee92a9a08db66ad36367fe4cb61f41d5aff7936577794c7ac52a782114df9"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f52e5dbe5636a5c82dffbd66540c93fe",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7657067,
"upload_time": "2024-12-09T23:11:02",
"upload_time_iso_8601": "2024-12-09T23:11:02.225061Z",
"url": "https://files.pythonhosted.org/packages/2e/74/2f2a62f9e1080746ba9c78a06f32ffd23d5dbf7403a3de2346a93522bd83/selectolax-0.3.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "01d1d37ac77c686db4785a55176499c0397716038dc365676df0c724d2f663b1",
"md5": "7cdfea6187261588c68b7de49a55eac9",
"sha256": "2ad6f3042c14746024198ef503c110a6457afe1edea5f335309226b048f7011c"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7cdfea6187261588c68b7de49a55eac9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7699371,
"upload_time": "2024-12-09T23:11:05",
"upload_time_iso_8601": "2024-12-09T23:11:05.518103Z",
"url": "https://files.pythonhosted.org/packages/01/d1/d37ac77c686db4785a55176499c0397716038dc365676df0c724d2f663b1/selectolax-0.3.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fba593563b54dbde3f2e00e55f522e6bb3a4e7e7a2b7c72ef39aebe04ff97c6",
"md5": "32fec3e07cbe1f1f22f4f57a3fef3bce",
"sha256": "afc5ebac5df69384f59a335ee09e74fb56a1bf6f2f5c617397e77265f08b2e69"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "32fec3e07cbe1f1f22f4f57a3fef3bce",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7084593,
"upload_time": "2024-12-09T23:11:07",
"upload_time_iso_8601": "2024-12-09T23:11:07.572673Z",
"url": "https://files.pythonhosted.org/packages/3f/ba/593563b54dbde3f2e00e55f522e6bb3a4e7e7a2b7c72ef39aebe04ff97c6/selectolax-0.3.27-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": "c645e1d954aa7a3c59a0431e43a4b00e00698d9b51c687f36eec03042ecd785c",
"md5": "ab6362d6bf11bb01613911786c7992cf",
"sha256": "804267ad6bd8d35ed55e8b57ab57721cd572e185adaf1027682b3a1356703324"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ab6362d6bf11bb01613911786c7992cf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7494521,
"upload_time": "2024-12-09T23:11:10",
"upload_time_iso_8601": "2024-12-09T23:11:10.871826Z",
"url": "https://files.pythonhosted.org/packages/c6/45/e1d954aa7a3c59a0431e43a4b00e00698d9b51c687f36eec03042ecd785c/selectolax-0.3.27-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b6686f046efa40ccc3ff7aaea2836f312ad862a05d3fb2b95a38c065b2b70d1",
"md5": "a140c89dcec7e76414cf1602fb82976c",
"sha256": "afb76bdcb70f55f31c2e4c369324148238f9287cb03af3458cd190bc699d051e"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a140c89dcec7e76414cf1602fb82976c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7086018,
"upload_time": "2024-12-09T23:11:14",
"upload_time_iso_8601": "2024-12-09T23:11:14.614770Z",
"url": "https://files.pythonhosted.org/packages/3b/66/86f046efa40ccc3ff7aaea2836f312ad862a05d3fb2b95a38c065b2b70d1/selectolax-0.3.27-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03361e61ad1dab29c5b15361668fb3d25ef9a50cf412b1831a8500605d5459c3",
"md5": "3652c8251051beaf2e0f4622195a6248",
"sha256": "98f045ea4f2917e29f30fa6de6f8dcadf2d7f8e8284736428f0863f7e1b851b1"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3652c8251051beaf2e0f4622195a6248",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7604450,
"upload_time": "2024-12-09T23:11:16",
"upload_time_iso_8601": "2024-12-09T23:11:16.614451Z",
"url": "https://files.pythonhosted.org/packages/03/36/1e61ad1dab29c5b15361668fb3d25ef9a50cf412b1831a8500605d5459c3/selectolax-0.3.27-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c5090e06dd185797351085a5f2e19be546a7d990a58305089f107bb3481d36f",
"md5": "b4fa067c9d0ce10f89e30f3038cd2148",
"sha256": "cfba7d167f8d844897f6aee9acaad4e275a04dae9702f52712f684fbe9e0a488"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "b4fa067c9d0ce10f89e30f3038cd2148",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2335258,
"upload_time": "2024-12-09T23:11:18",
"upload_time_iso_8601": "2024-12-09T23:11:18.492645Z",
"url": "https://files.pythonhosted.org/packages/6c/50/90e06dd185797351085a5f2e19be546a7d990a58305089f107bb3481d36f/selectolax-0.3.27-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12b7d1f55e69901f5f56102e54491fdeb3f54cc18fbee8578e83299122765b4f",
"md5": "1f198c952e3fb13780c18cbc5b179031",
"sha256": "1badda1b1c99d2ab03b5a171472a2362eb14db30490c9b472277f0ec9daf0d63"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "1f198c952e3fb13780c18cbc5b179031",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2483969,
"upload_time": "2024-12-09T23:11:19",
"upload_time_iso_8601": "2024-12-09T23:11:19.885243Z",
"url": "https://files.pythonhosted.org/packages/12/b7/d1f55e69901f5f56102e54491fdeb3f54cc18fbee8578e83299122765b4f/selectolax-0.3.27-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12da07e1e75945ec4b96971bf73247e078ecd7e6449dbcb5ebd2798b6b64f9d6",
"md5": "2c570e1bd72aa356ffaeedcf5c62d596",
"sha256": "f02a60042bd600e29025b81fe5def1615180674cab94829d9b34b4e6aa23ebe3"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "2c570e1bd72aa356ffaeedcf5c62d596",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 5851477,
"upload_time": "2024-12-09T23:11:21",
"upload_time_iso_8601": "2024-12-09T23:11:21.564202Z",
"url": "https://files.pythonhosted.org/packages/12/da/07e1e75945ec4b96971bf73247e078ecd7e6449dbcb5ebd2798b6b64f9d6/selectolax-0.3.27-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6d1aba0ca25379d7c04b040ab32cfa6b9e544dcdcc42727e766a139a8acc68b",
"md5": "0520faed3efcb46f7ac741a3a10c9c48",
"sha256": "1d750b2c2e5ee0cbcb5e97ddd243ddd486452979b38d224ab49c44388f626a21"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "0520faed3efcb46f7ac741a3a10c9c48",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 3162361,
"upload_time": "2024-12-09T23:11:23",
"upload_time_iso_8601": "2024-12-09T23:11:23.351569Z",
"url": "https://files.pythonhosted.org/packages/e6/d1/aba0ca25379d7c04b040ab32cfa6b9e544dcdcc42727e766a139a8acc68b/selectolax-0.3.27-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2a7708c0922a51f3436e6f7f06a1ac1e7de3db4c1d8b5fe5dbd79ccf50c8e90",
"md5": "b44a92de5e34b4af71f3909345767d71",
"sha256": "8536fec1959262fc34f410083c7be990ed8f086e876ea2843a87866321a1d357"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b44a92de5e34b4af71f3909345767d71",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7629255,
"upload_time": "2024-12-09T23:11:25",
"upload_time_iso_8601": "2024-12-09T23:11:25.027031Z",
"url": "https://files.pythonhosted.org/packages/b2/a7/708c0922a51f3436e6f7f06a1ac1e7de3db4c1d8b5fe5dbd79ccf50c8e90/selectolax-0.3.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ab188e7186d9b624546a662da5d8f38ec00dcf722e49718842e842cc708f82c",
"md5": "42c50f23b0347389d4896f5e4cffb7cc",
"sha256": "0f47cfd8fd053c7cfeaf3a46354b92fee7d0fdcdbe029b05096eefbeb516696c"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "42c50f23b0347389d4896f5e4cffb7cc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7671188,
"upload_time": "2024-12-09T23:11:28",
"upload_time_iso_8601": "2024-12-09T23:11:28.222846Z",
"url": "https://files.pythonhosted.org/packages/4a/b1/88e7186d9b624546a662da5d8f38ec00dcf722e49718842e842cc708f82c/selectolax-0.3.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "748206276bc28ba75cf857ae8fcbc6f40d96e60029a6cd075a4e694773e2f6ab",
"md5": "2f783d35d2e47788e5f1a93c4182f860",
"sha256": "02fc623bee9166f8c0089d0a18b62e9b83d2b8e67b16b080e65df18349065403"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2f783d35d2e47788e5f1a93c4182f860",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7057709,
"upload_time": "2024-12-09T23:11:30",
"upload_time_iso_8601": "2024-12-09T23:11:30.871212Z",
"url": "https://files.pythonhosted.org/packages/74/82/06276bc28ba75cf857ae8fcbc6f40d96e60029a6cd075a4e694773e2f6ab/selectolax-0.3.27-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": "a4bd061cabd2d2e7329c58ccf5bc718edc511dc7b533dd5cd1d021d4432e43c4",
"md5": "166238ab3767881333923a005ea2413b",
"sha256": "10f2d47626d03acd93b7e0c943f8e39e0bf93e756318a8b103a445e64ee03db3"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "166238ab3767881333923a005ea2413b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7440026,
"upload_time": "2024-12-09T23:11:34",
"upload_time_iso_8601": "2024-12-09T23:11:34.278597Z",
"url": "https://files.pythonhosted.org/packages/a4/bd/061cabd2d2e7329c58ccf5bc718edc511dc7b533dd5cd1d021d4432e43c4/selectolax-0.3.27-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99529c5c3f1bc3e8c39d984c95e1a9fd6231032502a9bc7fff056dab8f6a133a",
"md5": "43cedd78c4f0e668d2c8799eca95e332",
"sha256": "1d86bdca0a86f533cd9415f2090dd1a52cd251c1e9d968bf5d937b8b4d7f06ee"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "43cedd78c4f0e668d2c8799eca95e332",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7011383,
"upload_time": "2024-12-09T23:11:36",
"upload_time_iso_8601": "2024-12-09T23:11:36.077549Z",
"url": "https://files.pythonhosted.org/packages/99/52/9c5c3f1bc3e8c39d984c95e1a9fd6231032502a9bc7fff056dab8f6a133a/selectolax-0.3.27-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9cf85deabbb0a54a08f0bf524876dde904ce91f6103f49351c20e58b3589a086",
"md5": "7d2e5851d257f079f9686f4b5fd20457",
"sha256": "868687ae608594725e4d9e14a7c9a29ad12b8c622bfc46ce444f61c4292c9bde"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7d2e5851d257f079f9686f4b5fd20457",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7543106,
"upload_time": "2024-12-09T23:11:38",
"upload_time_iso_8601": "2024-12-09T23:11:38.207867Z",
"url": "https://files.pythonhosted.org/packages/9c/f8/5deabbb0a54a08f0bf524876dde904ce91f6103f49351c20e58b3589a086/selectolax-0.3.27-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "42e0e1c76cc2fe37fa478cf91eff9cb61781e52beee3d9bcac107278d6d24c2a",
"md5": "154d5878fdcfc6f64be656a0d5eb7d98",
"sha256": "bbdae997288652ea9accc590102219932d296d9464754ddf27df12448b4ec1ca"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "154d5878fdcfc6f64be656a0d5eb7d98",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2334753,
"upload_time": "2024-12-09T23:11:39",
"upload_time_iso_8601": "2024-12-09T23:11:39.847387Z",
"url": "https://files.pythonhosted.org/packages/42/e0/e1c76cc2fe37fa478cf91eff9cb61781e52beee3d9bcac107278d6d24c2a/selectolax-0.3.27-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12e020a15eb4b76105d39be628a2a04e82fdb9fa2aa6cd962734cb0fb7f992da",
"md5": "16633260aab0b16cbd6832606c1fae06",
"sha256": "5d5330f57edeeadedae5014c74849cd8a84a6d7fb497babe8a82a4f1999b0678"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "16633260aab0b16cbd6832606c1fae06",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2483673,
"upload_time": "2024-12-09T23:11:41",
"upload_time_iso_8601": "2024-12-09T23:11:41.344965Z",
"url": "https://files.pythonhosted.org/packages/12/e0/20a15eb4b76105d39be628a2a04e82fdb9fa2aa6cd962734cb0fb7f992da/selectolax-0.3.27-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0be0657ae13e7838aa33d877daf3fb52baae1687c23c4405a958d3d961e28b73",
"md5": "762cddb0c7df61221c821682aa4fc932",
"sha256": "29557e539a4c8c06fecca9eb21d00b96a08f0fd01b33dd1c9ec71c660ff07c86"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "762cddb0c7df61221c821682aa4fc932",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 3151387,
"upload_time": "2024-12-09T23:11:42",
"upload_time_iso_8601": "2024-12-09T23:11:42.752757Z",
"url": "https://files.pythonhosted.org/packages/0b/e0/657ae13e7838aa33d877daf3fb52baae1687c23c4405a958d3d961e28b73/selectolax-0.3.27-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb44a2a38e8824c3b8574826668e887f2c6a2f0b8e7740fa81158e66e3ddc034",
"md5": "0f5fe59bd4491bfbb118793842c4e071",
"sha256": "1eeb62e2e4569d3c03dd1ec33dc2352aa6549746416ca8de0f0acf7427b36908"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0f5fe59bd4491bfbb118793842c4e071",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 7188055,
"upload_time": "2024-12-09T23:11:45",
"upload_time_iso_8601": "2024-12-09T23:11:45.763196Z",
"url": "https://files.pythonhosted.org/packages/cb/44/a2a38e8824c3b8574826668e887f2c6a2f0b8e7740fa81158e66e3ddc034/selectolax-0.3.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcffade99ac4e572b83318d2961f04d5630c78826bce074e4b1a4f1d0dc7bcc7",
"md5": "935b39f989f5930f4f8dac854de33c7f",
"sha256": "853d59fbf9ccbe3bd2c222f9a33f984e421fb2ef2ea39fd3e469568256315242"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "935b39f989f5930f4f8dac854de33c7f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 6617314,
"upload_time": "2024-12-09T23:11:47",
"upload_time_iso_8601": "2024-12-09T23:11:47.875876Z",
"url": "https://files.pythonhosted.org/packages/fc/ff/ade99ac4e572b83318d2961f04d5630c78826bce074e4b1a4f1d0dc7bcc7/selectolax-0.3.27-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": "bc26b6f8f92433d9a0609e077a1c1180be71c7030add4c19cbcd2f55b3958deb",
"md5": "c6fe0f450b2489d89782b3d68e4f8847",
"sha256": "085640fe89aeab643eaa8e37d372ba83b43b748d1a7f3fedab9ff49dc92c262d"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c6fe0f450b2489d89782b3d68e4f8847",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 6596304,
"upload_time": "2024-12-09T23:11:49",
"upload_time_iso_8601": "2024-12-09T23:11:49.716726Z",
"url": "https://files.pythonhosted.org/packages/bc/26/b6f8f92433d9a0609e077a1c1180be71c7030add4c19cbcd2f55b3958deb/selectolax-0.3.27-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69edd764a7e04e105ae04ffce7623fde4a7dad010962753e10301c7140a4884b",
"md5": "0dbf94d2226c3740f347f9c4003daa2a",
"sha256": "fd8e75ef6fa5133893684e0c8e2646a344a46fdf1937f0e15933dbd1a12831b6"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0dbf94d2226c3740f347f9c4003daa2a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 7144937,
"upload_time": "2024-12-09T23:11:51",
"upload_time_iso_8601": "2024-12-09T23:11:51.720664Z",
"url": "https://files.pythonhosted.org/packages/69/ed/d764a7e04e105ae04ffce7623fde4a7dad010962753e10301c7140a4884b/selectolax-0.3.27-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e8917b49908af509a4d08f1a5498505edf13e07417e49c320ac183befc00517",
"md5": "62fabacf188272798ff9cc15c5cbda28",
"sha256": "ebbda30a8e940ee1ba1cf10d1e4664aeddbf29b90dfdc7d327819ca7b6cfa8de"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "62fabacf188272798ff9cc15c5cbda28",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2333883,
"upload_time": "2024-12-09T23:11:53",
"upload_time_iso_8601": "2024-12-09T23:11:53.685976Z",
"url": "https://files.pythonhosted.org/packages/0e/89/17b49908af509a4d08f1a5498505edf13e07417e49c320ac183befc00517/selectolax-0.3.27-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1012780b98dd3ae2a103592dd4e236109333fdde35da1203c2f6438d18ae4534",
"md5": "c06a9f01378803062521dd5b6b5dc9dc",
"sha256": "b20ff234ddc1ea5974e0644af750c46cddaa2c5ad509f68ec47f9867e8dcf85f"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "c06a9f01378803062521dd5b6b5dc9dc",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2482604,
"upload_time": "2024-12-09T23:11:56",
"upload_time_iso_8601": "2024-12-09T23:11:56.740399Z",
"url": "https://files.pythonhosted.org/packages/10/12/780b98dd3ae2a103592dd4e236109333fdde35da1203c2f6438d18ae4534/selectolax-0.3.27-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47eae221820556744f84e3a08237b5b56b3d23a1cfe31cdd76234edc2861e17d",
"md5": "f7f261b043449986ee565e6a9325a7d2",
"sha256": "bf979b04a56cc8970a3018a6801bb600acc62a32c0e5f51364d2b16b3c39deae"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f7f261b043449986ee565e6a9325a7d2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 5842723,
"upload_time": "2024-12-09T23:11:58",
"upload_time_iso_8601": "2024-12-09T23:11:58.367514Z",
"url": "https://files.pythonhosted.org/packages/47/ea/e221820556744f84e3a08237b5b56b3d23a1cfe31cdd76234edc2861e17d/selectolax-0.3.27-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a79a8b94e10c254791ca03bb8861d1c6304cb551b6d893650fe511b7a8a107f",
"md5": "ebcd159bf8f7a6ca99a326c85d135da3",
"sha256": "90ad3f96336d5b2520c28f2670af93f7d286409f7039432595fb91402bc8fa35"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ebcd159bf8f7a6ca99a326c85d135da3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 3158356,
"upload_time": "2024-12-09T23:12:01",
"upload_time_iso_8601": "2024-12-09T23:12:01.451600Z",
"url": "https://files.pythonhosted.org/packages/8a/79/a8b94e10c254791ca03bb8861d1c6304cb551b6d893650fe511b7a8a107f/selectolax-0.3.27-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2797cea6c7e682f5b7bcc2f1a8260e68e69325b36556e0f028199f6bfa035758",
"md5": "b8e4b4e3b2f25a0e98e0c9a655b1be16",
"sha256": "05dbb583c4287d0bf0a4fb851b05d03cda4a716f84be07932f4ba564ab8eddd9"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b8e4b4e3b2f25a0e98e0c9a655b1be16",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7474420,
"upload_time": "2024-12-09T23:12:03",
"upload_time_iso_8601": "2024-12-09T23:12:03.311655Z",
"url": "https://files.pythonhosted.org/packages/27/97/cea6c7e682f5b7bcc2f1a8260e68e69325b36556e0f028199f6bfa035758/selectolax-0.3.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "030f3daefc76ac3433f29f51dee2e8cbe27883e381bc0ee037a6af40039f1d59",
"md5": "8c5ea2e81ccf0e55aea1c16c6edecb92",
"sha256": "442ba2922a37df6dce77791ba558a999a83839c21914906815a5a53b8ca1e765"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8c5ea2e81ccf0e55aea1c16c6edecb92",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 6886355,
"upload_time": "2024-12-09T23:12:05",
"upload_time_iso_8601": "2024-12-09T23:12:05.677264Z",
"url": "https://files.pythonhosted.org/packages/03/0f/3daefc76ac3433f29f51dee2e8cbe27883e381bc0ee037a6af40039f1d59/selectolax-0.3.27-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": "f7e67203ecde926fe6b0fd75daba15a3b38e241be4a4d3450205fc8eed57619b",
"md5": "1ba6c115a77e27af5e589bcef19cef17",
"sha256": "6df9182a8f132354b0083f37d3510b5617cb25e1895dc2db8db01e0e59c32e45"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1ba6c115a77e27af5e589bcef19cef17",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 6915270,
"upload_time": "2024-12-09T23:12:07",
"upload_time_iso_8601": "2024-12-09T23:12:07.716815Z",
"url": "https://files.pythonhosted.org/packages/f7/e6/7203ecde926fe6b0fd75daba15a3b38e241be4a4d3450205fc8eed57619b/selectolax-0.3.27-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75b88b823212344daa55b36dd2054086ce3c8e31532b29a831aa217f364d383d",
"md5": "3794ac9d01caf87a29ac267d09f3b1c5",
"sha256": "d011d372520b3e047859af5f48bc3593cfafcd0e83b21eeda82ea37843581c5a"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3794ac9d01caf87a29ac267d09f3b1c5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7436567,
"upload_time": "2024-12-09T23:12:10",
"upload_time_iso_8601": "2024-12-09T23:12:10.078601Z",
"url": "https://files.pythonhosted.org/packages/75/b8/8b823212344daa55b36dd2054086ce3c8e31532b29a831aa217f364d383d/selectolax-0.3.27-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d1dcb0d03fbf4626d8d54fed800c17d7572c239166e0a6f7717ade49f4008fbe",
"md5": "baf726d90605868ce50ac0b1a75daa41",
"sha256": "58c073f1ca8ae5b0feec713372ff11e3c1ac8f5c5f3865e51bb50d100a6880a0"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "baf726d90605868ce50ac0b1a75daa41",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2339381,
"upload_time": "2024-12-09T23:12:11",
"upload_time_iso_8601": "2024-12-09T23:12:11.845510Z",
"url": "https://files.pythonhosted.org/packages/d1/dc/b0d03fbf4626d8d54fed800c17d7572c239166e0a6f7717ade49f4008fbe/selectolax-0.3.27-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bd627cfd917cb9d29240d4168df5cb5cb72100b50916382cd4adaa222b516bb",
"md5": "06c705b71b68845681f3cc5f20ed4785",
"sha256": "a957327c992a8ad54505b16963cd268a5f0c8d74b6f4fbd2c95c106aff6fdaa7"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "06c705b71b68845681f3cc5f20ed4785",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2487534,
"upload_time": "2024-12-09T23:12:13",
"upload_time_iso_8601": "2024-12-09T23:12:13.246174Z",
"url": "https://files.pythonhosted.org/packages/7b/d6/27cfd917cb9d29240d4168df5cb5cb72100b50916382cd4adaa222b516bb/selectolax-0.3.27-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c931c1fe53b11936ef13e9fdd5095e1507269cd70b7bf5cb67ef01426d5bed1",
"md5": "4ea2ffc67e053fd5b655a792371612bc",
"sha256": "a4c285f101e5fa07ae202ccc6f347921adc3af1934c752856223296a4234e748"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "4ea2ffc67e053fd5b655a792371612bc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 5842793,
"upload_time": "2024-12-09T23:12:15",
"upload_time_iso_8601": "2024-12-09T23:12:15.440213Z",
"url": "https://files.pythonhosted.org/packages/5c/93/1c1fe53b11936ef13e9fdd5095e1507269cd70b7bf5cb67ef01426d5bed1/selectolax-0.3.27-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c66f680ecee2a386082ec68adfff2969cdf6fa6b4b76b811fb1776132b7d508",
"md5": "44e6c50ff444c602e8b5ba602f2412ea",
"sha256": "52cda4030d1348c4b7759332a64f8d987c1ff5b4538aa2fbacfbc4af06e505f3"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "44e6c50ff444c602e8b5ba602f2412ea",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 3159398,
"upload_time": "2024-12-09T23:12:19",
"upload_time_iso_8601": "2024-12-09T23:12:19.984597Z",
"url": "https://files.pythonhosted.org/packages/5c/66/f680ecee2a386082ec68adfff2969cdf6fa6b4b76b811fb1776132b7d508/selectolax-0.3.27-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4acf89e89f06d410220aef4a060c3047c99cd388803f12f3e075ee4f00fb510e",
"md5": "4a2d44abff6e4578daef1b0be2344e3a",
"sha256": "a4353f39618eab62b17424029e45c6d216622165624d6865c189d29450cbc00f"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4a2d44abff6e4578daef1b0be2344e3a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7313336,
"upload_time": "2024-12-09T23:12:21",
"upload_time_iso_8601": "2024-12-09T23:12:21.917382Z",
"url": "https://files.pythonhosted.org/packages/4a/cf/89e89f06d410220aef4a060c3047c99cd388803f12f3e075ee4f00fb510e/selectolax-0.3.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3abc3b143fc1759f00245d770cdd25bd6fb7edece16324725a13e9f7de818976",
"md5": "e505c076ab572ef385c0f830133f4388",
"sha256": "81c2c1b0404755463c2bf75ceb6daa7f8c4cc5e4e27cd8406b1f3b4101ef5a36"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e505c076ab572ef385c0f830133f4388",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7348151,
"upload_time": "2024-12-09T23:12:24",
"upload_time_iso_8601": "2024-12-09T23:12:24.813958Z",
"url": "https://files.pythonhosted.org/packages/3a/bc/3b143fc1759f00245d770cdd25bd6fb7edece16324725a13e9f7de818976/selectolax-0.3.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98853fd2d5428227d560999f66391102ed19501f8682e17d33d2c1d4ced23759",
"md5": "4a6a13bf2c15e7843ff82260c612a9fc",
"sha256": "7cef48126ed38ac8ff17e3dff81223f97e4f1ea5c419cbdd7acced8966ef3421"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4a6a13bf2c15e7843ff82260c612a9fc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 6767137,
"upload_time": "2024-12-09T23:12:27",
"upload_time_iso_8601": "2024-12-09T23:12:27.341873Z",
"url": "https://files.pythonhosted.org/packages/98/85/3fd2d5428227d560999f66391102ed19501f8682e17d33d2c1d4ced23759/selectolax-0.3.27-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": "50b8481055bfe376b3020344d81aea2044bb017c5a176c2c75ca2b4c848e1c39",
"md5": "f346040a799cdb71df5c0d806885f11a",
"sha256": "07b061953ae50be3499ff0fea6a47368ec1428f5e0c454ea518c7a4fee70878d"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f346040a799cdb71df5c0d806885f11a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7209423,
"upload_time": "2024-12-09T23:12:29",
"upload_time_iso_8601": "2024-12-09T23:12:29.306756Z",
"url": "https://files.pythonhosted.org/packages/50/b8/481055bfe376b3020344d81aea2044bb017c5a176c2c75ca2b4c848e1c39/selectolax-0.3.27-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "546d900d3c62fc10bfda91250639bdb624031bccccc32e04ec48d0d510e70c2a",
"md5": "c68713138271abfe25e4a14f2eef2e07",
"sha256": "c4ddea351445a68df9c2fc455d7a73a26ea27fd39f5434d5ad02df70f409a3ea"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c68713138271abfe25e4a14f2eef2e07",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 6771673,
"upload_time": "2024-12-09T23:12:31",
"upload_time_iso_8601": "2024-12-09T23:12:31.268349Z",
"url": "https://files.pythonhosted.org/packages/54/6d/900d3c62fc10bfda91250639bdb624031bccccc32e04ec48d0d510e70c2a/selectolax-0.3.27-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d643e7df4bb2c1d838d50227d60b8f7b1ed9bc3c318e60b9f89d1cd6d32d89f",
"md5": "aa7f9bfeaade697275fcd1d3f35f1eff",
"sha256": "9d66c2c9108082f6dd7a7b73b3811e01042f9c9a21dd6b70a1ce92ee60e0128e"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "aa7f9bfeaade697275fcd1d3f35f1eff",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7290626,
"upload_time": "2024-12-09T23:12:33",
"upload_time_iso_8601": "2024-12-09T23:12:33.117415Z",
"url": "https://files.pythonhosted.org/packages/5d/64/3e7df4bb2c1d838d50227d60b8f7b1ed9bc3c318e60b9f89d1cd6d32d89f/selectolax-0.3.27-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ccb72ad28fe082e07f9fdc23e97861990221050335b69dc3442f56e00b53737",
"md5": "b30453c34cdc481cf1f13f9f0c1c5ecb",
"sha256": "9d9cc3f059508f1e0b7f10037c9024b030ad2ce902978aacf0eaba438b37e961"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "b30453c34cdc481cf1f13f9f0c1c5ecb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2337678,
"upload_time": "2024-12-09T23:12:34",
"upload_time_iso_8601": "2024-12-09T23:12:34.935037Z",
"url": "https://files.pythonhosted.org/packages/0c/cb/72ad28fe082e07f9fdc23e97861990221050335b69dc3442f56e00b53737/selectolax-0.3.27-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a3256234a3331402721f833da86bba124e23a47b23860d8ae3861cb48324374f",
"md5": "6f3315ba6824c34d3c2356e5259cdee5",
"sha256": "b8ead43295d2d8e7819279d145f43b3683643e36876caf41ef6e571bc5a9a9f0"
},
"downloads": -1,
"filename": "selectolax-0.3.27-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "6f3315ba6824c34d3c2356e5259cdee5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2486481,
"upload_time": "2024-12-09T23:12:36",
"upload_time_iso_8601": "2024-12-09T23:12:36.948831Z",
"url": "https://files.pythonhosted.org/packages/a3/25/6234a3331402721f833da86bba124e23a47b23860d8ae3861cb48324374f/selectolax-0.3.27-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd00a5240ade1a6ca0f330fbbfb612135b8f363fd87fb450a2def11bc17f44c2",
"md5": "4da4e669609d5df67a4ead8a2ab24e5f",
"sha256": "0e058f869e55d40596a92bff59fffdb551f7135cbf938b0756e9a3bd8de1ffc5"
},
"downloads": -1,
"filename": "selectolax-0.3.27.tar.gz",
"has_sig": false,
"md5_digest": "4da4e669609d5df67a4ead8a2ab24e5f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3611042,
"upload_time": "2024-12-09T23:12:40",
"upload_time_iso_8601": "2024-12-09T23:12:40.656870Z",
"url": "https://files.pythonhosted.org/packages/dd/00/a5240ade1a6ca0f330fbbfb612135b8f363fd87fb450a2def11bc17f44c2/selectolax-0.3.27.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-09 23:12:40",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "rushter",
"github_project": "selectolax",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "selectolax"
}