Python's ``Fraction`` data type is an excellent way to do exact calculations
with unlimited rational numbers and largely beats ``Decimal`` in terms of
simplicity, accuracy and safety. Clearly not in terms of speed, though,
given the cdecimal accelerator in Python 3.3+.
``quicktions`` is an adaptation of the original ``fractions`` module
(as included in CPython 3.13) that is compiled and optimised with
`Cython <https://cython.org/>`_ into a fast, native extension module.
Compared to the standard library ``fractions`` module of CPython 3.12,
computations in ``quicktions`` are about 2-4x faster.
Instantiation of a ``Fraction`` in ``quicktions`` is also
- 5-15x faster from a floating point string value (e.g. ``Fraction("123.456789")``)
- 3-5x faster from a floating point value (e.g. ``Fraction(123.456789)``)
- 2-5x faster from an integer numerator-denominator pair (e.g. ``Fraction(123, 456)``)
We provide a set of micro-benchmarks here:
https://github.com/scoder/quicktions/tree/master/benchmark
As of quicktions 1.19, the different number types and implementations compare
as follows in CPython 3.12 (measured on Ubuntu Linux):
.. code-block::
Average times for all 'create' benchmarks:
float : 19.69 us (1.0x)
Fraction : 58.63 us (3.0x)
Decimal : 84.32 us (4.3x)
PyFraction : 208.20 us (10.6x)
Average times for all 'compute' benchmarks:
float : 1.79 us (1.0x)
Decimal : 10.11 us (5.7x)
Fraction : 39.24 us (22.0x)
PyFraction : 96.23 us (53.9x)
While not as fast as the C implemented ``decimal`` module in Python 3,
``quicktions`` is about 15x faster than the Python implemented ``decimal``
module in Python 2.7.
For documentation, see the Python standard library's ``fractions`` module:
https://docs.python.org/3/library/fractions.html
ChangeLog
=========
1.22 (2025-08-25)
-----------------
* A choice of different GCD implementations is available via ``quicktions.use_gcd_impl()``.
The fastest one on the current machine is chosen at import time.
* Built using Cython 3.1.3.
1.21 (2025-06-13)
-----------------
* A serious parser bug could accidentally concatenate numerator and denominator
as final denominator when parsing "x/y" where x or y are close to ``sys.maxsize``,
thus returning a ``Fraction("x/xy")``.
* MSVC and clang now also benefit from fast "count trailing zeroes" intrinsics.
1.20 (2025-06-13)
-----------------
* ``quicktions`` is compatible with freethreading Python (3.13+).
* Accept leading zeros in precision/width for Fraction's formatting, following
https://github.com/python/cpython/pull/130663
* In line with Python's ``Fraction``, quicktions now raises a ``ValueError``
(instead of an ``OverflowError``) when exceeding parser limits, following
https://github.com/python/cpython/pull/134010
* Call ``__rpow__`` in ternary ``pow()`` if necessary, following
https://github.com/python/cpython/pull/130251
* Built using Cython 3.1.2.
1.19 (2024-11-29)
-----------------
* Support for Python 2.7 as well as 3.7 and earlier has been removed.
* Generally use ``.as_integer_ratio()`` in the constructor if available.
https://github.com/python/cpython/pull/120271
* Add a classmethod ``.from_number()`` that requires a number argument, not a string.
https://github.com/python/cpython/pull/121800
* Mixed calculations with other ``Rational`` classes could return the wrong type.
https://github.com/python/cpython/issues/119189
* In mixed calculations with ``complex``, the Fraction is now converted to ``float``
instead of ``complex`` to avoid certain corner cases in complex calculation.
https://github.com/python/cpython/pull/119839
* Using ``complex`` numbers in division shows better tracebacks.
https://github.com/python/cpython/pull/102842
* Subclass instantiations and calculations could fail in some cases.
1.18 (2024-04-03)
-----------------
* New binary wheels were added built with gcc 12 (manylinux_2_28).
* x86_64 wheels now require SSE4.2.
* Built using Cython 3.0.10.
1.17 (2024-03-24)
-----------------
* Math operations were sped up by inlined binary GCD calculation.
1.16 (2024-01-10)
-----------------
* Formatting support was improved, following CPython 3.13a3 as of
https://github.com/python/cpython/pull/111320
* Add support for Python 3.13 by using Cython 3.0.8 and calling ``math.gcd()``.
1.15 (2023-08-27)
-----------------
* Add support for Python 3.12 by using Cython 3.0.2.
1.14 (2023-03-19)
-----------------
* Implement ``__format__`` for ``Fraction``, following
https://github.com/python/cpython/pull/100161
* Implement ``Fraction.is_integer()``, following
https://github.com/python/cpython/issues/100488
* ``Fraction.limit_denominator()`` is faster, following
https://github.com/python/cpython/pull/93730
* Internal creation of result Fractions is about 10% faster if the calculated
numerator/denominator pair is already normalised, following
https://github.com/python/cpython/pull/101780
* Built using Cython 3.0.0b1.
1.13 (2022-01-11)
-----------------
* Parsing very long numbers from a fraction string was very slow, even slower
than ``fractions.Fraction``. The parser is now faster in all cases (and
still much faster for shorter numbers).
* ``Fraction`` did not implement ``__int__``.
https://bugs.python.org/issue44547
1.12 (2022-01-07)
-----------------
* Faster and more space friendly pickling and unpickling.
https://bugs.python.org/issue44154
* Algorithmically faster arithmetic for large denominators, although slower for
small fraction components.
https://bugs.python.org/issue43420
Original patch for CPython by Sergey B. Kirpichev and Raymond Hettinger.
* Make sure ``bool(Fraction)`` always returns a ``bool``.
https://bugs.python.org/issue39274
* Built using Cython 3.0.0a10.
1.11 (2019-12-19)
-----------------
* Fix ``OverflowError`` when parsing string values with long decimal parts.
1.10 (2019-08-23)
-----------------
* ``hash(fraction)`` is substantially faster in Py3.8+, following an optimisation
in CPython 3.9 (https://bugs.python.org/issue37863).
* New method ``fraction.as_integer_ratio()``.
1.9 (2018-12-26)
----------------
* Substantially faster normalisation (and therefore instantiation) in Py3.5+.
* ``//`` (floordiv) now follows the expected rounding behaviour when used with
floats (by converting to float first), and is much faster for integer operations.
* Fix return type of divmod(), where the first item should be an integer.
* Further speed up mod and divmod operations.
1.8 (2018-12-26)
----------------
* Faster mod and divmod calculation.
1.7 (2018-10-16)
----------------
* Faster normalisation and fraction string parsing.
* Add support for Python 3.7.
* Built using Cython 0.29.
1.6 (2018-03-23)
----------------
* Speed up Fraction creation from a string value by 3-5x.
* Built using Cython 0.28.1.
1.5 (2017-10-22)
----------------
* Result of power operator (``**``) was not normalised for negative values.
* Built using Cython 0.27.2.
1.4 (2017-09-16)
----------------
* Rebuilt using Cython 0.26.1 to improve support of Python 3.7.
1.3 (2016-07-24)
----------------
* repair the faster instantiation from Decimal values in Python 3.6
* avoid potential glitch for certain large numbers in normalisation under Python 2.x
1.2 (2016-04-08)
----------------
* change hash function in Python 2.x to match that of ``fractions.Fraction``
1.1 (2016-03-29)
----------------
* faster instantiation from float values
* faster instantiation from Decimal values in Python 3.6
1.0 (2015-09-10)
----------------
* ``Fraction.imag`` property could return non-zero
* parsing strings with long fraction parts could use an incorrect scale
0.7 (2014-10-09)
----------------
* faster instantiation from float and string values
* fix test in Python 2.x
0.6 (2014-10-09)
----------------
* faster normalisation (and thus instantiation)
0.5 (2014-10-06)
----------------
* faster math operations
0.4 (2014-10-06)
----------------
* enable legacy division support in Python 2.x
0.3 (2014-10-05)
----------------
* minor behavioural fixes in corner cases under Python 2.x
(now passes all test in Py2.7 as well)
0.2 (2014-10-03)
----------------
* cache hash value of Fractions
0.1 (2014-09-24)
----------------
* initial public release
Raw data
{
"_id": null,
"home_page": "https://github.com/scoder/quicktions",
"name": "quicktions",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Stefan Behnel",
"author_email": "stefan_ml@behnel.de",
"download_url": "https://files.pythonhosted.org/packages/2c/4f/41c57a2b7302d854a369ca2210d054e759f5e69d703bcf42375d6c29fff0/quicktions-1.22.tar.gz",
"platform": null,
"description": "Python's ``Fraction`` data type is an excellent way to do exact calculations\nwith unlimited rational numbers and largely beats ``Decimal`` in terms of\nsimplicity, accuracy and safety. Clearly not in terms of speed, though,\ngiven the cdecimal accelerator in Python 3.3+.\n\n``quicktions`` is an adaptation of the original ``fractions`` module\n(as included in CPython 3.13) that is compiled and optimised with\n`Cython <https://cython.org/>`_ into a fast, native extension module.\n\nCompared to the standard library ``fractions`` module of CPython 3.12,\ncomputations in ``quicktions`` are about 2-4x faster.\n\nInstantiation of a ``Fraction`` in ``quicktions`` is also\n\n- 5-15x faster from a floating point string value (e.g. ``Fraction(\"123.456789\")``)\n- 3-5x faster from a floating point value (e.g. ``Fraction(123.456789)``)\n- 2-5x faster from an integer numerator-denominator pair (e.g. ``Fraction(123, 456)``)\n\nWe provide a set of micro-benchmarks here:\n\nhttps://github.com/scoder/quicktions/tree/master/benchmark\n\nAs of quicktions 1.19, the different number types and implementations compare\nas follows in CPython 3.12 (measured on Ubuntu Linux):\n\n.. code-block::\n\n Average times for all 'create' benchmarks:\n float : 19.69 us (1.0x)\n Fraction : 58.63 us (3.0x)\n Decimal : 84.32 us (4.3x)\n PyFraction : 208.20 us (10.6x)\n\n Average times for all 'compute' benchmarks:\n float : 1.79 us (1.0x)\n Decimal : 10.11 us (5.7x)\n Fraction : 39.24 us (22.0x)\n PyFraction : 96.23 us (53.9x)\n\nWhile not as fast as the C implemented ``decimal`` module in Python 3,\n``quicktions`` is about 15x faster than the Python implemented ``decimal``\nmodule in Python 2.7.\n\nFor documentation, see the Python standard library's ``fractions`` module:\n\nhttps://docs.python.org/3/library/fractions.html\n\nChangeLog\n=========\n\n1.22 (2025-08-25)\n-----------------\n\n* A choice of different GCD implementations is available via ``quicktions.use_gcd_impl()``.\n The fastest one on the current machine is chosen at import time.\n\n* Built using Cython 3.1.3.\n\n\n1.21 (2025-06-13)\n-----------------\n\n* A serious parser bug could accidentally concatenate numerator and denominator\n as final denominator when parsing \"x/y\" where x or y are close to ``sys.maxsize``,\n thus returning a ``Fraction(\"x/xy\")``.\n\n* MSVC and clang now also benefit from fast \"count trailing zeroes\" intrinsics.\n\n\n1.20 (2025-06-13)\n-----------------\n\n* ``quicktions`` is compatible with freethreading Python (3.13+).\n\n* Accept leading zeros in precision/width for Fraction's formatting, following\n https://github.com/python/cpython/pull/130663\n\n* In line with Python's ``Fraction``, quicktions now raises a ``ValueError``\n (instead of an ``OverflowError``) when exceeding parser limits, following\n https://github.com/python/cpython/pull/134010\n\n* Call ``__rpow__`` in ternary ``pow()`` if necessary, following\n https://github.com/python/cpython/pull/130251\n\n* Built using Cython 3.1.2.\n\n\n1.19 (2024-11-29)\n-----------------\n\n* Support for Python 2.7 as well as 3.7 and earlier has been removed.\n\n* Generally use ``.as_integer_ratio()`` in the constructor if available.\n https://github.com/python/cpython/pull/120271\n\n* Add a classmethod ``.from_number()`` that requires a number argument, not a string.\n https://github.com/python/cpython/pull/121800\n\n* Mixed calculations with other ``Rational`` classes could return the wrong type.\n https://github.com/python/cpython/issues/119189\n\n* In mixed calculations with ``complex``, the Fraction is now converted to ``float``\n instead of ``complex`` to avoid certain corner cases in complex calculation.\n https://github.com/python/cpython/pull/119839\n\n* Using ``complex`` numbers in division shows better tracebacks.\n https://github.com/python/cpython/pull/102842\n\n* Subclass instantiations and calculations could fail in some cases.\n\n\n1.18 (2024-04-03)\n-----------------\n\n* New binary wheels were added built with gcc 12 (manylinux_2_28).\n\n* x86_64 wheels now require SSE4.2.\n\n* Built using Cython 3.0.10.\n\n\n1.17 (2024-03-24)\n-----------------\n\n* Math operations were sped up by inlined binary GCD calculation.\n\n\n1.16 (2024-01-10)\n-----------------\n\n* Formatting support was improved, following CPython 3.13a3 as of\n https://github.com/python/cpython/pull/111320\n\n* Add support for Python 3.13 by using Cython 3.0.8 and calling ``math.gcd()``.\n\n\n1.15 (2023-08-27)\n-----------------\n\n* Add support for Python 3.12 by using Cython 3.0.2.\n\n\n1.14 (2023-03-19)\n-----------------\n\n* Implement ``__format__`` for ``Fraction``, following\n https://github.com/python/cpython/pull/100161\n\n* Implement ``Fraction.is_integer()``, following\n https://github.com/python/cpython/issues/100488\n\n* ``Fraction.limit_denominator()`` is faster, following\n https://github.com/python/cpython/pull/93730\n\n* Internal creation of result Fractions is about 10% faster if the calculated\n numerator/denominator pair is already normalised, following\n https://github.com/python/cpython/pull/101780\n\n* Built using Cython 3.0.0b1.\n\n\n1.13 (2022-01-11)\n-----------------\n\n* Parsing very long numbers from a fraction string was very slow, even slower\n than ``fractions.Fraction``. The parser is now faster in all cases (and\n still much faster for shorter numbers).\n\n* ``Fraction`` did not implement ``__int__``.\n https://bugs.python.org/issue44547\n\n\n1.12 (2022-01-07)\n-----------------\n\n* Faster and more space friendly pickling and unpickling.\n https://bugs.python.org/issue44154\n\n* Algorithmically faster arithmetic for large denominators, although slower for\n small fraction components.\n https://bugs.python.org/issue43420\n Original patch for CPython by Sergey B. Kirpichev and Raymond Hettinger.\n\n* Make sure ``bool(Fraction)`` always returns a ``bool``.\n https://bugs.python.org/issue39274\n\n* Built using Cython 3.0.0a10.\n\n\n1.11 (2019-12-19)\n-----------------\n\n* Fix ``OverflowError`` when parsing string values with long decimal parts.\n\n\n1.10 (2019-08-23)\n-----------------\n\n* ``hash(fraction)`` is substantially faster in Py3.8+, following an optimisation\n in CPython 3.9 (https://bugs.python.org/issue37863).\n\n* New method ``fraction.as_integer_ratio()``.\n\n\n1.9 (2018-12-26)\n----------------\n\n* Substantially faster normalisation (and therefore instantiation) in Py3.5+.\n\n* ``//`` (floordiv) now follows the expected rounding behaviour when used with\n floats (by converting to float first), and is much faster for integer operations.\n\n* Fix return type of divmod(), where the first item should be an integer.\n\n* Further speed up mod and divmod operations.\n\n\n1.8 (2018-12-26)\n----------------\n\n* Faster mod and divmod calculation.\n\n\n1.7 (2018-10-16)\n----------------\n\n* Faster normalisation and fraction string parsing.\n\n* Add support for Python 3.7.\n\n* Built using Cython 0.29.\n\n\n1.6 (2018-03-23)\n----------------\n\n* Speed up Fraction creation from a string value by 3-5x.\n\n* Built using Cython 0.28.1.\n\n\n1.5 (2017-10-22)\n----------------\n\n* Result of power operator (``**``) was not normalised for negative values.\n\n* Built using Cython 0.27.2.\n\n\n1.4 (2017-09-16)\n----------------\n\n* Rebuilt using Cython 0.26.1 to improve support of Python 3.7.\n\n\n1.3 (2016-07-24)\n----------------\n\n* repair the faster instantiation from Decimal values in Python 3.6\n\n* avoid potential glitch for certain large numbers in normalisation under Python 2.x\n\n\n1.2 (2016-04-08)\n----------------\n\n* change hash function in Python 2.x to match that of ``fractions.Fraction``\n\n\n1.1 (2016-03-29)\n----------------\n\n* faster instantiation from float values\n\n* faster instantiation from Decimal values in Python 3.6\n\n\n1.0 (2015-09-10)\n----------------\n\n* ``Fraction.imag`` property could return non-zero\n\n* parsing strings with long fraction parts could use an incorrect scale\n\n\n0.7 (2014-10-09)\n----------------\n\n* faster instantiation from float and string values\n\n* fix test in Python 2.x\n\n\n0.6 (2014-10-09)\n----------------\n\n* faster normalisation (and thus instantiation)\n\n\n0.5 (2014-10-06)\n----------------\n\n* faster math operations\n\n\n0.4 (2014-10-06)\n----------------\n\n* enable legacy division support in Python 2.x\n\n\n0.3 (2014-10-05)\n----------------\n\n* minor behavioural fixes in corner cases under Python 2.x\n (now passes all test in Py2.7 as well)\n\n\n0.2 (2014-10-03)\n----------------\n\n* cache hash value of Fractions\n\n\n0.1 (2014-09-24)\n----------------\n\n* initial public release\n",
"bugtrack_url": null,
"license": "PSF-2.0",
"summary": "Fast fractions data type for rational numbers. Cythonized version of 'fractions.Fraction'.",
"version": "1.22",
"project_urls": {
"Homepage": "https://github.com/scoder/quicktions"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "f00f06caad47a8682b3c6ff33e39e313cf28859414d36bc3152304219fc861bc",
"md5": "0f7b27580a1775b9ab932ca83a8539cf",
"sha256": "14b36150146b684e80ed68dd8e330a26f37ba82242e4a05d5564e74e05a471cd"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0f7b27580a1775b9ab932ca83a8539cf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 122000,
"upload_time": "2025-08-25T20:21:55",
"upload_time_iso_8601": "2025-08-25T20:21:55.218608Z",
"url": "https://files.pythonhosted.org/packages/f0/0f/06caad47a8682b3c6ff33e39e313cf28859414d36bc3152304219fc861bc/quicktions-1.22-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ecfe7ddd9609d7af4053d7bdd2226c8b2225944d2ee5efd1cf2296378e26bb99",
"md5": "33fec3a61d6b2110b9ef42ecdff0ec74",
"sha256": "9b4e9e36437fc018db08e831e7a2ae0bbeef804d1debb164bca9c1b82802303f"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "33fec3a61d6b2110b9ef42ecdff0ec74",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 133998,
"upload_time": "2025-08-25T20:21:56",
"upload_time_iso_8601": "2025-08-25T20:21:56.822135Z",
"url": "https://files.pythonhosted.org/packages/ec/fe/7ddd9609d7af4053d7bdd2226c8b2225944d2ee5efd1cf2296378e26bb99/quicktions-1.22-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6666b7e42a5cd84d76ae434223c2a772e129a75f8bc010a1f68ea3d9e6268587",
"md5": "1c9b701992051e3e486cdd2bd37090fd",
"sha256": "4370be56933bec5220ddeb825719fb12b50e46069feaf84dd5f4d02668dcd821"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "1c9b701992051e3e486cdd2bd37090fd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 155475,
"upload_time": "2025-08-25T20:21:58",
"upload_time_iso_8601": "2025-08-25T20:21:58.357216Z",
"url": "https://files.pythonhosted.org/packages/66/66/b7e42a5cd84d76ae434223c2a772e129a75f8bc010a1f68ea3d9e6268587/quicktions-1.22-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc73979ec5b2b7129bb126399dade54b2cb7984dd2516e1e8024d1f43a800823",
"md5": "b8cf0947d2cdbd955e4f85245136d629",
"sha256": "cbb8afa6c13057502a2c26665472e59f68b6a524b5a8e397530c2c25c0b249d7"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "b8cf0947d2cdbd955e4f85245136d629",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 133523,
"upload_time": "2025-08-25T20:21:59",
"upload_time_iso_8601": "2025-08-25T20:21:59.990430Z",
"url": "https://files.pythonhosted.org/packages/dc/73/979ec5b2b7129bb126399dade54b2cb7984dd2516e1e8024d1f43a800823/quicktions-1.22-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a7e02d9a4f82b92907512ed7326853d3301f93c2a65c7ef9a5c2fafda910b19",
"md5": "885c2284252310d53a06fdd88c095775",
"sha256": "1c1742098a9e8338a20e3df0b2237809ef95c7213d7147f63b5515459e6ff3e6"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "885c2284252310d53a06fdd88c095775",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 133519,
"upload_time": "2025-08-25T20:22:01",
"upload_time_iso_8601": "2025-08-25T20:22:01.453138Z",
"url": "https://files.pythonhosted.org/packages/5a/7e/02d9a4f82b92907512ed7326853d3301f93c2a65c7ef9a5c2fafda910b19/quicktions-1.22-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f259ebe19ea49358a39fdc861b27c2ac7a323b3caa11530e26663121b04b76dc",
"md5": "3883604fdb47a22afe53aba2cc7f1fec",
"sha256": "90a59d57182d28bd6ce1b7de8d8e4eef78d4f05b9f8831a68d8fdd700125a770"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "3883604fdb47a22afe53aba2cc7f1fec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 141169,
"upload_time": "2025-08-25T20:22:03",
"upload_time_iso_8601": "2025-08-25T20:22:03.006588Z",
"url": "https://files.pythonhosted.org/packages/f2/59/ebe19ea49358a39fdc861b27c2ac7a323b3caa11530e26663121b04b76dc/quicktions-1.22-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dacf3b94f016f083e7c485c93a91df5926f957c1bedc5b341193f187e3ebbb70",
"md5": "45d8183d92c17001616703af5da17c0b",
"sha256": "5d9a1e786feb52cc6ed330e2cbd296e9600c7bdd77afc440a1460e4e850a5b24"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "45d8183d92c17001616703af5da17c0b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 159691,
"upload_time": "2025-08-25T20:22:04",
"upload_time_iso_8601": "2025-08-25T20:22:04.701203Z",
"url": "https://files.pythonhosted.org/packages/da/cf/3b94f016f083e7c485c93a91df5926f957c1bedc5b341193f187e3ebbb70/quicktions-1.22-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2cc01b4700690c90434a8018857dabe2397a0e9ea962304b1d0cd890e9fdf720",
"md5": "f606c90186008745f8d43aef70fa0ecc",
"sha256": "459b8f2b5cb566d6476c62ae3934c696d31d03ba668116ec00ede20865434ec2"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "f606c90186008745f8d43aef70fa0ecc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 158439,
"upload_time": "2025-08-25T20:22:06",
"upload_time_iso_8601": "2025-08-25T20:22:06.030351Z",
"url": "https://files.pythonhosted.org/packages/2c/c0/1b4700690c90434a8018857dabe2397a0e9ea962304b1d0cd890e9fdf720/quicktions-1.22-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8f4bb7beb2cceee7b12ff6f27df4ebe7ffb4a2b2efe142e97c98861b2988be9",
"md5": "2628fb4475411605f6df692e9bcba08b",
"sha256": "8a797fc104c6be4cd1d5a3ec52dd879dc3b5047f5a0df5943a8071cf65e971da"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "2628fb4475411605f6df692e9bcba08b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 144898,
"upload_time": "2025-08-25T20:22:07",
"upload_time_iso_8601": "2025-08-25T20:22:07.684515Z",
"url": "https://files.pythonhosted.org/packages/a8/f4/bb7beb2cceee7b12ff6f27df4ebe7ffb4a2b2efe142e97c98861b2988be9/quicktions-1.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f62a65b484ed28f91ba0c6800d4f5ae3794e443d975180b8623564380fdc8c3f",
"md5": "916bde070eb2caa4485b78876b7bb6f9",
"sha256": "5ad5b53a92678f2223733e055bf4007617ad0057398859616065ec907d9f265d"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "916bde070eb2caa4485b78876b7bb6f9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 144875,
"upload_time": "2025-08-25T20:22:09",
"upload_time_iso_8601": "2025-08-25T20:22:09.360502Z",
"url": "https://files.pythonhosted.org/packages/f6/2a/65b484ed28f91ba0c6800d4f5ae3794e443d975180b8623564380fdc8c3f/quicktions-1.22-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58964ff279f33191e3257c5e3e831ab4bc8d359bd75b6981213e41f48b56d70b",
"md5": "1162279710b69eba48295dc486795dfd",
"sha256": "3723ddebdbd1ca0b62c6b42745fcad6b5e01f04bf33cad9efd74b00ea3b449bc"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "1162279710b69eba48295dc486795dfd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 145993,
"upload_time": "2025-08-25T20:22:10",
"upload_time_iso_8601": "2025-08-25T20:22:10.686377Z",
"url": "https://files.pythonhosted.org/packages/58/96/4ff279f33191e3257c5e3e831ab4bc8d359bd75b6981213e41f48b56d70b/quicktions-1.22-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e2acb5182a74e6303477941961d65961d57725c5f820ea0f2af8c8973c59066",
"md5": "fe2f1738d527ecd0955ff2d632fde091",
"sha256": "8fd20621ba99b03c175c5cd0d0cad6b45573aeed46b77b296c94222aac89ed73"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fe2f1738d527ecd0955ff2d632fde091",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 134359,
"upload_time": "2025-08-25T20:22:11",
"upload_time_iso_8601": "2025-08-25T20:22:11.902437Z",
"url": "https://files.pythonhosted.org/packages/3e/2a/cb5182a74e6303477941961d65961d57725c5f820ea0f2af8c8973c59066/quicktions-1.22-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86e7225b7f2b54605e6859c70854fbfc3f907713e679169a9eb7dd0598ec5098",
"md5": "0cf87ba70c20f7f93b5a26c12181e608",
"sha256": "290cc3bae61e061296b937129c8fa507627c0ab2127d66c5cd6c65acac28212b"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "0cf87ba70c20f7f93b5a26c12181e608",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 134210,
"upload_time": "2025-08-25T20:22:13",
"upload_time_iso_8601": "2025-08-25T20:22:13.176735Z",
"url": "https://files.pythonhosted.org/packages/86/e7/225b7f2b54605e6859c70854fbfc3f907713e679169a9eb7dd0598ec5098/quicktions-1.22-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9f75edb84872ffcd1f700a9a5345ca0c12d288eadee4d9520ad8ef88f9f0872",
"md5": "f77c5b36a9ca48fdf45bf5fefb1424e6",
"sha256": "db5f504ece5240df64122c6de600c5de5a47ec3e1e680ff4f149962ee8cb216b"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "f77c5b36a9ca48fdf45bf5fefb1424e6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 159103,
"upload_time": "2025-08-25T20:22:14",
"upload_time_iso_8601": "2025-08-25T20:22:14.735388Z",
"url": "https://files.pythonhosted.org/packages/e9/f7/5edb84872ffcd1f700a9a5345ca0c12d288eadee4d9520ad8ef88f9f0872/quicktions-1.22-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "542ac8a6595b5b733743d264f48084d648c6b22d005995061bc120bb3bae6d8a",
"md5": "cd57532ab4b81ec40f38d6aa640538bb",
"sha256": "9bb6bc06b06ee3c9f21c7c14e30ba6b8bc4ee1528e867bc46e744279ec2cab3d"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "cd57532ab4b81ec40f38d6aa640538bb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 145616,
"upload_time": "2025-08-25T20:22:16",
"upload_time_iso_8601": "2025-08-25T20:22:16.003427Z",
"url": "https://files.pythonhosted.org/packages/54/2a/c8a6595b5b733743d264f48084d648c6b22d005995061bc120bb3bae6d8a/quicktions-1.22-cp310-cp310-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f798cfb158d242d521c52b6b2270e2f4ea9b6ac6c2859b5989e4ab83f0574c70",
"md5": "1f8db7727a1d5e863195e4173aa5ff53",
"sha256": "2aea483aa6372fb2d4410692428e63dfa5c7fbfafbe4a1d6aae2c8b46cf68757"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1f8db7727a1d5e863195e4173aa5ff53",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 145108,
"upload_time": "2025-08-25T20:22:17",
"upload_time_iso_8601": "2025-08-25T20:22:17.199423Z",
"url": "https://files.pythonhosted.org/packages/f7/98/cfb158d242d521c52b6b2270e2f4ea9b6ac6c2859b5989e4ab83f0574c70/quicktions-1.22-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c5f8e6ac7aaf8579b75f74f28a5f6340cac0e5fc9bea8b6840f207e07b3bbc3",
"md5": "b7398c7d13a80d9d967dd89a82f34392",
"sha256": "1e79f97981880ec951510592ac084832111dd56bd13a8c4a993931c40342776a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "b7398c7d13a80d9d967dd89a82f34392",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 90895,
"upload_time": "2025-08-25T20:22:18",
"upload_time_iso_8601": "2025-08-25T20:22:18.388768Z",
"url": "https://files.pythonhosted.org/packages/0c/5f/8e6ac7aaf8579b75f74f28a5f6340cac0e5fc9bea8b6840f207e07b3bbc3/quicktions-1.22-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4980fa9c5089a60d13c2c1055839317fa13f2553fb9ba7c8bb8bd7677af8a950",
"md5": "14a0840434f25452ab406836e2669c53",
"sha256": "9e1f23cd45092f96177601c1fc038f23095452da58355f0b10085e93bfd931b3"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "14a0840434f25452ab406836e2669c53",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 100095,
"upload_time": "2025-08-25T20:22:19",
"upload_time_iso_8601": "2025-08-25T20:22:19.924000Z",
"url": "https://files.pythonhosted.org/packages/49/80/fa9c5089a60d13c2c1055839317fa13f2553fb9ba7c8bb8bd7677af8a950/quicktions-1.22-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6a71af920e8a0a618bf92333ea42652bd775bbdd38b3baec61a452f076b1173",
"md5": "ba67195ad6258c76ec2ba0596379e64c",
"sha256": "dcc956bf4b5aade8efb9e44241cd2a6e93740983f0624e9dbc776298a192edb8"
},
"downloads": -1,
"filename": "quicktions-1.22-cp310-cp310-win_arm64.whl",
"has_sig": false,
"md5_digest": "ba67195ad6258c76ec2ba0596379e64c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 85549,
"upload_time": "2025-08-25T20:22:21",
"upload_time_iso_8601": "2025-08-25T20:22:21.069180Z",
"url": "https://files.pythonhosted.org/packages/b6/a7/1af920e8a0a618bf92333ea42652bd775bbdd38b3baec61a452f076b1173/quicktions-1.22-cp310-cp310-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1794510cd4663e6d671e0d1d663cc8a52e0c50f9a831c1492a610f0dd9c2b0aa",
"md5": "0ee07df27915d5e074048b735321affa",
"sha256": "fd9d6941474ad7301f82985e7ac571724a6ceed65845525fb8da734dae69cf65"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0ee07df27915d5e074048b735321affa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 122918,
"upload_time": "2025-08-25T20:22:22",
"upload_time_iso_8601": "2025-08-25T20:22:22.495634Z",
"url": "https://files.pythonhosted.org/packages/17/94/510cd4663e6d671e0d1d663cc8a52e0c50f9a831c1492a610f0dd9c2b0aa/quicktions-1.22-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9cc9e653f2ee1d284ba1bbf8f6293eb649c2b84c773cc2e5054091c7518af877",
"md5": "21eaf8ee57272598014c639a7f22803d",
"sha256": "60a1270d3be35b6e093bc286220dfac45eac6cb04a165c85cc692ccf672f6b3d"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "21eaf8ee57272598014c639a7f22803d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 127412,
"upload_time": "2025-08-25T20:22:23",
"upload_time_iso_8601": "2025-08-25T20:22:23.637390Z",
"url": "https://files.pythonhosted.org/packages/9c/c9/e653f2ee1d284ba1bbf8f6293eb649c2b84c773cc2e5054091c7518af877/quicktions-1.22-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f4b223919554b18cd65ec8f08da3ed648c51b32bda7f9b21981b398f0280f10",
"md5": "1d734d5c0514ea9b715281fdcf7a70b1",
"sha256": "ac18a9a47a6b41caa5583f45c87563d3a3a1214b24c649574e626c17d327f809"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "1d734d5c0514ea9b715281fdcf7a70b1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 145875,
"upload_time": "2025-08-25T20:22:24",
"upload_time_iso_8601": "2025-08-25T20:22:24.791918Z",
"url": "https://files.pythonhosted.org/packages/9f/4b/223919554b18cd65ec8f08da3ed648c51b32bda7f9b21981b398f0280f10/quicktions-1.22-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e18ed15d9522dbc6cfd309af2862545dcc5f55be623f0cf63d65b30d97743d7c",
"md5": "0f230078cb26a8e23b61837ecace4784",
"sha256": "521d3ae7b9f917876b8ba0206367be59e388a0acae6dea486d905e0b9869b195"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "0f230078cb26a8e23b61837ecace4784",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 126803,
"upload_time": "2025-08-25T20:22:25",
"upload_time_iso_8601": "2025-08-25T20:22:25.963081Z",
"url": "https://files.pythonhosted.org/packages/e1/8e/d15d9522dbc6cfd309af2862545dcc5f55be623f0cf63d65b30d97743d7c/quicktions-1.22-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f62b2c642dc10118e36c80795f18549f46dbce83b51f2561f5ca28ec147213b1",
"md5": "b75857cf8dc4c9fbeb3a7ec62361c164",
"sha256": "52c930e9e4f7b44dbde12f60a809e791e6244d850eacfe4af4a924feb21300a4"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "b75857cf8dc4c9fbeb3a7ec62361c164",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 126792,
"upload_time": "2025-08-25T20:22:27",
"upload_time_iso_8601": "2025-08-25T20:22:27.091308Z",
"url": "https://files.pythonhosted.org/packages/f6/2b/2c642dc10118e36c80795f18549f46dbce83b51f2561f5ca28ec147213b1/quicktions-1.22-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8bcaf872f189c5c97bd36bfa3dc5a6ec8c729b7b692a74064b505b671f51278",
"md5": "820908e5f652c97ab84998ed754c23d6",
"sha256": "3f6b7c4752d00bff0e4b42d2c2e933ce92ab2f5044596696ef98bfbbf0721451"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "820908e5f652c97ab84998ed754c23d6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 126310,
"upload_time": "2025-08-25T20:22:28",
"upload_time_iso_8601": "2025-08-25T20:22:28.729899Z",
"url": "https://files.pythonhosted.org/packages/a8/bc/af872f189c5c97bd36bfa3dc5a6ec8c729b7b692a74064b505b671f51278/quicktions-1.22-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23b731cbba6e35668a432e9b3dea9a9d2b5ce640bab9125dbae901d79f23eb57",
"md5": "aaa61dd9f029e5e50b284b165638b418",
"sha256": "5e44acc36018ecb47d806a7b8f7bf4504137d71ad0e74fc6cb989a78efc14fa6"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "aaa61dd9f029e5e50b284b165638b418",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 149589,
"upload_time": "2025-08-25T20:22:30",
"upload_time_iso_8601": "2025-08-25T20:22:30.333379Z",
"url": "https://files.pythonhosted.org/packages/23/b7/31cbba6e35668a432e9b3dea9a9d2b5ce640bab9125dbae901d79f23eb57/quicktions-1.22-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f3cb2345e0afe1c2172cf4761c7c3d46bf36a9eb793db434835cfbb4af83e77",
"md5": "313cdc7ffa33ac56e7169a9de44b39a7",
"sha256": "e88d9632a9cd24ab314284fc4d2001a3bb9b8c016131a3f7116fe17c5f0474e0"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "313cdc7ffa33ac56e7169a9de44b39a7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 148812,
"upload_time": "2025-08-25T20:22:33",
"upload_time_iso_8601": "2025-08-25T20:22:33.136960Z",
"url": "https://files.pythonhosted.org/packages/7f/3c/b2345e0afe1c2172cf4761c7c3d46bf36a9eb793db434835cfbb4af83e77/quicktions-1.22-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af4b4a1371fef733097cfcfa549faca4c2e958a94a8360cc55cb4a10319b5b9e",
"md5": "7e583ecb49c89e2a5c0cd4614971d3c4",
"sha256": "679072f1e3458f3122f86c316dfd949625915db351c9b7a52d149572217e6d61"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "7e583ecb49c89e2a5c0cd4614971d3c4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 136351,
"upload_time": "2025-08-25T20:22:34",
"upload_time_iso_8601": "2025-08-25T20:22:34.407210Z",
"url": "https://files.pythonhosted.org/packages/af/4b/4a1371fef733097cfcfa549faca4c2e958a94a8360cc55cb4a10319b5b9e/quicktions-1.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3dd403dd0527cb5c7696f2ab06004b066132554e2230ab8686a96ef93e64c66",
"md5": "7a1c2688ff3d8ac5c752cd980508f7b0",
"sha256": "efdc46819faf26ad6d21c9a0e00a7ab622b5e8a3485313f2619f45b23950e1cf"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "7a1c2688ff3d8ac5c752cd980508f7b0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 136343,
"upload_time": "2025-08-25T20:22:35",
"upload_time_iso_8601": "2025-08-25T20:22:35.688757Z",
"url": "https://files.pythonhosted.org/packages/b3/dd/403dd0527cb5c7696f2ab06004b066132554e2230ab8686a96ef93e64c66/quicktions-1.22-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5fd95e0172c3af6a7dee2231b5c721e839412669f73164492c6151ba51f03d4",
"md5": "c54066380a2d82718354361c6840f80c",
"sha256": "36fb071be5547c03dd8e1a9b62f15618f173fc1637e063bdbf9d2f84584ee32d"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "c54066380a2d82718354361c6840f80c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 136568,
"upload_time": "2025-08-25T20:22:37",
"upload_time_iso_8601": "2025-08-25T20:22:37.025927Z",
"url": "https://files.pythonhosted.org/packages/c5/fd/95e0172c3af6a7dee2231b5c721e839412669f73164492c6151ba51f03d4/quicktions-1.22-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "989dd18d7b3647ea773ff7d9856864a09fcd2bb89087780ded81a7757bad10c8",
"md5": "02b7a0661c654ebda89ff56cc8ddebfa",
"sha256": "1ceed52353a13f82a2787ec2a27535b7fcd9803a9a81323264ffe4dab636b217"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "02b7a0661c654ebda89ff56cc8ddebfa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 127193,
"upload_time": "2025-08-25T20:22:38",
"upload_time_iso_8601": "2025-08-25T20:22:38.789374Z",
"url": "https://files.pythonhosted.org/packages/98/9d/d18d7b3647ea773ff7d9856864a09fcd2bb89087780ded81a7757bad10c8/quicktions-1.22-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23d421304b7981ee9b80ac72a97fe25731485f9d8f1100f3541371549397a692",
"md5": "fdad11e3db41e1e7f2df0678caeb83e7",
"sha256": "159fc65a8a52ef1e38ca30f2b153418f8ce8d2b9da5b3ef0bec472d80b082a85"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "fdad11e3db41e1e7f2df0678caeb83e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 124212,
"upload_time": "2025-08-25T20:22:39",
"upload_time_iso_8601": "2025-08-25T20:22:39.923323Z",
"url": "https://files.pythonhosted.org/packages/23/d4/21304b7981ee9b80ac72a97fe25731485f9d8f1100f3541371549397a692/quicktions-1.22-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3cd614fccfea2f9e0fc7f8b4f12233df319dc2aecdeabe972582c54ac3b37a12",
"md5": "c3f40de190eb18e64b061fe0b1dc9a27",
"sha256": "b40871cf020a1428170ad253d96c98628405b1c227128f635466f994f3375710"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "c3f40de190eb18e64b061fe0b1dc9a27",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 148828,
"upload_time": "2025-08-25T20:22:41",
"upload_time_iso_8601": "2025-08-25T20:22:41.233945Z",
"url": "https://files.pythonhosted.org/packages/3c/d6/14fccfea2f9e0fc7f8b4f12233df319dc2aecdeabe972582c54ac3b37a12/quicktions-1.22-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9b3140df378ca5045dd815251582edc105018a3ece06d350033e931eeeed823",
"md5": "ec4955c29523afabf34e66369eb531dd",
"sha256": "e5c8f069f6bb9880502a7233e964812b7efbac039f1d5dff1cd20e6d92a02b97"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "ec4955c29523afabf34e66369eb531dd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 134798,
"upload_time": "2025-08-25T20:22:42",
"upload_time_iso_8601": "2025-08-25T20:22:42.860729Z",
"url": "https://files.pythonhosted.org/packages/c9/b3/140df378ca5045dd815251582edc105018a3ece06d350033e931eeeed823/quicktions-1.22-cp311-cp311-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd99e57f23f9118ce5c5cc5aeff3228b1496a4abd6433acf85589db9331ddba4",
"md5": "fefc2a970c929395b91344b00582dd97",
"sha256": "9010fa038875c6c7da12fedb2cf772b8d51b506f6f3c09192a6ab98f137606b3"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fefc2a970c929395b91344b00582dd97",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 136574,
"upload_time": "2025-08-25T20:22:44",
"upload_time_iso_8601": "2025-08-25T20:22:44.205844Z",
"url": "https://files.pythonhosted.org/packages/fd/99/e57f23f9118ce5c5cc5aeff3228b1496a4abd6433acf85589db9331ddba4/quicktions-1.22-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89b2676f4a80db19f507564b6ad83cb2bdac6e8d2a47de0777a7514bed84c9c6",
"md5": "96bd8dfc81fc6fb2acae8137af81ffea",
"sha256": "11c7871f01ce232b09bab496b188aeaa282c277abad694fc7a1f8820406c63f5"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "96bd8dfc81fc6fb2acae8137af81ffea",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 89880,
"upload_time": "2025-08-25T20:22:45",
"upload_time_iso_8601": "2025-08-25T20:22:45.408183Z",
"url": "https://files.pythonhosted.org/packages/89/b2/676f4a80db19f507564b6ad83cb2bdac6e8d2a47de0777a7514bed84c9c6/quicktions-1.22-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa8350fe08961bbb87a1b45e51f22b7e169ab8c2b5f419deda07bece6009af33",
"md5": "8f8986e776ca0619007a0c59ea5bd3e6",
"sha256": "547b28524d0282ecc4bdf000ec7ee0ec122bcd82f7a232cd2489d5b30c95c136"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "8f8986e776ca0619007a0c59ea5bd3e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 100277,
"upload_time": "2025-08-25T20:22:46",
"upload_time_iso_8601": "2025-08-25T20:22:46.543122Z",
"url": "https://files.pythonhosted.org/packages/aa/83/50fe08961bbb87a1b45e51f22b7e169ab8c2b5f419deda07bece6009af33/quicktions-1.22-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b85311e9d43901eefe609b3a8e60bf5ee37574305d15a5f9f99ff3ae28239f6",
"md5": "91e0359369b4b49f639f346adf28c93f",
"sha256": "cb521c2b0241fb7dae2f57b8713a3bba64cbc4ce1293cfb3531e4addfebdeb13"
},
"downloads": -1,
"filename": "quicktions-1.22-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "91e0359369b4b49f639f346adf28c93f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 85105,
"upload_time": "2025-08-25T20:22:47",
"upload_time_iso_8601": "2025-08-25T20:22:47.582184Z",
"url": "https://files.pythonhosted.org/packages/9b/85/311e9d43901eefe609b3a8e60bf5ee37574305d15a5f9f99ff3ae28239f6/quicktions-1.22-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4f7dc56daf178aa97257c260a8ba6546375c25e9fa41d7a0d7dd07ab48c2288c",
"md5": "ae0d9626f37a6f8d10c23f298018ffc4",
"sha256": "d573e35a011a345c4fb743f879480d041b38ac079de7332968d29c23442b2f3e"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "ae0d9626f37a6f8d10c23f298018ffc4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 124884,
"upload_time": "2025-08-25T20:22:48",
"upload_time_iso_8601": "2025-08-25T20:22:48.685139Z",
"url": "https://files.pythonhosted.org/packages/4f/7d/c56daf178aa97257c260a8ba6546375c25e9fa41d7a0d7dd07ab48c2288c/quicktions-1.22-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3e1b87cedcab935a858247f8fe325eaaf51a95c22b1e3e3a8aea9f7a0bdb5d7a",
"md5": "2b2f345b73f1c6733661751409c57932",
"sha256": "974eda724995db975422deb0d0f2fa2763b8c4d52bd57280723353724f5f96d8"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2b2f345b73f1c6733661751409c57932",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 147283,
"upload_time": "2025-08-25T20:22:50",
"upload_time_iso_8601": "2025-08-25T20:22:50.394593Z",
"url": "https://files.pythonhosted.org/packages/3e/1b/87cedcab935a858247f8fe325eaaf51a95c22b1e3e3a8aea9f7a0bdb5d7a/quicktions-1.22-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d2d91fbf6e3853d0ecd7aa4bc7c5780fc82f32c7d36767f0a2a1d5c646973709",
"md5": "86f670b2ec32ff2ec967243d3099c9fd",
"sha256": "b1c6858d94e63241da2c57a2392d351105ba71ee2796aa30b7740b540d0f019b"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "86f670b2ec32ff2ec967243d3099c9fd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 144100,
"upload_time": "2025-08-25T20:22:51",
"upload_time_iso_8601": "2025-08-25T20:22:51.790331Z",
"url": "https://files.pythonhosted.org/packages/d2/d9/1fbf6e3853d0ecd7aa4bc7c5780fc82f32c7d36767f0a2a1d5c646973709/quicktions-1.22-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd012e15b93c21aadb52f078862b003994e43b1406fe16103594335280e3ae6d",
"md5": "2a9854b5d41d28c62786a928be44fb9c",
"sha256": "15a98a0052fcb9be4cc0a949b7c3199b7e046e8f06c5b36664abaf7a49a923dc"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "2a9854b5d41d28c62786a928be44fb9c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 125368,
"upload_time": "2025-08-25T20:22:52",
"upload_time_iso_8601": "2025-08-25T20:22:52.993030Z",
"url": "https://files.pythonhosted.org/packages/dd/01/2e15b93c21aadb52f078862b003994e43b1406fe16103594335280e3ae6d/quicktions-1.22-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c1a90bdbe65f7b6daca8aa2a2e8e62696165da694fee4ee4de416dd594fa969c",
"md5": "f616e71db614eaa2a2458d0af8ad0b18",
"sha256": "69664834f3608f8d9d26231aff5bde9d908d61b7722cbc786ab4dc37c0ca5af1"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "f616e71db614eaa2a2458d0af8ad0b18",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 125357,
"upload_time": "2025-08-25T20:22:54",
"upload_time_iso_8601": "2025-08-25T20:22:54.984011Z",
"url": "https://files.pythonhosted.org/packages/c1/a9/0bdbe65f7b6daca8aa2a2e8e62696165da694fee4ee4de416dd594fa969c/quicktions-1.22-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2294c2b30da5b1d8521a619c78f9e7354c745057fcfb195f2cb077247c3def21",
"md5": "7e137c552785289209ed43994177a3e1",
"sha256": "ece5d729672a527acedb098fd38e2e98dd92ff749195af1ae2830f177ca91392"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "7e137c552785289209ed43994177a3e1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 126091,
"upload_time": "2025-08-25T20:22:56",
"upload_time_iso_8601": "2025-08-25T20:22:56.531472Z",
"url": "https://files.pythonhosted.org/packages/22/94/c2b30da5b1d8521a619c78f9e7354c745057fcfb195f2cb077247c3def21/quicktions-1.22-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9dc24cfd23139b05f62ddae1dbfa7cda691a998e2325b3df2c95a7c14c3658b",
"md5": "b4530e7c6f4249aa110c08423418b83d",
"sha256": "2ede8cfce32f802910b3cf9133bf654278f235a002c886d900be42d80b2378c6"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "b4530e7c6f4249aa110c08423418b83d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 146341,
"upload_time": "2025-08-25T20:22:57",
"upload_time_iso_8601": "2025-08-25T20:22:57.679186Z",
"url": "https://files.pythonhosted.org/packages/d9/dc/24cfd23139b05f62ddae1dbfa7cda691a998e2325b3df2c95a7c14c3658b/quicktions-1.22-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9921b84b9226a8fa2f8493ca0feae1294602736685c629586f5dad8bcffe697",
"md5": "f2bc2b36fe2e7a3e0c3e06c5ef3a4d7a",
"sha256": "0dceb2fd327ac09027243f428a89d9767abb4aa9f295302327b13ad61f1976f1"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "f2bc2b36fe2e7a3e0c3e06c5ef3a4d7a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 145001,
"upload_time": "2025-08-25T20:22:59",
"upload_time_iso_8601": "2025-08-25T20:22:59.152389Z",
"url": "https://files.pythonhosted.org/packages/b9/92/1b84b9226a8fa2f8493ca0feae1294602736685c629586f5dad8bcffe697/quicktions-1.22-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd283f0b4a6f7e05afd608ddbe261eadf38ae484b20a1b15698ca64806757856",
"md5": "767bd213c4536d1c3a1395b941cc065c",
"sha256": "bef39c61a1a83548bcda2cfd4e474758e9188d5d2e90a7cf6ee0b3429100a1a8"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "767bd213c4536d1c3a1395b941cc065c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 135505,
"upload_time": "2025-08-25T20:23:00",
"upload_time_iso_8601": "2025-08-25T20:23:00.528208Z",
"url": "https://files.pythonhosted.org/packages/dd/28/3f0b4a6f7e05afd608ddbe261eadf38ae484b20a1b15698ca64806757856/quicktions-1.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5fa213e50da87b29a9ead8ef9140c5309cbef970de32a44466349c30fd3ddbdb",
"md5": "65b107b8a262e1cccaa5f07c3a7038a2",
"sha256": "d4d7eec3d98786bb3171f55f642bf3c62c970875e7fed8f3a364c6bd2145f3c9"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "65b107b8a262e1cccaa5f07c3a7038a2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 135477,
"upload_time": "2025-08-25T20:23:01",
"upload_time_iso_8601": "2025-08-25T20:23:01.789756Z",
"url": "https://files.pythonhosted.org/packages/5f/a2/13e50da87b29a9ead8ef9140c5309cbef970de32a44466349c30fd3ddbdb/quicktions-1.22-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f7e074f2ef0dbdece909afe1633b75094816c17c931e4f47f99941bff3f90c6",
"md5": "ae24a3d7ef94aec0126c75412d7934c0",
"sha256": "933e5adc088ad5e49b59107118e6039d2a981c5126c14868a24dc71976138a11"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "ae24a3d7ef94aec0126c75412d7934c0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 134250,
"upload_time": "2025-08-25T20:23:03",
"upload_time_iso_8601": "2025-08-25T20:23:03.484215Z",
"url": "https://files.pythonhosted.org/packages/5f/7e/074f2ef0dbdece909afe1633b75094816c17c931e4f47f99941bff3f90c6/quicktions-1.22-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1fce8d3af3ca9435142b0aa7851dec88c975df2f90aaa3e5bc7e606473b9dc08",
"md5": "89bfc3c77838d699ada0e6b0b164888a",
"sha256": "ef02594a963cb4b5ba7e1b01ae28c082e9f197aeb9717b64d2baf4e2d6cfbf22"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "89bfc3c77838d699ada0e6b0b164888a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 125917,
"upload_time": "2025-08-25T20:23:04",
"upload_time_iso_8601": "2025-08-25T20:23:04.715849Z",
"url": "https://files.pythonhosted.org/packages/1f/ce/8d3af3ca9435142b0aa7851dec88c975df2f90aaa3e5bc7e606473b9dc08/quicktions-1.22-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2aaea374ea9a5ab3984b8c2bd26c1fb7f2b74c99d5a91d68f7246af86374653f",
"md5": "b253150d73071847aa6bf0f5d77cd50d",
"sha256": "c5bc76936a17c4415130c616c1b232eac46a6e3f2c40e466f31f6f5a794819d0"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b253150d73071847aa6bf0f5d77cd50d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 128975,
"upload_time": "2025-08-25T20:23:06",
"upload_time_iso_8601": "2025-08-25T20:23:06.455539Z",
"url": "https://files.pythonhosted.org/packages/2a/ae/a374ea9a5ab3984b8c2bd26c1fb7f2b74c99d5a91d68f7246af86374653f/quicktions-1.22-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c258928cf7326f8e234a4fd66c02e4c6373800d760b1d5ad899c0cd246bb250a",
"md5": "ee1d0ea25a9c60ab49e980d31c484e69",
"sha256": "e883e41dce39f4f92218681f7b512d04bced91c747baec08f95e7fae826c1268"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "ee1d0ea25a9c60ab49e980d31c484e69",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 145379,
"upload_time": "2025-08-25T20:23:07",
"upload_time_iso_8601": "2025-08-25T20:23:07.732481Z",
"url": "https://files.pythonhosted.org/packages/c2/58/928cf7326f8e234a4fd66c02e4c6373800d760b1d5ad899c0cd246bb250a/quicktions-1.22-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95b22562b462023e32d9928d9e15522556cbad98e375e70dc54f966f1b676589",
"md5": "14551057eecedd84779a1d64a05e5d91",
"sha256": "908597c225dc1924b6449cb7e27c779a2053cbd01949507b627c6373ab937d5f"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "14551057eecedd84779a1d64a05e5d91",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 132980,
"upload_time": "2025-08-25T20:23:09",
"upload_time_iso_8601": "2025-08-25T20:23:09.854922Z",
"url": "https://files.pythonhosted.org/packages/95/b2/2562b462023e32d9928d9e15522556cbad98e375e70dc54f966f1b676589/quicktions-1.22-cp312-cp312-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1efd4f6b4488c40c89d3564144efbe7aca38b6a38725e804d587763365103a8",
"md5": "b286750317ef058575f58fb2c4fc34c8",
"sha256": "5674a528e5dcfc1dccf7386d594fc4903fbd17b0e16c5cb114108cf2f111f9f9"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b286750317ef058575f58fb2c4fc34c8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 135814,
"upload_time": "2025-08-25T20:23:11",
"upload_time_iso_8601": "2025-08-25T20:23:11.492331Z",
"url": "https://files.pythonhosted.org/packages/d1/ef/d4f6b4488c40c89d3564144efbe7aca38b6a38725e804d587763365103a8/quicktions-1.22-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f5856abfb46ab2f236821fb9c326869c9fc497559ef176f3e090298b8a3ff1c",
"md5": "693dc2d2a0636982d0e36baed169f3eb",
"sha256": "75c273257045bb6619232ba06367edb1a7b71b41616a7983fbb02dd82ab9247f"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "693dc2d2a0636982d0e36baed169f3eb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 92113,
"upload_time": "2025-08-25T20:23:13",
"upload_time_iso_8601": "2025-08-25T20:23:13.192819Z",
"url": "https://files.pythonhosted.org/packages/0f/58/56abfb46ab2f236821fb9c326869c9fc497559ef176f3e090298b8a3ff1c/quicktions-1.22-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "36bfb0cdbcad80ed6da4954f547d5779e2ea95023f7d3d080e4eff843144c0bf",
"md5": "4544960244c8858ff0a49938dafe9c6c",
"sha256": "9ca163a70f80be4c15077883e5ab38c457410e08c26683243c636103c43edcc5"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "4544960244c8858ff0a49938dafe9c6c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 102305,
"upload_time": "2025-08-25T20:23:14",
"upload_time_iso_8601": "2025-08-25T20:23:14.478768Z",
"url": "https://files.pythonhosted.org/packages/36/bf/b0cdbcad80ed6da4954f547d5779e2ea95023f7d3d080e4eff843144c0bf/quicktions-1.22-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22f6dcfc9c1b163f310a6d7f2c5b84f03d9133ad57d30c9fca5e98fd715afff2",
"md5": "ff6d81c2417eb283f68c1873ec265df6",
"sha256": "59573fc6c59b18b42c70ab29c1c5a100a54969371ce5854584eca55b08eab344"
},
"downloads": -1,
"filename": "quicktions-1.22-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "ff6d81c2417eb283f68c1873ec265df6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 85692,
"upload_time": "2025-08-25T20:23:16",
"upload_time_iso_8601": "2025-08-25T20:23:16.066929Z",
"url": "https://files.pythonhosted.org/packages/22/f6/dcfc9c1b163f310a6d7f2c5b84f03d9133ad57d30c9fca5e98fd715afff2/quicktions-1.22-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4beac3c5df8e3f3d54c0a86941a570aa63979920104addb07d45ba06de461f2a",
"md5": "f4ea0d17b2d44b8312cd85056dcf0a9e",
"sha256": "e61df31231058cf82a42c23ddbaeab7acbf363490811f90878ac2d76eb1b033a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "f4ea0d17b2d44b8312cd85056dcf0a9e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 123983,
"upload_time": "2025-08-25T20:23:17",
"upload_time_iso_8601": "2025-08-25T20:23:17.169369Z",
"url": "https://files.pythonhosted.org/packages/4b/ea/c3c5df8e3f3d54c0a86941a570aa63979920104addb07d45ba06de461f2a/quicktions-1.22-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80451c2016bb8465f4f34476ed75b8c862e63f68c70ea4c21e2ae09d157d2768",
"md5": "eb8451b1f8a0a514909ae4cf5f498cc5",
"sha256": "56919722399c495fe793d77b07c04f6065762de1db63218f0b6d918b79d83c5a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "eb8451b1f8a0a514909ae4cf5f498cc5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 146836,
"upload_time": "2025-08-25T20:23:18",
"upload_time_iso_8601": "2025-08-25T20:23:18.449537Z",
"url": "https://files.pythonhosted.org/packages/80/45/1c2016bb8465f4f34476ed75b8c862e63f68c70ea4c21e2ae09d157d2768/quicktions-1.22-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67a9a4129303e0c79049d526029c36566e515d8d459d6c73356cb864fbdf69bf",
"md5": "de3ed5ef2e35f5673bca2216b010c74f",
"sha256": "16975472cc96b922a67eb99d4e8f02d672c2acc609c6e5a165433bccdc1c6206"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "de3ed5ef2e35f5673bca2216b010c74f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 144206,
"upload_time": "2025-08-25T20:23:20",
"upload_time_iso_8601": "2025-08-25T20:23:20.236932Z",
"url": "https://files.pythonhosted.org/packages/67/a9/a4129303e0c79049d526029c36566e515d8d459d6c73356cb864fbdf69bf/quicktions-1.22-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64627c999130133fca86216e41fa14f935c9b11041113432984af4118e697c48",
"md5": "00d3e35e9cc90b5c6dc91f456e51c6d9",
"sha256": "ecfffd0552ed2bd0e7990d0511b0820e55b3685a2e11ac008457e6783bad8bd9"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "00d3e35e9cc90b5c6dc91f456e51c6d9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 126075,
"upload_time": "2025-08-25T20:23:21",
"upload_time_iso_8601": "2025-08-25T20:23:21.554408Z",
"url": "https://files.pythonhosted.org/packages/64/62/7c999130133fca86216e41fa14f935c9b11041113432984af4118e697c48/quicktions-1.22-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6da43c224f3e4e204a6907f24b69bf4fedee6c69a6b13344b9985f413615c4d6",
"md5": "d70c3c3faded46b947ec90365bb4a515",
"sha256": "4956b41c45227492db6d2fd27ad4d0a1d2137a44c42eb2412316286908e9e23e"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "d70c3c3faded46b947ec90365bb4a515",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 126069,
"upload_time": "2025-08-25T20:23:22",
"upload_time_iso_8601": "2025-08-25T20:23:22.757407Z",
"url": "https://files.pythonhosted.org/packages/6d/a4/3c224f3e4e204a6907f24b69bf4fedee6c69a6b13344b9985f413615c4d6/quicktions-1.22-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93b19559b30172af9c60a50f4d66bd28ea50a0e9d6e8c9d3bd26516bd64a5582",
"md5": "b304e7156e453fba5e090bfb8d660396",
"sha256": "2c04940e4a5c994dfbb1055f1e73588fd331ffc67e84b6c1374de4b06fe7cd98"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "b304e7156e453fba5e090bfb8d660396",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 126011,
"upload_time": "2025-08-25T20:23:24",
"upload_time_iso_8601": "2025-08-25T20:23:24.113082Z",
"url": "https://files.pythonhosted.org/packages/93/b1/9559b30172af9c60a50f4d66bd28ea50a0e9d6e8c9d3bd26516bd64a5582/quicktions-1.22-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aac499822b30cfb297fb5409125ae3ef903f18233d9612e834d1ee6fb51632e5",
"md5": "8a450d7c162779ae9229f2f21b355813",
"sha256": "ea346e6713ac3aac48ac1540a5117988f5ba65cdefdea80eaee4ce1df60e9864"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "8a450d7c162779ae9229f2f21b355813",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 144147,
"upload_time": "2025-08-25T20:23:25",
"upload_time_iso_8601": "2025-08-25T20:23:25.412662Z",
"url": "https://files.pythonhosted.org/packages/aa/c4/99822b30cfb297fb5409125ae3ef903f18233d9612e834d1ee6fb51632e5/quicktions-1.22-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8d066facb6c5a41884ff9838407e22184f44c0bb5b9e6dc4fbbf99e1a948413",
"md5": "1ef56ff27d0e257ebd21867ef502b39b",
"sha256": "a12322759fa398289523f336a4314c6557399bd8151808b68936eb5a944c83b4"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "1ef56ff27d0e257ebd21867ef502b39b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 143071,
"upload_time": "2025-08-25T20:23:26",
"upload_time_iso_8601": "2025-08-25T20:23:26.779657Z",
"url": "https://files.pythonhosted.org/packages/d8/d0/66facb6c5a41884ff9838407e22184f44c0bb5b9e6dc4fbbf99e1a948413/quicktions-1.22-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6294f3a1f7359aa792ce112070fcd9678c84070113c50d3e5f392e081ecb72c6",
"md5": "a9a8a680a20abf7f6c33f371c72c4a20",
"sha256": "38f716b326230d76f2bac5e8bdcef9144cc682352a4461706e160b8a8d9c7bd0"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "a9a8a680a20abf7f6c33f371c72c4a20",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 135620,
"upload_time": "2025-08-25T20:23:28",
"upload_time_iso_8601": "2025-08-25T20:23:28.134613Z",
"url": "https://files.pythonhosted.org/packages/62/94/f3a1f7359aa792ce112070fcd9678c84070113c50d3e5f392e081ecb72c6/quicktions-1.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a01ab4a4af190fde46a35d7d29153af685c834f3602531a35f4cdb607cb6eaaa",
"md5": "d3d04560914ea4950fadfcc1014bd035",
"sha256": "58128c233032baaddfb06c5475f56f150cb8d8dae2026232f09113702ff30a53"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "d3d04560914ea4950fadfcc1014bd035",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 135607,
"upload_time": "2025-08-25T20:23:29",
"upload_time_iso_8601": "2025-08-25T20:23:29.752018Z",
"url": "https://files.pythonhosted.org/packages/a0/1a/b4a4af190fde46a35d7d29153af685c834f3602531a35f4cdb607cb6eaaa/quicktions-1.22-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "361c17480183e287ec1e8a6d3eec6a6263f9e17dcca91d301b4879be01145da9",
"md5": "7942cffe1817fa61feed181233cff4c2",
"sha256": "ebd641abd65bf0c4de0b2519ef14497420df580c24113b11f5ff20ca3f754607"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "7942cffe1817fa61feed181233cff4c2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 133244,
"upload_time": "2025-08-25T20:23:31",
"upload_time_iso_8601": "2025-08-25T20:23:31.468681Z",
"url": "https://files.pythonhosted.org/packages/36/1c/17480183e287ec1e8a6d3eec6a6263f9e17dcca91d301b4879be01145da9/quicktions-1.22-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2810f0647f9033c7164267fe297d6e7b68c9d5316bbd604b2c7fb1ae7f865d37",
"md5": "81eaffd24cf070fefb32f85942a4042c",
"sha256": "352b11f80a43c070d6ca1f88a86cef924f6175290c0c4df5c39f887779772c61"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "81eaffd24cf070fefb32f85942a4042c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 126772,
"upload_time": "2025-08-25T20:23:32",
"upload_time_iso_8601": "2025-08-25T20:23:32.740473Z",
"url": "https://files.pythonhosted.org/packages/28/10/f0647f9033c7164267fe297d6e7b68c9d5316bbd604b2c7fb1ae7f865d37/quicktions-1.22-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "078d3562f5b2752e94b43480e0887a1a57fe7d1797fd96aebc4aa1925c5fcf9f",
"md5": "deab957262e4dc4d6507c089ff0d2613",
"sha256": "d664eb5611c0ae63994c1595cddea7d01ca90ac40ca52a844188ee094562d6a6"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "deab957262e4dc4d6507c089ff0d2613",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 128698,
"upload_time": "2025-08-25T20:23:33",
"upload_time_iso_8601": "2025-08-25T20:23:33.911373Z",
"url": "https://files.pythonhosted.org/packages/07/8d/3562f5b2752e94b43480e0887a1a57fe7d1797fd96aebc4aa1925c5fcf9f/quicktions-1.22-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8666eb464eea9e429602f3e1bba38f49f52f821e04e3fa631e0de52ff2d194bd",
"md5": "6c7e9205c8ea5568ca62451b1277f6f0",
"sha256": "51808d4220a0a72984578be424cc06eae6f06975e185efb01172331fda0ff998"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "6c7e9205c8ea5568ca62451b1277f6f0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 144424,
"upload_time": "2025-08-25T20:23:35",
"upload_time_iso_8601": "2025-08-25T20:23:35.102070Z",
"url": "https://files.pythonhosted.org/packages/86/66/eb464eea9e429602f3e1bba38f49f52f821e04e3fa631e0de52ff2d194bd/quicktions-1.22-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "841566c1da9233f6505d858aac090f9908c40ff027d7baa31e492191bccc4bd7",
"md5": "1bed990bf2fa566a55b5cb1a5c0aaa37",
"sha256": "8d6401d9296db0178390383c0b425e162d2374986067ddf04fa8a16ed33e2aa4"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "1bed990bf2fa566a55b5cb1a5c0aaa37",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 132204,
"upload_time": "2025-08-25T20:23:36",
"upload_time_iso_8601": "2025-08-25T20:23:36.307960Z",
"url": "https://files.pythonhosted.org/packages/84/15/66c1da9233f6505d858aac090f9908c40ff027d7baa31e492191bccc4bd7/quicktions-1.22-cp313-cp313-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0679d050146d39ee338b8e2b6ab6b6901487911cd3d81fec589c33eb7a41bd22",
"md5": "6b88ed06d7f3af9525b40b22d9615fbf",
"sha256": "da4cea1562db146db37a85031fd8e6d6a7fbebd61aecb70f4b5c762e4e26054d"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6b88ed06d7f3af9525b40b22d9615fbf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 136305,
"upload_time": "2025-08-25T20:23:37",
"upload_time_iso_8601": "2025-08-25T20:23:37.891832Z",
"url": "https://files.pythonhosted.org/packages/06/79/d050146d39ee338b8e2b6ab6b6901487911cd3d81fec589c33eb7a41bd22/quicktions-1.22-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ec295c27c8f2eba89bdcb9597599879babc55a9981e6a5cfd69cce6fb06c574",
"md5": "d568ef3fa020d1f8c072f28bfba24831",
"sha256": "e5e4c3d1146aae1aa8d68a03fcedd84e96fd8c384ec6800c5829d680b6373af4"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "d568ef3fa020d1f8c072f28bfba24831",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 136868,
"upload_time": "2025-08-25T20:23:39",
"upload_time_iso_8601": "2025-08-25T20:23:39.191920Z",
"url": "https://files.pythonhosted.org/packages/7e/c2/95c27c8f2eba89bdcb9597599879babc55a9981e6a5cfd69cce6fb06c574/quicktions-1.22-cp313-cp313t-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48d94d0428ff90af032568b594525ff4bdafe4d892e624f0be898a0c9f847e6d",
"md5": "1f3637b3a946a47695a1c64409bc02d8",
"sha256": "20b4565629f1770d41396e988d5aa01dd898a44c4098c587ef7dd4b8127353dc"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1f3637b3a946a47695a1c64409bc02d8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 146452,
"upload_time": "2025-08-25T20:23:40",
"upload_time_iso_8601": "2025-08-25T20:23:40.908200Z",
"url": "https://files.pythonhosted.org/packages/48/d9/4d0428ff90af032568b594525ff4bdafe4d892e624f0be898a0c9f847e6d/quicktions-1.22-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fec5b780a6c2ad3be36bfb746913154b607fb72e63fd3ad18ae7432eacd997aa",
"md5": "26bd863fbd4ad517ac7964d103e6a5b2",
"sha256": "a25292c3ab18fc6f0a9ff0a6f985f0ca0dd311389cbdeffae5111db4cbc056bb"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "26bd863fbd4ad517ac7964d103e6a5b2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 138628,
"upload_time": "2025-08-25T20:23:42",
"upload_time_iso_8601": "2025-08-25T20:23:42.214837Z",
"url": "https://files.pythonhosted.org/packages/fe/c5/b780a6c2ad3be36bfb746913154b607fb72e63fd3ad18ae7432eacd997aa/quicktions-1.22-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f1b27e0859f1760f987a5077483e6c0a8a493944b7c2477e17979a2ed4e3905",
"md5": "5d23257ad8a4c6d1e8d9eee7ca121bee",
"sha256": "5fc40a932304c9672883c62159eb912886a691c9922b5219591afea5a650e46c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "5d23257ad8a4c6d1e8d9eee7ca121bee",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 125516,
"upload_time": "2025-08-25T20:23:43",
"upload_time_iso_8601": "2025-08-25T20:23:43.834538Z",
"url": "https://files.pythonhosted.org/packages/9f/1b/27e0859f1760f987a5077483e6c0a8a493944b7c2477e17979a2ed4e3905/quicktions-1.22-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58cf94b656de278ed7f7eb8918ad88d74535a26d3b95963d660251d1ebc10aff",
"md5": "469baaeb9df7817157df9adbc45d9dba",
"sha256": "bab3faae072a615ee6e2eb51496d3dc4b625ea0a1f98eeccb54279ed009dfb3f"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "469baaeb9df7817157df9adbc45d9dba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 125506,
"upload_time": "2025-08-25T20:23:45",
"upload_time_iso_8601": "2025-08-25T20:23:45.107423Z",
"url": "https://files.pythonhosted.org/packages/58/cf/94b656de278ed7f7eb8918ad88d74535a26d3b95963d660251d1ebc10aff/quicktions-1.22-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4fc81617a5c83fbbf5333230ebc11f1eab3c6b2f20b44a91baf7a8512e1b626d",
"md5": "7c8e6999a2e624102534512c4c6e2205",
"sha256": "5ec3f796c10c24ffbd3ccd9636c686c409e780a70e11054d6e7d4428e437ec67"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "7c8e6999a2e624102534512c4c6e2205",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 123564,
"upload_time": "2025-08-25T20:23:46",
"upload_time_iso_8601": "2025-08-25T20:23:46.409666Z",
"url": "https://files.pythonhosted.org/packages/4f/c8/1617a5c83fbbf5333230ebc11f1eab3c6b2f20b44a91baf7a8512e1b626d/quicktions-1.22-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c4ddb49f262ceca092a59e44ef848e2e2219f3e25f27cd5e4eef983d8e50a75",
"md5": "f57f153159ffb39ac0c63a7feb98ca4a",
"sha256": "699deb286413d7aa4de99ae6616e96d726e3461427e39fbd86e53e71018ce8ff"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "f57f153159ffb39ac0c63a7feb98ca4a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 141063,
"upload_time": "2025-08-25T20:23:48",
"upload_time_iso_8601": "2025-08-25T20:23:48.027777Z",
"url": "https://files.pythonhosted.org/packages/5c/4d/db49f262ceca092a59e44ef848e2e2219f3e25f27cd5e4eef983d8e50a75/quicktions-1.22-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51d2c7e6904def3bf422945c0e3cb222401ef21d243abb7d98aed7ca29e38ff8",
"md5": "b79ffb3339999e9e55b93d770ecbc74d",
"sha256": "5a702525489e195f75c847b707f95ca09d3d5de3e36692c20be33bbef7846bda"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "b79ffb3339999e9e55b93d770ecbc74d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 140598,
"upload_time": "2025-08-25T20:23:49",
"upload_time_iso_8601": "2025-08-25T20:23:49.368120Z",
"url": "https://files.pythonhosted.org/packages/51/d2/c7e6904def3bf422945c0e3cb222401ef21d243abb7d98aed7ca29e38ff8/quicktions-1.22-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd5be70511f7e2af7837d96a4ae84d24d75d7a66848728833000f0def02ce2d0",
"md5": "a51d55d6f54a7b377c636f09ccdec3a9",
"sha256": "5005f5c6ca1dd4ceb4f7f07a7abc891505a381f7e9db6c95b8253fb5653b3c14"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "a51d55d6f54a7b377c636f09ccdec3a9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 133749,
"upload_time": "2025-08-25T20:23:50",
"upload_time_iso_8601": "2025-08-25T20:23:50.639005Z",
"url": "https://files.pythonhosted.org/packages/fd/5b/e70511f7e2af7837d96a4ae84d24d75d7a66848728833000f0def02ce2d0/quicktions-1.22-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4f31800180d66a8c90c9d22a1df3f508d6050ec64e143a8a043a103c18fe15a",
"md5": "e27ae29b2eb364f576e1899d410f385e",
"sha256": "d72a1ed71ea8c921ab6d4129291a4dd6d14fd1170e9da06f9ebbab7671d85c4b"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "e27ae29b2eb364f576e1899d410f385e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 133740,
"upload_time": "2025-08-25T20:23:52",
"upload_time_iso_8601": "2025-08-25T20:23:52.052728Z",
"url": "https://files.pythonhosted.org/packages/b4/f3/1800180d66a8c90c9d22a1df3f508d6050ec64e143a8a043a103c18fe15a/quicktions-1.22-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7dd27cdc79b68de3d48742ba222c8e311d9378757b8c75199d7056d703540d4",
"md5": "1958a0575e4c62999b6af87c57eea5a2",
"sha256": "22f7fbe82a72ca66fee11eb64eee1012065605b6d78e88f7905af0b5ee40088a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "1958a0575e4c62999b6af87c57eea5a2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 132833,
"upload_time": "2025-08-25T20:23:53",
"upload_time_iso_8601": "2025-08-25T20:23:53.545811Z",
"url": "https://files.pythonhosted.org/packages/c7/dd/27cdc79b68de3d48742ba222c8e311d9378757b8c75199d7056d703540d4/quicktions-1.22-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9ff503fd26f5d47ad512c80018b861469385de0b19a65c2302a8a6c66e95333f",
"md5": "1c7b279b1b93b962677601b016e6a390",
"sha256": "52ac171971d5e59691fb9d64f2de2f3dbda1ac6fe96107a8fe9539e80e8949b2"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1c7b279b1b93b962677601b016e6a390",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 126899,
"upload_time": "2025-08-25T20:23:54",
"upload_time_iso_8601": "2025-08-25T20:23:54.700304Z",
"url": "https://files.pythonhosted.org/packages/9f/f5/03fd26f5d47ad512c80018b861469385de0b19a65c2302a8a6c66e95333f/quicktions-1.22-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d176bd17987da6b4b5567aebc081e914a1c505a13c80437cc42ee84c27acf85",
"md5": "97dcdcd2302ac369e06765ce0468a710",
"sha256": "d400a01a6986e9dd18bbce87b6c4b8652d7447e59dc0e8b4d9936a71a6c0576c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "97dcdcd2302ac369e06765ce0468a710",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 126437,
"upload_time": "2025-08-25T20:23:56",
"upload_time_iso_8601": "2025-08-25T20:23:56.029810Z",
"url": "https://files.pythonhosted.org/packages/6d/17/6bd17987da6b4b5567aebc081e914a1c505a13c80437cc42ee84c27acf85/quicktions-1.22-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2f6489eac682e00c7a171eefd7b7ed4c868e5de74ae311ef0b03cae06951f2ec",
"md5": "ad141309e824f5ccf7b3c545649ff5e2",
"sha256": "e19bfbbb74dec24c81a78ec01f3f5ec6a7510a2a07e1b37520c741a5e10c5569"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "ad141309e824f5ccf7b3c545649ff5e2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 141212,
"upload_time": "2025-08-25T20:23:57",
"upload_time_iso_8601": "2025-08-25T20:23:57.632145Z",
"url": "https://files.pythonhosted.org/packages/2f/64/89eac682e00c7a171eefd7b7ed4c868e5de74ae311ef0b03cae06951f2ec/quicktions-1.22-cp313-cp313t-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3dbfd83cc58d41bc0755828cd847aef4c7be613a66622afd2dc34670e496302f",
"md5": "6a19711157f6e10c538591f0cf3efae4",
"sha256": "33cebb26ccb341712b591672fe802b7aa2edb902aba6e8cbb35d306d6a86f5e7"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "6a19711157f6e10c538591f0cf3efae4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 132845,
"upload_time": "2025-08-25T20:23:58",
"upload_time_iso_8601": "2025-08-25T20:23:58.973801Z",
"url": "https://files.pythonhosted.org/packages/3d/bf/d83cc58d41bc0755828cd847aef4c7be613a66622afd2dc34670e496302f/quicktions-1.22-cp313-cp313t-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "def179ffbac9a06f4a841982f0530b053ddf262ce87e771c3ea46a048c9c0bab",
"md5": "fede9646622e9137f5e8251d75129453",
"sha256": "820f07f44d0fb46885a4fadebaf9cadedccd3cc52c99dd364a052b6eb54fba83"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fede9646622e9137f5e8251d75129453",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 135047,
"upload_time": "2025-08-25T20:24:00",
"upload_time_iso_8601": "2025-08-25T20:24:00.708980Z",
"url": "https://files.pythonhosted.org/packages/de/f1/79ffbac9a06f4a841982f0530b053ddf262ce87e771c3ea46a048c9c0bab/quicktions-1.22-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d0ab0b7945ca2697632ffebf59b9f4459a20904618301a903e7be33a4d354b12",
"md5": "0f3b56a43f262346b1da5ebe6dbabf7f",
"sha256": "0c935d6b413cda4137d92fb494b6cc1b546b811a0bde6c5de8e65c721206218f"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-win32.whl",
"has_sig": false,
"md5_digest": "0f3b56a43f262346b1da5ebe6dbabf7f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 107354,
"upload_time": "2025-08-25T20:24:01",
"upload_time_iso_8601": "2025-08-25T20:24:01.938553Z",
"url": "https://files.pythonhosted.org/packages/d0/ab/0b7945ca2697632ffebf59b9f4459a20904618301a903e7be33a4d354b12/quicktions-1.22-cp313-cp313t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fffdd009236be24f87cd122e927f23f7a47ace288d40f9738c0042d12c04b539",
"md5": "d5255f35cd249bef1dea1833791ca559",
"sha256": "f8919302a2c50ad2b069eaef5064d721e8b78e01505818918e764f14d2f77bbf"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "d5255f35cd249bef1dea1833791ca559",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 119405,
"upload_time": "2025-08-25T20:24:03",
"upload_time_iso_8601": "2025-08-25T20:24:03.300830Z",
"url": "https://files.pythonhosted.org/packages/ff/fd/d009236be24f87cd122e927f23f7a47ace288d40f9738c0042d12c04b539/quicktions-1.22-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf930cfb6145a30fd3b4d198046a60638e911a0ffdf63681c30b98468b5a1f7d",
"md5": "64a791c390616a1912f6cf8ac8c4e23e",
"sha256": "5b3f133468533bbb41cb2b0d4a6c2d876f2ff7cc269e9fe023d43f8c5e677afd"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313t-win_arm64.whl",
"has_sig": false,
"md5_digest": "64a791c390616a1912f6cf8ac8c4e23e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 93058,
"upload_time": "2025-08-25T20:24:04",
"upload_time_iso_8601": "2025-08-25T20:24:04.897843Z",
"url": "https://files.pythonhosted.org/packages/cf/93/0cfb6145a30fd3b4d198046a60638e911a0ffdf63681c30b98468b5a1f7d/quicktions-1.22-cp313-cp313t-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a9e5a7823515c67ba8e3f83ae77a052d73e030912e0a1f807ba74bcd42e177c",
"md5": "7029dbf78460002fd2e6f8c749506ba2",
"sha256": "5850c8914dcf7ea2b77f8d89413503955f6b7d749245824ebc0701857f2ff9cc"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "7029dbf78460002fd2e6f8c749506ba2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 92034,
"upload_time": "2025-08-25T20:24:06",
"upload_time_iso_8601": "2025-08-25T20:24:06.553879Z",
"url": "https://files.pythonhosted.org/packages/4a/9e/5a7823515c67ba8e3f83ae77a052d73e030912e0a1f807ba74bcd42e177c/quicktions-1.22-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bf0ee9c80d209f188acdadde6531513b9e5b694ae4d59232cebecb715950f7d",
"md5": "11e1c778e0a493d2887f9e14fa59e50c",
"sha256": "3927dc95921501cd03c7cda0a749764e9d2edefe4c49e22fc79da8999170c7e6"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "11e1c778e0a493d2887f9e14fa59e50c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 102475,
"upload_time": "2025-08-25T20:24:08",
"upload_time_iso_8601": "2025-08-25T20:24:08.704598Z",
"url": "https://files.pythonhosted.org/packages/2b/f0/ee9c80d209f188acdadde6531513b9e5b694ae4d59232cebecb715950f7d/quicktions-1.22-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5fba087d904429f1423d680bdd887daa75a68a5b9e295e2f470f4ffcab007a6",
"md5": "d7332588b1f4accec41eee3700959190",
"sha256": "418477453aa8bef8d512e563916a3028e45fb1e99cf39104194051ca2e94d8aa"
},
"downloads": -1,
"filename": "quicktions-1.22-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "d7332588b1f4accec41eee3700959190",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 85628,
"upload_time": "2025-08-25T20:24:09",
"upload_time_iso_8601": "2025-08-25T20:24:09.903473Z",
"url": "https://files.pythonhosted.org/packages/c5/fb/a087d904429f1423d680bdd887daa75a68a5b9e295e2f470f4ffcab007a6/quicktions-1.22-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f0fdaf6dd42f26603ce5639e1cd51457b5e50840f6fb177f1873cd8daa44bab",
"md5": "35a4be5222b560e746a9eb9940617ed2",
"sha256": "13642eb36e938e80acc283b6c7592a39b81ae865b158972c778fa87644f4900b"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "35a4be5222b560e746a9eb9940617ed2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 124117,
"upload_time": "2025-08-25T20:24:11",
"upload_time_iso_8601": "2025-08-25T20:24:11.186170Z",
"url": "https://files.pythonhosted.org/packages/7f/0f/daf6dd42f26603ce5639e1cd51457b5e50840f6fb177f1873cd8daa44bab/quicktions-1.22-cp314-cp314-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0510b8eed83070b47d0d696355bda90bcb276dabacc4e34840214c3cc151e3b5",
"md5": "f04238eebfd8be4e249640de0ccec1f3",
"sha256": "db7283c0c0212ab4b166939de5c55976b943927fcf7902d6a71207dd65abda36"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f04238eebfd8be4e249640de0ccec1f3",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 145140,
"upload_time": "2025-08-25T20:24:12",
"upload_time_iso_8601": "2025-08-25T20:24:12.571657Z",
"url": "https://files.pythonhosted.org/packages/05/10/b8eed83070b47d0d696355bda90bcb276dabacc4e34840214c3cc151e3b5/quicktions-1.22-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f77f8c1ae8bd0d12254c4dcfc155d72757273abc11725894296716c7a043270",
"md5": "a26a24760c022530fd10ac56775291a4",
"sha256": "bd64cf62de91f46fda980a425117e8e15d1e34e519a4f93f83dc956e388065d9"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "a26a24760c022530fd10ac56775291a4",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 144516,
"upload_time": "2025-08-25T20:24:13",
"upload_time_iso_8601": "2025-08-25T20:24:13.980747Z",
"url": "https://files.pythonhosted.org/packages/0f/77/f8c1ae8bd0d12254c4dcfc155d72757273abc11725894296716c7a043270/quicktions-1.22-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7fec15e8c430684e1b7268218b4801532b24eb389523d2b9762eea71895b0ee7",
"md5": "a3b8366bbe69eeb0b5c2189bfd120147",
"sha256": "08e29753e7005faf0e54ce8ddfacb57afb1946cb47566be8de2d94ad47dee500"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "a3b8366bbe69eeb0b5c2189bfd120147",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 128036,
"upload_time": "2025-08-25T20:24:15",
"upload_time_iso_8601": "2025-08-25T20:24:15.231530Z",
"url": "https://files.pythonhosted.org/packages/7f/ec/15e8c430684e1b7268218b4801532b24eb389523d2b9762eea71895b0ee7/quicktions-1.22-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12c51aab04fbc80553d56df14f7c11bf667c11721dd56a4319bafad232091ef0",
"md5": "51931dc56e26d91b92975f9168dd4c05",
"sha256": "ed808af86fb5d61b5f66cb50addcfa6076edbebc3810cdcbf74c5e87ae2af402"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "51931dc56e26d91b92975f9168dd4c05",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 128025,
"upload_time": "2025-08-25T20:24:16",
"upload_time_iso_8601": "2025-08-25T20:24:16.574441Z",
"url": "https://files.pythonhosted.org/packages/12/c5/1aab04fbc80553d56df14f7c11bf667c11721dd56a4319bafad232091ef0/quicktions-1.22-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c92c0aef33e8b0feb83b9ae1f9283aedc8f93f919546132713962e915da6fc8a",
"md5": "8d3cb950d916b1cb7e12dd9a922587e9",
"sha256": "25e9668b628386dcb3c26595c01d81472160059a8335d9423e04908c3407c21b"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "8d3cb950d916b1cb7e12dd9a922587e9",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 124486,
"upload_time": "2025-08-25T20:24:18",
"upload_time_iso_8601": "2025-08-25T20:24:18.008139Z",
"url": "https://files.pythonhosted.org/packages/c9/2c/0aef33e8b0feb83b9ae1f9283aedc8f93f919546132713962e915da6fc8a/quicktions-1.22-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae1f089038d631bad806a6c864cb47fba7fe1c54ed25d1cb91229f59807b6023",
"md5": "c2738f7ab87d2183b23281377013c682",
"sha256": "829749158d6afa64cede4df91661a4a9de0186a1a7c2caa07993b0ee91cd8e40"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "c2738f7ab87d2183b23281377013c682",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 145551,
"upload_time": "2025-08-25T20:24:19",
"upload_time_iso_8601": "2025-08-25T20:24:19.805090Z",
"url": "https://files.pythonhosted.org/packages/ae/1f/089038d631bad806a6c864cb47fba7fe1c54ed25d1cb91229f59807b6023/quicktions-1.22-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da30016958f589be5b16c02c236a14d4adaa2e0dbf6c0de0adda516a87510fce",
"md5": "0a0f2c50a518dfa7e8fa50017dcc2832",
"sha256": "7023aba4858b42ac20b1ffa1c4d8ec9bbd2f972f7ebff92018d689861f8e3ad8"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "0a0f2c50a518dfa7e8fa50017dcc2832",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 144663,
"upload_time": "2025-08-25T20:24:21",
"upload_time_iso_8601": "2025-08-25T20:24:21.179546Z",
"url": "https://files.pythonhosted.org/packages/da/30/016958f589be5b16c02c236a14d4adaa2e0dbf6c0de0adda516a87510fce/quicktions-1.22-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d1c4726db85a522d7f37fc5192d5a33af48502cd50f8789c70a707f6580461a",
"md5": "255a108e3e97c6c41736eb7d33e12f1d",
"sha256": "f0e5f174834b4139a6be782ba5398b0cae3a7beac9f29edca291ebf9d0efa80c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "255a108e3e97c6c41736eb7d33e12f1d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 136194,
"upload_time": "2025-08-25T20:24:22",
"upload_time_iso_8601": "2025-08-25T20:24:22.398627Z",
"url": "https://files.pythonhosted.org/packages/8d/1c/4726db85a522d7f37fc5192d5a33af48502cd50f8789c70a707f6580461a/quicktions-1.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e5de98d469e0a7e3a2d02acc49cfb2c33dace3a08b17f3cc06dcff1c44ae0f6",
"md5": "d6d2964f1c4d71263efdb45db21cca6a",
"sha256": "e96168a0a9f83f514c584136af960f42277e30cb439e99e3cd43e976dc1a034b"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "d6d2964f1c4d71263efdb45db21cca6a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 136181,
"upload_time": "2025-08-25T20:24:24",
"upload_time_iso_8601": "2025-08-25T20:24:24.486797Z",
"url": "https://files.pythonhosted.org/packages/6e/5d/e98d469e0a7e3a2d02acc49cfb2c33dace3a08b17f3cc06dcff1c44ae0f6/quicktions-1.22-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "04330bf04e224ab07309bae03b826b75eee4220822cab2e61aac05e239080c20",
"md5": "2552f4ba7f5dd69f0d8296463b18d2c4",
"sha256": "825e11d3dd7abc8983275101da2cd263d405a0b940c500ecadf7af4890b716c7"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "2552f4ba7f5dd69f0d8296463b18d2c4",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 133628,
"upload_time": "2025-08-25T20:24:27",
"upload_time_iso_8601": "2025-08-25T20:24:27.274330Z",
"url": "https://files.pythonhosted.org/packages/04/33/0bf04e224ab07309bae03b826b75eee4220822cab2e61aac05e239080c20/quicktions-1.22-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ccb17f806f06af25e7c8c8272491149c55593157bc80e227e1e121b660960151",
"md5": "2878e45717470662a092ab0bf06b2493",
"sha256": "0399773aabf91a592ea8bc72ec3a37ebbdcad39f249f8e1f4fd119c464ba70d7"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2878e45717470662a092ab0bf06b2493",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 128990,
"upload_time": "2025-08-25T20:24:30",
"upload_time_iso_8601": "2025-08-25T20:24:30.510311Z",
"url": "https://files.pythonhosted.org/packages/cc/b1/7f806f06af25e7c8c8272491149c55593157bc80e227e1e121b660960151/quicktions-1.22-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e154961fde622d03e6951fa18b8e06a765dde29c6f952193c3b159c780b5829",
"md5": "83357df00c8d491945f563788db18689",
"sha256": "6972b096edd368a8eb21ef4c73895c15cc14a7bd84ab2a1744d64b0ee9aafa1a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "83357df00c8d491945f563788db18689",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 125755,
"upload_time": "2025-08-25T20:24:33",
"upload_time_iso_8601": "2025-08-25T20:24:33.189344Z",
"url": "https://files.pythonhosted.org/packages/7e/15/4961fde622d03e6951fa18b8e06a765dde29c6f952193c3b159c780b5829/quicktions-1.22-cp314-cp314-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d2dd929e8b4cd3528f5a5bd2a401dd4a8c695a12204cdd2b2eb2c8e64f29882a",
"md5": "209ef3bd31f457b335e6417b5cd583e6",
"sha256": "1c14382561faae7603c3a65805fb01803a4736bcac583262cc70f5eb093585a7"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "209ef3bd31f457b335e6417b5cd583e6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 146340,
"upload_time": "2025-08-25T20:24:34",
"upload_time_iso_8601": "2025-08-25T20:24:34.520030Z",
"url": "https://files.pythonhosted.org/packages/d2/dd/929e8b4cd3528f5a5bd2a401dd4a8c695a12204cdd2b2eb2c8e64f29882a/quicktions-1.22-cp314-cp314-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4812a9cf67e02a8070dcb27e1e7683411ea0c65eb8944d388fa909753f92680",
"md5": "a91336ea14497439bbcf18242781fd32",
"sha256": "86e1b76e4e04a2d5765ec03cd0151cffe212749508297ebb11f0b14aca0d4ac1"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "a91336ea14497439bbcf18242781fd32",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 132959,
"upload_time": "2025-08-25T20:24:35",
"upload_time_iso_8601": "2025-08-25T20:24:35.878084Z",
"url": "https://files.pythonhosted.org/packages/e4/81/2a9cf67e02a8070dcb27e1e7683411ea0c65eb8944d388fa909753f92680/quicktions-1.22-cp314-cp314-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8694490ebe6533b79c7da71b9252f400f38450ca98e9abdb4f65aea3defce01c",
"md5": "152a66d091403e7b2fa4d9234e41b5e4",
"sha256": "8e661ae8f6828e65e3abdae574c5fc69712e5ffbbd3f9996bfff6865d1c4db8e"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "152a66d091403e7b2fa4d9234e41b5e4",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 136850,
"upload_time": "2025-08-25T20:24:37",
"upload_time_iso_8601": "2025-08-25T20:24:37.296376Z",
"url": "https://files.pythonhosted.org/packages/86/94/490ebe6533b79c7da71b9252f400f38450ca98e9abdb4f65aea3defce01c/quicktions-1.22-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a190b4defca50feaccb9b3cf137286cebc75bcfb8f9ddcbf6d88a7ca025460fb",
"md5": "7489054f8900779a97b4da3e7d90e7dc",
"sha256": "aaba18b0f67b1f0446c391d69a721ee4df5d314b552a6a68a9be34374f29a0ea"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "7489054f8900779a97b4da3e7d90e7dc",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 136898,
"upload_time": "2025-08-25T20:24:38",
"upload_time_iso_8601": "2025-08-25T20:24:38.693327Z",
"url": "https://files.pythonhosted.org/packages/a1/90/b4defca50feaccb9b3cf137286cebc75bcfb8f9ddcbf6d88a7ca025460fb/quicktions-1.22-cp314-cp314t-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b49929ce4f28b57a4cf103e4fb153a6173198a39257c56589deb38c588c00250",
"md5": "9bd6f6a9f7bdaeb07205153338730691",
"sha256": "02e8dc099c92ae38db4f847775ed7fd76b60ea4f06b67f145e55eab9918008b5"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9bd6f6a9f7bdaeb07205153338730691",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 146542,
"upload_time": "2025-08-25T20:24:40",
"upload_time_iso_8601": "2025-08-25T20:24:40.174624Z",
"url": "https://files.pythonhosted.org/packages/b4/99/29ce4f28b57a4cf103e4fb153a6173198a39257c56589deb38c588c00250/quicktions-1.22-cp314-cp314t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7b8d326128ef63ec8210d5cdaa3202b2047772fcacbdaa0146d9faea008a9c4",
"md5": "b201c7e638ad331a4f139cf1d4ccfb52",
"sha256": "e3b902790f49b753647500afe734d28b9df10dfae6097c3d2c74d27d0b47721c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "b201c7e638ad331a4f139cf1d4ccfb52",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 139199,
"upload_time": "2025-08-25T20:24:41",
"upload_time_iso_8601": "2025-08-25T20:24:41.469920Z",
"url": "https://files.pythonhosted.org/packages/a7/b8/d326128ef63ec8210d5cdaa3202b2047772fcacbdaa0146d9faea008a9c4/quicktions-1.22-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8990f2c8704a43253efe3a3afafe812faad1711b8109c4272ab94ffd070ba317",
"md5": "c72135df314c5c1379bcefb871ceb25b",
"sha256": "2c1754545c7627ee7bf2cf162429f0649b83b846de6910d125a6fb841efc721e"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "c72135df314c5c1379bcefb871ceb25b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 125482,
"upload_time": "2025-08-25T20:24:42",
"upload_time_iso_8601": "2025-08-25T20:24:42.765459Z",
"url": "https://files.pythonhosted.org/packages/89/90/f2c8704a43253efe3a3afafe812faad1711b8109c4272ab94ffd070ba317/quicktions-1.22-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8b64486c9f59837d7117298e5dff3c2976a4b3180d66a40f56b93e3f449437b",
"md5": "b3de15d3c83490da01191f2576769a99",
"sha256": "4fccccba0e08b800eee231cc85b25b6fdd5f07a4d0ea6fdb399daa728382270c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "b3de15d3c83490da01191f2576769a99",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 125478,
"upload_time": "2025-08-25T20:24:44",
"upload_time_iso_8601": "2025-08-25T20:24:44.056389Z",
"url": "https://files.pythonhosted.org/packages/c8/b6/4486c9f59837d7117298e5dff3c2976a4b3180d66a40f56b93e3f449437b/quicktions-1.22-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3bbb10808e1d810d217a153bab7ba3b7333caf336327b22f978067cf3efe0c6",
"md5": "dbc2667e7f7cb9d73dda7bbf362dac21",
"sha256": "6fbe0b86296db0f39142cd7164abb3ce08c384f4a4f2ec9d5a15d07f0cf0c1b5"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "dbc2667e7f7cb9d73dda7bbf362dac21",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 123383,
"upload_time": "2025-08-25T20:24:45",
"upload_time_iso_8601": "2025-08-25T20:24:45.693927Z",
"url": "https://files.pythonhosted.org/packages/b3/bb/b10808e1d810d217a153bab7ba3b7333caf336327b22f978067cf3efe0c6/quicktions-1.22-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96c214a5b7794ba6f9e6ca6cfcc11c651cc7301c20e16a54052d132dd8c93874",
"md5": "3b7d1097984d10df3a98eb6ae7aa33b6",
"sha256": "f72c67d2e6d333cb40c6c54ea955e4b5dd9491761b32164a5274ddef717bcb32"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "3b7d1097984d10df3a98eb6ae7aa33b6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 140929,
"upload_time": "2025-08-25T20:24:47",
"upload_time_iso_8601": "2025-08-25T20:24:47.125395Z",
"url": "https://files.pythonhosted.org/packages/96/c2/14a5b7794ba6f9e6ca6cfcc11c651cc7301c20e16a54052d132dd8c93874/quicktions-1.22-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5f314e3239003d5f91a309e4a4f472cff01171ae37d19d14c0a69c1f44148e5e",
"md5": "99c3b234d1d3240976c2420ae46e7384",
"sha256": "1d5fe83eeaecb6f31b66b9c2b980dccef570ed0561b05f90afd164445cfd4df5"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "99c3b234d1d3240976c2420ae46e7384",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 140493,
"upload_time": "2025-08-25T20:24:48",
"upload_time_iso_8601": "2025-08-25T20:24:48.535445Z",
"url": "https://files.pythonhosted.org/packages/5f/31/4e3239003d5f91a309e4a4f472cff01171ae37d19d14c0a69c1f44148e5e/quicktions-1.22-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "069c6d3d85c01f9c4735e3da4285894d80f167bd4cb9450d274bbbe231573e83",
"md5": "fefd26cb49637e213f2efb0cd4b91eba",
"sha256": "31c0ea4ab6b55d13fd4aa8b7300a8e52554a674d5d4649b5a50e13739422497f"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "fefd26cb49637e213f2efb0cd4b91eba",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 133736,
"upload_time": "2025-08-25T20:24:50",
"upload_time_iso_8601": "2025-08-25T20:24:50.236603Z",
"url": "https://files.pythonhosted.org/packages/06/9c/6d3d85c01f9c4735e3da4285894d80f167bd4cb9450d274bbbe231573e83/quicktions-1.22-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "91f2e5ad645515ef482eb5394a634c9737e146a53865973242e73b1e0d177e9b",
"md5": "43307dfe0b0721b2b07eac3ea50ec815",
"sha256": "cfbd9cc0f1910126c6b55c6d981064c0e2e9ed141faff6d40dc3084cfdec843d"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "43307dfe0b0721b2b07eac3ea50ec815",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 133734,
"upload_time": "2025-08-25T20:24:51",
"upload_time_iso_8601": "2025-08-25T20:24:51.636144Z",
"url": "https://files.pythonhosted.org/packages/91/f2/e5ad645515ef482eb5394a634c9737e146a53865973242e73b1e0d177e9b/quicktions-1.22-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83d72959cc655e29718026a0834109167515ffeb948c57ebf4fd250d49d23d58",
"md5": "0698ae8a5465d02d1b91219ab21ae513",
"sha256": "e50a631a1476b548aa4db707423ce3101840e569eefb687d6ba87d685299b267"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "0698ae8a5465d02d1b91219ab21ae513",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 132792,
"upload_time": "2025-08-25T20:24:53",
"upload_time_iso_8601": "2025-08-25T20:24:53.333749Z",
"url": "https://files.pythonhosted.org/packages/83/d7/2959cc655e29718026a0834109167515ffeb948c57ebf4fd250d49d23d58/quicktions-1.22-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e949dd8ae12928fc1a5963571b11d39a995b412d64e9938b2314f9d06e21b02",
"md5": "8a6eeb24d1db7e0a49c869b6b90ace33",
"sha256": "0eb275719c14362b4ef50722866f8ada664c76c88c40ee7a5446abbc8623eb6a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8a6eeb24d1db7e0a49c869b6b90ace33",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 127047,
"upload_time": "2025-08-25T20:24:54",
"upload_time_iso_8601": "2025-08-25T20:24:54.713740Z",
"url": "https://files.pythonhosted.org/packages/5e/94/9dd8ae12928fc1a5963571b11d39a995b412d64e9938b2314f9d06e21b02/quicktions-1.22-cp314-cp314t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d187fe5e4bed8661acd0d62f7240ff6f29fcb86bc9b16b9553ecea9dd421dfd4",
"md5": "647d2b8d7becccc46bca502551f7ba5a",
"sha256": "38106841b0b225ae3e5be5f3db567abd5381752f516bd426791b839669155dbc"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "647d2b8d7becccc46bca502551f7ba5a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 126633,
"upload_time": "2025-08-25T20:24:56",
"upload_time_iso_8601": "2025-08-25T20:24:56.399142Z",
"url": "https://files.pythonhosted.org/packages/d1/87/fe5e4bed8661acd0d62f7240ff6f29fcb86bc9b16b9553ecea9dd421dfd4/quicktions-1.22-cp314-cp314t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e65767bfc20ed2b8cb34d3fefd7c588eaff8e4a7d479d27b79b785a8f37e7154",
"md5": "29d9eada7ab947642883961144946b79",
"sha256": "7136076e414dc6bf4f456e1e086a49d616af1ffe5aa02ee737aba9fd508851d8"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "29d9eada7ab947642883961144946b79",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 141062,
"upload_time": "2025-08-25T20:24:57",
"upload_time_iso_8601": "2025-08-25T20:24:57.853729Z",
"url": "https://files.pythonhosted.org/packages/e6/57/67bfc20ed2b8cb34d3fefd7c588eaff8e4a7d479d27b79b785a8f37e7154/quicktions-1.22-cp314-cp314t-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e53175f0944c12bb9a56137febea3cb05235564c11f25a4a1cf7fc6837115b4c",
"md5": "f61f6b692f4a97f5bdedc0dcf2ecf56d",
"sha256": "a24bb2e76230add653c27b577ee26da5927ae7e43582251babb7b9c43e9cc0b1"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "f61f6b692f4a97f5bdedc0dcf2ecf56d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 132749,
"upload_time": "2025-08-25T20:24:59",
"upload_time_iso_8601": "2025-08-25T20:24:59.130382Z",
"url": "https://files.pythonhosted.org/packages/e5/31/75f0944c12bb9a56137febea3cb05235564c11f25a4a1cf7fc6837115b4c/quicktions-1.22-cp314-cp314t-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72761e59de9f91cfe829ee2f346a25076f1a569967e4cc74b3168c74bc643ac4",
"md5": "77c6dd846976854e738be169a72592d1",
"sha256": "1622f536a6dba17a066d8314d39b6c97292de846db79ae31487397478d25e95d"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "77c6dd846976854e738be169a72592d1",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 135071,
"upload_time": "2025-08-25T20:25:00",
"upload_time_iso_8601": "2025-08-25T20:25:00.842886Z",
"url": "https://files.pythonhosted.org/packages/72/76/1e59de9f91cfe829ee2f346a25076f1a569967e4cc74b3168c74bc643ac4/quicktions-1.22-cp314-cp314t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c97ec7aad9764ca29dde27b959b057e6982f45babc98ecad600342c256ce0bee",
"md5": "4e41570186d5693a1dff39f54207ec59",
"sha256": "5c26e6060286ef47486b37adfd0cd49f6264e74d31c6bfc115799690a3813a5a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-win32.whl",
"has_sig": false,
"md5_digest": "4e41570186d5693a1dff39f54207ec59",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 112047,
"upload_time": "2025-08-25T20:25:02",
"upload_time_iso_8601": "2025-08-25T20:25:02.182610Z",
"url": "https://files.pythonhosted.org/packages/c9/7e/c7aad9764ca29dde27b959b057e6982f45babc98ecad600342c256ce0bee/quicktions-1.22-cp314-cp314t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfd497f784d0a74445dbfa557523c54623371380f6cda1c07dc1f80e96b34fa5",
"md5": "a3f4039471ebfb8f4cdcc57aecb5657b",
"sha256": "7c07e75a5dd33488255fae6359810382c5ec2d3d3f14c3dae6227bb63004634f"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "a3f4039471ebfb8f4cdcc57aecb5657b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 126823,
"upload_time": "2025-08-25T20:25:03",
"upload_time_iso_8601": "2025-08-25T20:25:03.557513Z",
"url": "https://files.pythonhosted.org/packages/df/d4/97f784d0a74445dbfa557523c54623371380f6cda1c07dc1f80e96b34fa5/quicktions-1.22-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8982a40123b5d3c8a3d77d2fe8ad5270dd0f4779cd04e27a5852307553480b67",
"md5": "b45f2689a5753f166f1c441f7b3d48f6",
"sha256": "e6e93e1ecb883aa0ff7964a4e675d25eb7d173a13a2c5d109695cfaac3d44c68"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314t-win_arm64.whl",
"has_sig": false,
"md5_digest": "b45f2689a5753f166f1c441f7b3d48f6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 95442,
"upload_time": "2025-08-25T20:25:05",
"upload_time_iso_8601": "2025-08-25T20:25:05.446808Z",
"url": "https://files.pythonhosted.org/packages/89/82/a40123b5d3c8a3d77d2fe8ad5270dd0f4779cd04e27a5852307553480b67/quicktions-1.22-cp314-cp314t-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ae0831c961bf6970acf91d1f78b91ff5496bf8af16447595dec46785fccfeeb",
"md5": "7cce8746055128c6baefc7675ed7237a",
"sha256": "fa347ec89f4aa389492ae689a09ed393302de0b35362c17b6e4a09bdf49d0fc3"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "7cce8746055128c6baefc7675ed7237a",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 94575,
"upload_time": "2025-08-25T20:25:06",
"upload_time_iso_8601": "2025-08-25T20:25:06.853442Z",
"url": "https://files.pythonhosted.org/packages/8a/e0/831c961bf6970acf91d1f78b91ff5496bf8af16447595dec46785fccfeeb/quicktions-1.22-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "111e47cbee5eb650cdba4c6975c18bbb622ef29874723cda586e48d2673823d9",
"md5": "384b0f551a502eaf04ccfef32aa61f12",
"sha256": "5e8be3c581318c4bdbe8862812516efc3ce0e6ed5fb7da2495208e5cbce23a8c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "384b0f551a502eaf04ccfef32aa61f12",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 104851,
"upload_time": "2025-08-25T20:25:08",
"upload_time_iso_8601": "2025-08-25T20:25:08.278963Z",
"url": "https://files.pythonhosted.org/packages/11/1e/47cbee5eb650cdba4c6975c18bbb622ef29874723cda586e48d2673823d9/quicktions-1.22-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3d126f06c146f6b443a8e59fee01e6fb74b86a5f1314fab819851f73ed99790",
"md5": "2f69a35b4c464125437c29769a4abba1",
"sha256": "4bdb013c52fe836c162202d236f719b8eca4c199f42f5e69a72bf2ca975a4f06"
},
"downloads": -1,
"filename": "quicktions-1.22-cp314-cp314-win_arm64.whl",
"has_sig": false,
"md5_digest": "2f69a35b4c464125437c29769a4abba1",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": null,
"size": 88959,
"upload_time": "2025-08-25T20:25:09",
"upload_time_iso_8601": "2025-08-25T20:25:09.569131Z",
"url": "https://files.pythonhosted.org/packages/f3/d1/26f06c146f6b443a8e59fee01e6fb74b86a5f1314fab819851f73ed99790/quicktions-1.22-cp314-cp314-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9a94ddb270d5281496390d14e440aeb8ad76e238f0c2f9998ddb490c3fdd699",
"md5": "4be4e9f3878a850e185aabd57142934a",
"sha256": "ba54dbb1c72dc5d4662decf5444a3858ae8d34208cbe23b28606448108bef216"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4be4e9f3878a850e185aabd57142934a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 125207,
"upload_time": "2025-08-25T20:25:11",
"upload_time_iso_8601": "2025-08-25T20:25:11.177050Z",
"url": "https://files.pythonhosted.org/packages/b9/a9/4ddb270d5281496390d14e440aeb8ad76e238f0c2f9998ddb490c3fdd699/quicktions-1.22-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32a22becf4936bdfed3a15d284c7e57ba3cda58b8d032f84dbe1ba4893ecda7e",
"md5": "dc7b0a65e1cb175d5c50c2c62004aefb",
"sha256": "f9e65616e87fb6fcfd83f286eeb26ba22e79c7aad8cd701378d0b4c6e75ac494"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dc7b0a65e1cb175d5c50c2c62004aefb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 115750,
"upload_time": "2025-08-25T20:25:12",
"upload_time_iso_8601": "2025-08-25T20:25:12.445292Z",
"url": "https://files.pythonhosted.org/packages/32/a2/2becf4936bdfed3a15d284c7e57ba3cda58b8d032f84dbe1ba4893ecda7e/quicktions-1.22-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7bb9ced28f06b4284c50fba330bd52b8e89156266e2a2669c72b20df58a3612",
"md5": "1ba58fcaa6727e603c2828e4ae45a605",
"sha256": "e3be646f8cef2444f50956bba680dfdb02fbdf122040046386df437eb8ca824a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "1ba58fcaa6727e603c2828e4ae45a605",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 152991,
"upload_time": "2025-08-25T20:25:14",
"upload_time_iso_8601": "2025-08-25T20:25:14.219544Z",
"url": "https://files.pythonhosted.org/packages/e7/bb/9ced28f06b4284c50fba330bd52b8e89156266e2a2669c72b20df58a3612/quicktions-1.22-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d4ee9ae9cfd3574feff2e78151fc8dab1db0181ecd8ebd94c732e231910b967",
"md5": "f7faf3fd4f77f3c1025124c8c94a4554",
"sha256": "9bc61d6e7c92f2c77c0b51b30dac3acc4d33cc168b7212c8d8b4a5251eea21ea"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "f7faf3fd4f77f3c1025124c8c94a4554",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 129489,
"upload_time": "2025-08-25T20:25:15",
"upload_time_iso_8601": "2025-08-25T20:25:15.651138Z",
"url": "https://files.pythonhosted.org/packages/6d/4e/e9ae9cfd3574feff2e78151fc8dab1db0181ecd8ebd94c732e231910b967/quicktions-1.22-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d83acf76b8612b269b3c09df2109c47c889685fc92cdc9a30db3fa7cbdd89ce9",
"md5": "ae639891a63b9da12851b94c4efdb99a",
"sha256": "ced7ae97fb600a29f66611aa6ffb7de71918929ad2ff0c48cbe8e8c513e2480b"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "ae639891a63b9da12851b94c4efdb99a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 129479,
"upload_time": "2025-08-25T20:25:17",
"upload_time_iso_8601": "2025-08-25T20:25:17.479587Z",
"url": "https://files.pythonhosted.org/packages/d8/3a/cf76b8612b269b3c09df2109c47c889685fc92cdc9a30db3fa7cbdd89ce9/quicktions-1.22-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3363791c13b2eb2f07dd06543da9baa85a136f80a305e2c83d6f881a8cc75da7",
"md5": "7a8ae5626c8f9b53c01204d8d16758ac",
"sha256": "2c6e77732f5cd9d6de22b1bd2ed9a0fd8a82258520fdc6471dbd5873289a7d84"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "7a8ae5626c8f9b53c01204d8d16758ac",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 130991,
"upload_time": "2025-08-25T20:25:18",
"upload_time_iso_8601": "2025-08-25T20:25:18.842117Z",
"url": "https://files.pythonhosted.org/packages/33/63/791c13b2eb2f07dd06543da9baa85a136f80a305e2c83d6f881a8cc75da7/quicktions-1.22-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94436a1bfdee955d9cb80569820aebb00042760b08cfef30f5ebb62d6c21eac7",
"md5": "dbd548f767ae4137ea4850fd5076c72a",
"sha256": "bfdadf27a8bc84f290c0cf53ebd5229e8146c8a5152c953ec8030486b0d80209"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "dbd548f767ae4137ea4850fd5076c72a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 152857,
"upload_time": "2025-08-25T20:25:20",
"upload_time_iso_8601": "2025-08-25T20:25:20.228515Z",
"url": "https://files.pythonhosted.org/packages/94/43/6a1bfdee955d9cb80569820aebb00042760b08cfef30f5ebb62d6c21eac7/quicktions-1.22-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c54f9f2a98307ed5fcde90568615afe649d02e1841fe0ad6510560925a0dda5b",
"md5": "30540e607554b169a82451aef8d898e9",
"sha256": "11f7d075380958d8247eef694f4fa226b0877ae762b650a4c936adc0b66d7775"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "30540e607554b169a82451aef8d898e9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 152446,
"upload_time": "2025-08-25T20:25:21",
"upload_time_iso_8601": "2025-08-25T20:25:21.678363Z",
"url": "https://files.pythonhosted.org/packages/c5/4f/9f2a98307ed5fcde90568615afe649d02e1841fe0ad6510560925a0dda5b/quicktions-1.22-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7fb7b1d5f6a5012fd3394f070e114a0b5d78ba7cc10e7a07c01b3cee9ced638",
"md5": "09e7bcb7a8a2db30741ceed7f2e1bc9c",
"sha256": "cc880265adeb06a746cbe598d6fe0a681c23135a84c508e319ec3aee17f99bfd"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "09e7bcb7a8a2db30741ceed7f2e1bc9c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 140259,
"upload_time": "2025-08-25T20:25:23",
"upload_time_iso_8601": "2025-08-25T20:25:23.292171Z",
"url": "https://files.pythonhosted.org/packages/e7/fb/7b1d5f6a5012fd3394f070e114a0b5d78ba7cc10e7a07c01b3cee9ced638/quicktions-1.22-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eafc3408bd78fe983a40e91848ee3f088ed81f1d12d141190b533a6b760de5d2",
"md5": "2591e39824db89ca98367ea58df5255b",
"sha256": "3122da7a3e6eb9f08646197efbd88f08347826ec1e0013f219ec222b61064737"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "2591e39824db89ca98367ea58df5255b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 140248,
"upload_time": "2025-08-25T20:25:24",
"upload_time_iso_8601": "2025-08-25T20:25:24.748158Z",
"url": "https://files.pythonhosted.org/packages/ea/fc/3408bd78fe983a40e91848ee3f088ed81f1d12d141190b533a6b760de5d2/quicktions-1.22-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c780c5e98ebbd721be83aa337b9c781f8b35501847f38254a4900992dbf89e65",
"md5": "877ac3a8e5f4f3b2a2eea9abc2b69c2d",
"sha256": "21bad44e8b8df9faaf87a3b1d6a17cad3eb94aa6a781c0067d4e027ee3ce70fc"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "877ac3a8e5f4f3b2a2eea9abc2b69c2d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 137202,
"upload_time": "2025-08-25T20:25:26",
"upload_time_iso_8601": "2025-08-25T20:25:26.571045Z",
"url": "https://files.pythonhosted.org/packages/c7/80/c5e98ebbd721be83aa337b9c781f8b35501847f38254a4900992dbf89e65/quicktions-1.22-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "838b55249b7c060ae801d13b131c688d4a2bf16a2831b5c02a9e58d0568cd6f0",
"md5": "1438253e6cf01c32b9d6f601ebfb6452",
"sha256": "5206465c3d4f26824102f47271b87bc4e2bdf3ac9fd38c737230f52ee4f40b99"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1438253e6cf01c32b9d6f601ebfb6452",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 130174,
"upload_time": "2025-08-25T20:25:28",
"upload_time_iso_8601": "2025-08-25T20:25:28.135180Z",
"url": "https://files.pythonhosted.org/packages/83/8b/55249b7c060ae801d13b131c688d4a2bf16a2831b5c02a9e58d0568cd6f0/quicktions-1.22-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddddcb1aeb81f90c0ac54eba9a876188093ef1e43d6c58e693343e45f8f47c71",
"md5": "026f07d04033203d75616f5c869d3a7e",
"sha256": "1e3229756a46e9db47b9df40ac2143c2b77dbd1660635832f32a9054faf0ca65"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "026f07d04033203d75616f5c869d3a7e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 126845,
"upload_time": "2025-08-25T20:25:29",
"upload_time_iso_8601": "2025-08-25T20:25:29.951328Z",
"url": "https://files.pythonhosted.org/packages/dd/dd/cb1aeb81f90c0ac54eba9a876188093ef1e43d6c58e693343e45f8f47c71/quicktions-1.22-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "548d66a1f7668a9eaf8b8d0af391b50580748716a08a67ce18c6937a68dc71aa",
"md5": "fb9e8f0f60e4601b99added5b3447cec",
"sha256": "e6b7399a8a426a684d0552e5702f7f7182b4bface44b7274a939f7e75dbafa0a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "fb9e8f0f60e4601b99added5b3447cec",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 153118,
"upload_time": "2025-08-25T20:25:31",
"upload_time_iso_8601": "2025-08-25T20:25:31.354930Z",
"url": "https://files.pythonhosted.org/packages/54/8d/66a1f7668a9eaf8b8d0af391b50580748716a08a67ce18c6937a68dc71aa/quicktions-1.22-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b3f53614555d3955ac9ae32bc6875ae7272a08d26b3d244e39d9ac306769be4a",
"md5": "7ab452e65083881311e4e847de4ff7b8",
"sha256": "b767bc8403615022f7ee85a1fbd44c708b4b01daac14fd47bb8772584050e237"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "7ab452e65083881311e4e847de4ff7b8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 137576,
"upload_time": "2025-08-25T20:25:32",
"upload_time_iso_8601": "2025-08-25T20:25:32.775858Z",
"url": "https://files.pythonhosted.org/packages/b3/f5/3614555d3955ac9ae32bc6875ae7272a08d26b3d244e39d9ac306769be4a/quicktions-1.22-cp38-cp38-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b4224b7a5fe8939d9fa25ce1a62074ae11d60de0dd1ca524d6f8c2034c7cf50",
"md5": "024e02af43be49e349a59ce53c8903e1",
"sha256": "e25f30939ff57d74388afe637fd68cef2f5e293f187812992d41e941bfd1a071"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "024e02af43be49e349a59ce53c8903e1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 140143,
"upload_time": "2025-08-25T20:25:34",
"upload_time_iso_8601": "2025-08-25T20:25:34.244784Z",
"url": "https://files.pythonhosted.org/packages/4b/42/24b7a5fe8939d9fa25ce1a62074ae11d60de0dd1ca524d6f8c2034c7cf50/quicktions-1.22-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d24222415a3a097622f65c45a5ad2d494fe0ecc755a5f2b2661df1be49973f20",
"md5": "e0702770051e278170a664f98a5a8fe4",
"sha256": "f3e305423362ebd39c0b553cca79016d209e6186c7325c82f8192f11effb9019"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "e0702770051e278170a664f98a5a8fe4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 91895,
"upload_time": "2025-08-25T20:25:35",
"upload_time_iso_8601": "2025-08-25T20:25:35.717125Z",
"url": "https://files.pythonhosted.org/packages/d2/42/22415a3a097622f65c45a5ad2d494fe0ecc755a5f2b2661df1be49973f20/quicktions-1.22-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d25e14ab9a2c8942cf6a960f660fec3d124ca9123cf9c96ab2246678753ca727",
"md5": "b8abee66af6dec9b5409012df18880e2",
"sha256": "a1b9de1592ac2f9ba68895fe3120238c8bc2a9953c7792588e0f772cb18f7aab"
},
"downloads": -1,
"filename": "quicktions-1.22-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "b8abee66af6dec9b5409012df18880e2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 101138,
"upload_time": "2025-08-25T20:25:37",
"upload_time_iso_8601": "2025-08-25T20:25:37.108018Z",
"url": "https://files.pythonhosted.org/packages/d2/5e/14ab9a2c8942cf6a960f660fec3d124ca9123cf9c96ab2246678753ca727/quicktions-1.22-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "667e776793cf41cc3d1f8c7e665a2b4a03a897391109a2cdca9c8a60682f800a",
"md5": "05c9af9e54c965de976662cc4d1778b0",
"sha256": "00ecb800ef9b8be3a750c13c49d7fe9335f705df1f9417c14573510959bcf992"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "05c9af9e54c965de976662cc4d1778b0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 122326,
"upload_time": "2025-08-25T20:25:38",
"upload_time_iso_8601": "2025-08-25T20:25:38.617000Z",
"url": "https://files.pythonhosted.org/packages/66/7e/776793cf41cc3d1f8c7e665a2b4a03a897391109a2cdca9c8a60682f800a/quicktions-1.22-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c0572279f49891c1ba5a6a531da0e502def1f80ab204d57ee207e692a316878",
"md5": "3440b1aba02464600be508f3dd2c4bf5",
"sha256": "5939744064e14dc02a25e50ecdec3cf85c41b5026fb3ff6ca12170c6ead0a706"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3440b1aba02464600be508f3dd2c4bf5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 134389,
"upload_time": "2025-08-25T20:25:40",
"upload_time_iso_8601": "2025-08-25T20:25:40.209404Z",
"url": "https://files.pythonhosted.org/packages/2c/05/72279f49891c1ba5a6a531da0e502def1f80ab204d57ee207e692a316878/quicktions-1.22-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e53312a8f1b2daafbb199f86b292e5f0b7533420754ad83b8366b014bf38a188",
"md5": "77e1b76121f754d00676901c9edbade1",
"sha256": "6af54f5548b9e8316e0a1bd3b68dc0159248cb4d403985daeaaa0ae36da74078"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "77e1b76121f754d00676901c9edbade1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 155568,
"upload_time": "2025-08-25T20:25:41",
"upload_time_iso_8601": "2025-08-25T20:25:41.728956Z",
"url": "https://files.pythonhosted.org/packages/e5/33/12a8f1b2daafbb199f86b292e5f0b7533420754ad83b8366b014bf38a188/quicktions-1.22-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e91ff38ef9f15125f41a7ec10e779c087764dce5eda77e05af69f49725a78edf",
"md5": "3b41d14fe13c1c75c4a6aecd207af11f",
"sha256": "fcb968f65d46f65727586c4c1f0f432e96576a140e01aa8bc982f884f371915c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "3b41d14fe13c1c75c4a6aecd207af11f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 133566,
"upload_time": "2025-08-25T20:25:43",
"upload_time_iso_8601": "2025-08-25T20:25:43.167080Z",
"url": "https://files.pythonhosted.org/packages/e9/1f/f38ef9f15125f41a7ec10e779c087764dce5eda77e05af69f49725a78edf/quicktions-1.22-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af14a54b78273a84a54949a842aec7400d49c462cfc494837bba1f1aa810c8cb",
"md5": "b81f40594a34d5368c0d7490ab7451d1",
"sha256": "f097303843dd1a3ab3b2e673a2da2af457b722cb22ce4be142ea9f00c06a8ac0"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"has_sig": false,
"md5_digest": "b81f40594a34d5368c0d7490ab7451d1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 133560,
"upload_time": "2025-08-25T20:25:44",
"upload_time_iso_8601": "2025-08-25T20:25:44.462042Z",
"url": "https://files.pythonhosted.org/packages/af/14/a54b78273a84a54949a842aec7400d49c462cfc494837bba1f1aa810c8cb/quicktions-1.22-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68977d3451b5a8541965a06f22ae027406a8505fd560e5432fee26e66c9e4284",
"md5": "c3ad76c05aa3c7531f4b979632cb8d72",
"sha256": "0265cf535323f22f0ee3744cf6c95059108fe81a8f60562bf1bcc0a4dad1e784"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "c3ad76c05aa3c7531f4b979632cb8d72",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 141269,
"upload_time": "2025-08-25T20:25:45",
"upload_time_iso_8601": "2025-08-25T20:25:45.888568Z",
"url": "https://files.pythonhosted.org/packages/68/97/7d3451b5a8541965a06f22ae027406a8505fd560e5432fee26e66c9e4284/quicktions-1.22-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe5040476170ca633e35b22fa6e5f7be0815a403658bb19f93ff1816a33d05e3",
"md5": "8d07dbb4c749a0094b6cd036dabf768c",
"sha256": "e94e3a45766589fabb008e78929a68a5b607d7e7fed465ad0daeaa6eced5aa5a"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"has_sig": false,
"md5_digest": "8d07dbb4c749a0094b6cd036dabf768c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 159746,
"upload_time": "2025-08-25T20:25:47",
"upload_time_iso_8601": "2025-08-25T20:25:47.686101Z",
"url": "https://files.pythonhosted.org/packages/fe/50/40476170ca633e35b22fa6e5f7be0815a403658bb19f93ff1816a33d05e3/quicktions-1.22-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "338c71b53a79143b2390785a70f98c4c8863f27085c5dabc1f6133b6c320a2ce",
"md5": "2779f694317d11974842fbeba20dbffa",
"sha256": "91083171a88575d32ebc7ca5b3b0e524b55563881fb3746689e01ed4fba7b18c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"has_sig": false,
"md5_digest": "2779f694317d11974842fbeba20dbffa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 158758,
"upload_time": "2025-08-25T20:25:49",
"upload_time_iso_8601": "2025-08-25T20:25:49.242769Z",
"url": "https://files.pythonhosted.org/packages/33/8c/71b53a79143b2390785a70f98c4c8863f27085c5dabc1f6133b6c320a2ce/quicktions-1.22-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51e806752193883c338d0e1fc41a22e1f479284ab795b239eed706e994b87ec7",
"md5": "5fc3ce4d358362bc57ea4b9c4eaa58cd",
"sha256": "57178b70c01584c8f0989274194476e0ecc350a02e2f68f42002814eb79b2a1c"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "5fc3ce4d358362bc57ea4b9c4eaa58cd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 144920,
"upload_time": "2025-08-25T20:25:50",
"upload_time_iso_8601": "2025-08-25T20:25:50.688887Z",
"url": "https://files.pythonhosted.org/packages/51/e8/06752193883c338d0e1fc41a22e1f479284ab795b239eed706e994b87ec7/quicktions-1.22-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7b36f330735f87a07bc7b5a07b4f9683f4a565eddcdffecdc1563557231ba55b",
"md5": "b3950ef6e7b35c2bce17c2c145cf7c39",
"sha256": "3adeb2fb50776a1070fe9f31b8116691c75ffd13fa013e80f737998b39cb1578"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"has_sig": false,
"md5_digest": "b3950ef6e7b35c2bce17c2c145cf7c39",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 144905,
"upload_time": "2025-08-25T20:25:52",
"upload_time_iso_8601": "2025-08-25T20:25:52.082959Z",
"url": "https://files.pythonhosted.org/packages/7b/36/f330735f87a07bc7b5a07b4f9683f4a565eddcdffecdc1563557231ba55b/quicktions-1.22-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_34_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfebcb0fbd0437c3b1e9cc80818008fc41d92fc3da17f09869c060343296bdd3",
"md5": "a930c5d6c32ef934b104ef1f2fbc3c04",
"sha256": "beb1983f7924a9d5481746eb317cbe0691e6eb25b25484ec007bae434699ffa9"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"has_sig": false,
"md5_digest": "a930c5d6c32ef934b104ef1f2fbc3c04",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 146026,
"upload_time": "2025-08-25T20:25:53",
"upload_time_iso_8601": "2025-08-25T20:25:53.421820Z",
"url": "https://files.pythonhosted.org/packages/df/eb/cb0fbd0437c3b1e9cc80818008fc41d92fc3da17f09869c060343296bdd3/quicktions-1.22-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39db0122e8d3cd2d71013976a53bf595124464bb8ab2de59da377099412a2a4a",
"md5": "8a1f0919309161e8bcd6ead9c3f53495",
"sha256": "a779f39f4bdc3b9b22cc09aa4af77c67898f21005692c83be85a603d2ea57da3"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8a1f0919309161e8bcd6ead9c3f53495",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 134032,
"upload_time": "2025-08-25T20:25:54",
"upload_time_iso_8601": "2025-08-25T20:25:54.828529Z",
"url": "https://files.pythonhosted.org/packages/39/db/0122e8d3cd2d71013976a53bf595124464bb8ab2de59da377099412a2a4a/quicktions-1.22-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "973094809ee4baecd447c2f728cccbb5dea1c8554de6c5ccb874fc5cac7d98fb",
"md5": "647239507fec448443cff9efbf697fc0",
"sha256": "919e77be9d9e0d92080ef95703b2234f8340c2aba4e2bcfe039c42e99cfdcab3"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "647239507fec448443cff9efbf697fc0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 134064,
"upload_time": "2025-08-25T20:25:56",
"upload_time_iso_8601": "2025-08-25T20:25:56.160230Z",
"url": "https://files.pythonhosted.org/packages/97/30/94809ee4baecd447c2f728cccbb5dea1c8554de6c5ccb874fc5cac7d98fb/quicktions-1.22-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ac6638ae55a0835c3f36e551744cbebc540cde12cb9692c96d90240aec2a475",
"md5": "67f1df4115965d108285be9e4ceb65e4",
"sha256": "066dd23444a16538e3cb8d9b41329f3b337fa886ac537dae17aade70ea78c508"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "67f1df4115965d108285be9e4ceb65e4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 158981,
"upload_time": "2025-08-25T20:25:57",
"upload_time_iso_8601": "2025-08-25T20:25:57.970254Z",
"url": "https://files.pythonhosted.org/packages/1a/c6/638ae55a0835c3f36e551744cbebc540cde12cb9692c96d90240aec2a475/quicktions-1.22-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96882dcae61d4d60a96fe12245ae121ee3fb6fd6b12c92ffc1aac4f1bfe3765c",
"md5": "ff19376bb27aad72e305b3331adf8f57",
"sha256": "c1afa394b0e9bf8669be98ee49caab7f2a102a29a2b23c2fed8a1fbecb05f991"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "ff19376bb27aad72e305b3331adf8f57",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 145898,
"upload_time": "2025-08-25T20:25:59",
"upload_time_iso_8601": "2025-08-25T20:25:59.758221Z",
"url": "https://files.pythonhosted.org/packages/96/88/2dcae61d4d60a96fe12245ae121ee3fb6fd6b12c92ffc1aac4f1bfe3765c/quicktions-1.22-cp39-cp39-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cabf9d7f8ac33aba86eea13b89c26cc4ccd47cc201628e565e657b5850263d01",
"md5": "05a82ea35137889f7859f969308166f0",
"sha256": "36e5d6b10b636217bfa68b06390bfe2cc7e62bd1cb42343ecfeb610bb9d129f9"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "05a82ea35137889f7859f969308166f0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 145316,
"upload_time": "2025-08-25T20:26:01",
"upload_time_iso_8601": "2025-08-25T20:26:01.435961Z",
"url": "https://files.pythonhosted.org/packages/ca/bf/9d7f8ac33aba86eea13b89c26cc4ccd47cc201628e565e657b5850263d01/quicktions-1.22-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "725a60f920170c098297b3c8b04c1ca130403b9fb9c67b942d8637242b72feb8",
"md5": "e437a4b709332e892de59f35af97a779",
"sha256": "ee975a8b5319c1a0653789341e0dde42443ad9cbe328370f08ce55aab602ab26"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "e437a4b709332e892de59f35af97a779",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 91115,
"upload_time": "2025-08-25T20:26:02",
"upload_time_iso_8601": "2025-08-25T20:26:02.814995Z",
"url": "https://files.pythonhosted.org/packages/72/5a/60f920170c098297b3c8b04c1ca130403b9fb9c67b942d8637242b72feb8/quicktions-1.22-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "326e1382879c6e9ad1038b647cdc738560dcb7faa492f3425b8769976973ceca",
"md5": "76674d2b260d0df52bd47b4ab443c05f",
"sha256": "af4d264a2c5de27161cc484a723273a1950a3ca3dfa29719cdcc346fbe7785be"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "76674d2b260d0df52bd47b4ab443c05f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 100352,
"upload_time": "2025-08-25T20:26:04",
"upload_time_iso_8601": "2025-08-25T20:26:04.634672Z",
"url": "https://files.pythonhosted.org/packages/32/6e/1382879c6e9ad1038b647cdc738560dcb7faa492f3425b8769976973ceca/quicktions-1.22-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e4087704925d49dfd3fc3e6d84e6d8baf98dde51fdc4aa71c6ce44a0034a70e",
"md5": "d66c6ff836ac93ebd80dbcc747e8d1ae",
"sha256": "81bacfe4c2a64ca11864db2f861cf22ad52c6f2d715eb855b94116c910892d91"
},
"downloads": -1,
"filename": "quicktions-1.22-cp39-cp39-win_arm64.whl",
"has_sig": false,
"md5_digest": "d66c6ff836ac93ebd80dbcc747e8d1ae",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 85914,
"upload_time": "2025-08-25T20:26:06",
"upload_time_iso_8601": "2025-08-25T20:26:06.007697Z",
"url": "https://files.pythonhosted.org/packages/8e/40/87704925d49dfd3fc3e6d84e6d8baf98dde51fdc4aa71c6ce44a0034a70e/quicktions-1.22-cp39-cp39-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c4f41c57a2b7302d854a369ca2210d054e759f5e69d703bcf42375d6c29fff0",
"md5": "fc76015056a6610c17028067e3f15a9d",
"sha256": "207d74b05d5ae166d184a51807dbe667303e408118ffb28f7fcd016792664e58"
},
"downloads": -1,
"filename": "quicktions-1.22.tar.gz",
"has_sig": false,
"md5_digest": "fc76015056a6610c17028067e3f15a9d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 398517,
"upload_time": "2025-08-25T20:26:07",
"upload_time_iso_8601": "2025-08-25T20:26:07.678654Z",
"url": "https://files.pythonhosted.org/packages/2c/4f/41c57a2b7302d854a369ca2210d054e759f5e69d703bcf42375d6c29fff0/quicktions-1.22.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-25 20:26:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "scoder",
"github_project": "quicktions",
"travis_ci": true,
"coveralls": true,
"github_actions": true,
"appveyor": true,
"requirements": [
{
"name": "tox",
"specs": []
},
{
"name": "pytest",
"specs": []
},
{
"name": "coverage",
"specs": []
},
{
"name": "Cython",
"specs": [
[
">=",
"3.1.3"
]
]
},
{
"name": "codecov",
"specs": []
},
{
"name": "wheel",
"specs": []
}
],
"tox": true,
"lcname": "quicktions"
}