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.13a3) 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,
computations in ``quicktions`` are about
- 10x faster in Python 2.7 and 3.4
- 6x faster in Python 3.5
- 3-4x faster in Python 3.10
Compared to the ``fractions`` module in CPython 3.10, 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-4x 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.12, the different number types and implementations compare
as follows in CPython 3.10:
.. code-block::
Average times for all 'create' benchmarks:
float : 36.17 us (1.0x)
Decimal : 111.71 us (3.1x)
Fraction : 111.98 us (3.1x)
PyFraction : 398.80 us (11.0x)
Average times for all 'compute' benchmarks:
float : 4.53 us (1.0x)
Decimal : 16.62 us (3.7x)
Fraction : 72.91 us (16.1x)
PyFraction : 251.93 us (55.6x)
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.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/b5/f0/387c401cbc569d4d6fcef942e84284a80bc171418c04e1c3fade9fe7c7e1/quicktions-1.19.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.13a3) 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,\ncomputations in ``quicktions`` are about\n\n- 10x faster in Python 2.7 and 3.4\n- 6x faster in Python 3.5\n- 3-4x faster in Python 3.10\n\nCompared to the ``fractions`` module in CPython 3.10, instantiation of a\n``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-4x 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.12, the different number types and implementations compare\nas follows in CPython 3.10:\n\n.. code-block::\n\n Average times for all 'create' benchmarks:\n float : 36.17 us (1.0x)\n Decimal : 111.71 us (3.1x)\n Fraction : 111.98 us (3.1x)\n PyFraction : 398.80 us (11.0x)\n\n Average times for all 'compute' benchmarks:\n float : 4.53 us (1.0x)\n Decimal : 16.62 us (3.7x)\n Fraction : 72.91 us (16.1x)\n PyFraction : 251.93 us (55.6x)\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.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": null,
"summary": "Fast fractions data type for rational numbers. Cythonized version of 'fractions.Fraction'.",
"version": "1.19",
"project_urls": {
"Homepage": "https://github.com/scoder/quicktions"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "865f70988e93b3be45cc9baa2c2640323399c0bc7d98131013a7737069a53c6a",
"md5": "e7e8dda2748ae0fb9185bc06cdcb8cad",
"sha256": "6703a1991a3c2a8d22b85130a09f20d9d822a09161de09114a0062bd599533dd"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e7e8dda2748ae0fb9185bc06cdcb8cad",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 120710,
"upload_time": "2024-11-29T10:05:47",
"upload_time_iso_8601": "2024-11-29T10:05:47.103251Z",
"url": "https://files.pythonhosted.org/packages/86/5f/70988e93b3be45cc9baa2c2640323399c0bc7d98131013a7737069a53c6a/quicktions-1.19-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f858f1a626f34e0faf05975f12e9d74ef54e1311c965f12d85d337db030f24dc",
"md5": "79db0b3810fd829c92069795f78c2f35",
"sha256": "898f893ffacb44ed3cf23d5646abf554b29dd98866b88d02a1a0d9b871919333"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "79db0b3810fd829c92069795f78c2f35",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 113852,
"upload_time": "2024-11-29T10:05:48",
"upload_time_iso_8601": "2024-11-29T10:05:48.677402Z",
"url": "https://files.pythonhosted.org/packages/f8/58/f1a626f34e0faf05975f12e9d74ef54e1311c965f12d85d337db030f24dc/quicktions-1.19-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ec648249c086a985a0957f190b371dadd70d966911e07c1517b22a514507584",
"md5": "96d34020b908f0050a684398489a4939",
"sha256": "7a6e25df124b8cda67caacfbeeac59d063f5c4fc8225d12bf0da89e33c476c2e"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "96d34020b908f0050a684398489a4939",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 126491,
"upload_time": "2024-11-29T10:05:50",
"upload_time_iso_8601": "2024-11-29T10:05:50.737748Z",
"url": "https://files.pythonhosted.org/packages/5e/c6/48249c086a985a0957f190b371dadd70d966911e07c1517b22a514507584/quicktions-1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fac16378fa8c790db9e7568840c7343578fe4eff24e9799e1c9d621bbd18200",
"md5": "a3ee6b9ea541c72477eb962578dbe53a",
"sha256": "748ebd44fd6c465d6f935ebb5b86c7a7ca486ffd50dab3b1738d5a52d63faefa"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "a3ee6b9ea541c72477eb962578dbe53a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 138856,
"upload_time": "2024-11-29T10:05:52",
"upload_time_iso_8601": "2024-11-29T10:05:52.261395Z",
"url": "https://files.pythonhosted.org/packages/4f/ac/16378fa8c790db9e7568840c7343578fe4eff24e9799e1c9d621bbd18200/quicktions-1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ff8ef1f27146bb73523dfc5440f2684967fdc8af8dfcc63e60ec8eb251bd314",
"md5": "2a686c6615d488a3003ef64dd57cc615",
"sha256": "50122d4fdd995fd6417555b22ba5f6cc951de334522263e76f838278729201e6"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2a686c6615d488a3003ef64dd57cc615",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 157686,
"upload_time": "2024-11-29T10:05:53",
"upload_time_iso_8601": "2024-11-29T10:05:53.753639Z",
"url": "https://files.pythonhosted.org/packages/8f/f8/ef1f27146bb73523dfc5440f2684967fdc8af8dfcc63e60ec8eb251bd314/quicktions-1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec786d5ec15a5b65766bddd03f87da11821414f348ccbe5c7061983768b77e8e",
"md5": "102ce74b0d404d9f85c115a21797f779",
"sha256": "10fe317cbb79c8a74809e5ee56548a901218c94eb1243a2963552aedf63c3ce7"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "102ce74b0d404d9f85c115a21797f779",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 132878,
"upload_time": "2024-11-29T10:05:55",
"upload_time_iso_8601": "2024-11-29T10:05:55.075843Z",
"url": "https://files.pythonhosted.org/packages/ec/78/6d5ec15a5b65766bddd03f87da11821414f348ccbe5c7061983768b77e8e/quicktions-1.19-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d51cc8e9ef56ec8337933d1f96ec0eae911c0bba6b7ebb06f4a09fe22f428479",
"md5": "3c9d9c8443d7558b46a396bb604f37ea",
"sha256": "e4e5d0405eff96b7257d0eee9ebcaea561873fee0d256a981d51af5e8a2a1a37"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "3c9d9c8443d7558b46a396bb604f37ea",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 141801,
"upload_time": "2024-11-29T10:05:57",
"upload_time_iso_8601": "2024-11-29T10:05:57.174282Z",
"url": "https://files.pythonhosted.org/packages/d5/1c/c8e9ef56ec8337933d1f96ec0eae911c0bba6b7ebb06f4a09fe22f428479/quicktions-1.19-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8be4684bbf8f39c5e47898b465d2b2126db62b74605388eb890720ab45b15055",
"md5": "61ec61fe66ed02b7063decb6718f95f8",
"sha256": "7f8fe64c449a515fe2b2b11bad8e2269f0e21f27aae6893ffd7243c0c7c45beb"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "61ec61fe66ed02b7063decb6718f95f8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 126609,
"upload_time": "2024-11-29T10:05:58",
"upload_time_iso_8601": "2024-11-29T10:05:58.506418Z",
"url": "https://files.pythonhosted.org/packages/8b/e4/684bbf8f39c5e47898b465d2b2126db62b74605388eb890720ab45b15055/quicktions-1.19-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f859a96e46c60697d9da4afcc92855b84a9a584f3691690111714d7287396f9c",
"md5": "79c8e3d184380e57654e290ba184451f",
"sha256": "5b20ab5b9b9621f17ac0da2a92dcb07656d0ca66786c92d2a9de1252eb7ae73a"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "79c8e3d184380e57654e290ba184451f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 139038,
"upload_time": "2024-11-29T10:05:59",
"upload_time_iso_8601": "2024-11-29T10:05:59.896871Z",
"url": "https://files.pythonhosted.org/packages/f8/59/a96e46c60697d9da4afcc92855b84a9a584f3691690111714d7287396f9c/quicktions-1.19-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dc6d9827ab828eb5c1334001ca8c78eb7a3ff991a0e10492c527c20380a2a38",
"md5": "1f5bc14a5027e2ec1849d708780d8f4d",
"sha256": "72b8a7dde7e03ac53714d1f3b8b0e48c7edff99ba76fd0b3edc69212d080d9ce"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "1f5bc14a5027e2ec1849d708780d8f4d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 91934,
"upload_time": "2024-11-29T10:06:01",
"upload_time_iso_8601": "2024-11-29T10:06:01.934025Z",
"url": "https://files.pythonhosted.org/packages/1d/c6/d9827ab828eb5c1334001ca8c78eb7a3ff991a0e10492c527c20380a2a38/quicktions-1.19-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fcaa620a60eaf6587b6922b819993dda8d0da44f14fccb6cc7edc57971b5dfd7",
"md5": "2fa26b3d1f9cd263b448b01218deb88b",
"sha256": "2b78c34b5a36c04877b2315d5e49c8f2bd41cffd109a91f0192ccabd783b0918"
},
"downloads": -1,
"filename": "quicktions-1.19-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "2fa26b3d1f9cd263b448b01218deb88b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 100282,
"upload_time": "2024-11-29T10:06:03",
"upload_time_iso_8601": "2024-11-29T10:06:03.324940Z",
"url": "https://files.pythonhosted.org/packages/fc/aa/620a60eaf6587b6922b819993dda8d0da44f14fccb6cc7edc57971b5dfd7/quicktions-1.19-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1a9f33132268a2671cab5970f8d85fbc314f468b48bd30e6c374f486edc42a2",
"md5": "70bd1d334f465324014de0b56a3c719b",
"sha256": "413b2214cb9448724f3fc33ede05e4f4ea256e1233ab9b872aa8a4d418e20c29"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "70bd1d334f465324014de0b56a3c719b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 120964,
"upload_time": "2024-11-29T10:06:04",
"upload_time_iso_8601": "2024-11-29T10:06:04.905454Z",
"url": "https://files.pythonhosted.org/packages/b1/a9/f33132268a2671cab5970f8d85fbc314f468b48bd30e6c374f486edc42a2/quicktions-1.19-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d32f2c21cd2ccf15bc9cebe451862ea86dd18115219ef71f714ed2ae3d98997",
"md5": "52bd687df764899ada0f529ae99d3803",
"sha256": "509a5f1750b4c903d93a50b57d44da942ca7af7b03f434885eafbe88315f951d"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "52bd687df764899ada0f529ae99d3803",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 113600,
"upload_time": "2024-11-29T10:06:06",
"upload_time_iso_8601": "2024-11-29T10:06:06.634451Z",
"url": "https://files.pythonhosted.org/packages/3d/32/f2c21cd2ccf15bc9cebe451862ea86dd18115219ef71f714ed2ae3d98997/quicktions-1.19-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "177144481d28a3c7fd5f596b977bb0f82ce7fa8add16a671dc369a598f77a4f7",
"md5": "7b12bddafa9a669b1c9470d2e2eb7a2e",
"sha256": "8c07eb08365e148bfca2b997228a47e722e091352cc87303eadb22d0c81d8d72"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "7b12bddafa9a669b1c9470d2e2eb7a2e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 126038,
"upload_time": "2024-11-29T10:06:09",
"upload_time_iso_8601": "2024-11-29T10:06:09.602908Z",
"url": "https://files.pythonhosted.org/packages/17/71/44481d28a3c7fd5f596b977bb0f82ce7fa8add16a671dc369a598f77a4f7/quicktions-1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89d67f18db4814c487cd0492915bd265ebf3fb0ee34efe9a4d815de4e612eb96",
"md5": "c2c52b082a3b9b57bc01d2b53bd8faae",
"sha256": "f1b1d4093f4c68836fac43b99f00a1c4c8042e0be7d0a5bee6cb28b89e8408bf"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c2c52b082a3b9b57bc01d2b53bd8faae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 138372,
"upload_time": "2024-11-29T10:06:11",
"upload_time_iso_8601": "2024-11-29T10:06:11.592044Z",
"url": "https://files.pythonhosted.org/packages/89/d6/7f18db4814c487cd0492915bd265ebf3fb0ee34efe9a4d815de4e612eb96/quicktions-1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "23112c61ca474fb3b06e89a23ce9f569b918965d14089c853bee8943511a675b",
"md5": "eeac47275f08edfbbedf8924b00fba7a",
"sha256": "43b660a5cf51613208bc2f32cf9175e82f3fca609da8fadda98f4adfb4666b51"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "eeac47275f08edfbbedf8924b00fba7a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 149553,
"upload_time": "2024-11-29T10:06:12",
"upload_time_iso_8601": "2024-11-29T10:06:12.993672Z",
"url": "https://files.pythonhosted.org/packages/23/11/2c61ca474fb3b06e89a23ce9f569b918965d14089c853bee8943511a675b/quicktions-1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3b8b27fd3efca54a4b09ec714d266141b7f31a7ca840c5feb25571c6dc53a43",
"md5": "a083cc0d472743018f85644895771a23",
"sha256": "0bbca1cd912c4a750b24b5db21859a0307392cf6118937426efd81f733809567"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "a083cc0d472743018f85644895771a23",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 132587,
"upload_time": "2024-11-29T10:06:14",
"upload_time_iso_8601": "2024-11-29T10:06:14.415421Z",
"url": "https://files.pythonhosted.org/packages/b3/b8/b27fd3efca54a4b09ec714d266141b7f31a7ca840c5feb25571c6dc53a43/quicktions-1.19-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f546f363d3bae836a8bc2f5a4a50eb8507cc8882e15933f5aa24f51b5cae44b",
"md5": "4434ec4d17d2fc1b49cab4fadba003d8",
"sha256": "7e6283d2543bc15aa074a7b429f357e83583bc79f44512768a78da48c403e346"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4434ec4d17d2fc1b49cab4fadba003d8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 141240,
"upload_time": "2024-11-29T10:06:15",
"upload_time_iso_8601": "2024-11-29T10:06:15.859730Z",
"url": "https://files.pythonhosted.org/packages/2f/54/6f363d3bae836a8bc2f5a4a50eb8507cc8882e15933f5aa24f51b5cae44b/quicktions-1.19-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12676b073da5db49fe59050d9ead87b9d848be749447b6cf958847c6572cb0f0",
"md5": "8d9413aa0ddd2f907fb0225d436b8318",
"sha256": "12b073fadc9ce6dc02fa0909002e9787dbbe1682989b8d6eef4322d85bf9dddc"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8d9413aa0ddd2f907fb0225d436b8318",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 126156,
"upload_time": "2024-11-29T10:06:17",
"upload_time_iso_8601": "2024-11-29T10:06:17.247634Z",
"url": "https://files.pythonhosted.org/packages/12/67/6b073da5db49fe59050d9ead87b9d848be749447b6cf958847c6572cb0f0/quicktions-1.19-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7a78b86ee8b18ffab33fe1fd5945fad0c430cf157fcb5d8625112bfc4e329fb",
"md5": "536e7ca7b99a006f68b467e925df186b",
"sha256": "2b804ea58683e14b70c1d56c2f11daf0a2e56950dcd1a3b82fa48c2b0084b74c"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "536e7ca7b99a006f68b467e925df186b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 138639,
"upload_time": "2024-11-29T10:06:18",
"upload_time_iso_8601": "2024-11-29T10:06:18.677241Z",
"url": "https://files.pythonhosted.org/packages/d7/a7/8b86ee8b18ffab33fe1fd5945fad0c430cf157fcb5d8625112bfc4e329fb/quicktions-1.19-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b6336033c29681970038779c6c111e205d9506a69cc5a57db8bc0c422c299b22",
"md5": "1923b396816b330ac635829129581734",
"sha256": "08fe8afe716ab9791027f70e2b4d05ecac1271bc702cd1dd9169f24845bcafb1"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "1923b396816b330ac635829129581734",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 90267,
"upload_time": "2024-11-29T10:06:19",
"upload_time_iso_8601": "2024-11-29T10:06:19.973345Z",
"url": "https://files.pythonhosted.org/packages/b6/33/6033c29681970038779c6c111e205d9506a69cc5a57db8bc0c422c299b22/quicktions-1.19-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dba34513d2c6c9d866d9bb9d3d6a60cb41d9cce64fcea733e09a40f6dbf90646",
"md5": "3808d116cfbbfda37a5a595e2af59deb",
"sha256": "1f1656e9cd21f8af76257b3dca9c6ba8c8acd5df8b186bee24cb8ca9f8d1a58b"
},
"downloads": -1,
"filename": "quicktions-1.19-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "3808d116cfbbfda37a5a595e2af59deb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 100230,
"upload_time": "2024-11-29T10:06:21",
"upload_time_iso_8601": "2024-11-29T10:06:21.520797Z",
"url": "https://files.pythonhosted.org/packages/db/a3/4513d2c6c9d866d9bb9d3d6a60cb41d9cce64fcea733e09a40f6dbf90646/quicktions-1.19-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0598041cc6d90437f493a51e853e14fe89fee7646bc76af8c0dc9ef2d7bd4cab",
"md5": "0a0d33383cad815f10baea474b24ce24",
"sha256": "31c27762cbd06f554ac41e550327e0f286088a2333d86ceb3a35a93104edfa8c"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0a0d33383cad815f10baea474b24ce24",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 123931,
"upload_time": "2024-11-29T10:06:22",
"upload_time_iso_8601": "2024-11-29T10:06:22.982101Z",
"url": "https://files.pythonhosted.org/packages/05/98/041cc6d90437f493a51e853e14fe89fee7646bc76af8c0dc9ef2d7bd4cab/quicktions-1.19-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "176f004e0a786db4de9598fa91e5f750fd29f3cc14ffe7ee342e55877aecaf7e",
"md5": "f39d16b162215e890a2191edc4ff8968",
"sha256": "57f4002d89106eba472c46cc6899f9432be3457a95c32c907af35d4e6e4ac497"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f39d16b162215e890a2191edc4ff8968",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 115244,
"upload_time": "2024-11-29T10:06:24",
"upload_time_iso_8601": "2024-11-29T10:06:24.255492Z",
"url": "https://files.pythonhosted.org/packages/17/6f/004e0a786db4de9598fa91e5f750fd29f3cc14ffe7ee342e55877aecaf7e/quicktions-1.19-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f995568ed135f3576fc2fdcf30f442a4711c79539c9a88373b027a7104aae39",
"md5": "91e3e749b5a8b4d138cc80ac0a626f47",
"sha256": "ce702537f3ea8902393cff853f147f16bd9b9228887c78cdb1aee85425fda4d1"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "91e3e749b5a8b4d138cc80ac0a626f47",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 123473,
"upload_time": "2024-11-29T10:06:26",
"upload_time_iso_8601": "2024-11-29T10:06:26.379920Z",
"url": "https://files.pythonhosted.org/packages/4f/99/5568ed135f3576fc2fdcf30f442a4711c79539c9a88373b027a7104aae39/quicktions-1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6390eba8406b668fb6056ee33984b938d5c945df832496f89785107d8da25742",
"md5": "45d1611a7e5181f501006693e63ac453",
"sha256": "b226b5c0071223b6b9ece5b8902e2beff5d042af11efe1cf9fe26ca555c1f18d"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "45d1611a7e5181f501006693e63ac453",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 136492,
"upload_time": "2024-11-29T10:06:27",
"upload_time_iso_8601": "2024-11-29T10:06:27.787429Z",
"url": "https://files.pythonhosted.org/packages/63/90/eba8406b668fb6056ee33984b938d5c945df832496f89785107d8da25742/quicktions-1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7f38f149dd25bf840abcdbe18864fbc8f914419e6d8a33188d2957230314914",
"md5": "23732707269d8dfaf4a2650a4a13f097",
"sha256": "cc38e61ca3564e2cdf64ddb92ed403ee3d71b045453e9957ff816a6ae70ba2b7"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "23732707269d8dfaf4a2650a4a13f097",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 148389,
"upload_time": "2024-11-29T10:06:31",
"upload_time_iso_8601": "2024-11-29T10:06:31.453620Z",
"url": "https://files.pythonhosted.org/packages/d7/f3/8f149dd25bf840abcdbe18864fbc8f914419e6d8a33188d2957230314914/quicktions-1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "31c6481a79f4a2cbe986338628c094f26bbcb9272a93801fdd6f4a03f299a32e",
"md5": "2611a0339c55e5a22155207e359a27d7",
"sha256": "06c5230203530eb1d4792475f806d5e6bdef59c15d93ba69f00854949fc62af6"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2611a0339c55e5a22155207e359a27d7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 129875,
"upload_time": "2024-11-29T10:06:32",
"upload_time_iso_8601": "2024-11-29T10:06:32.796648Z",
"url": "https://files.pythonhosted.org/packages/31/c6/481a79f4a2cbe986338628c094f26bbcb9272a93801fdd6f4a03f299a32e/quicktions-1.19-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03d031535e06d7f2a08e82ba5d1a75ef690b71c54de5df5554383f23cc8fceae",
"md5": "bbec52191a396d0ff4322174eb722613",
"sha256": "644cbeb4aa6507acbcc88fdb8ba7c72a3b2d71f26e6570bf9fb09a33fb3bbbbb"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "bbec52191a396d0ff4322174eb722613",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 140858,
"upload_time": "2024-11-29T10:06:34",
"upload_time_iso_8601": "2024-11-29T10:06:34.228366Z",
"url": "https://files.pythonhosted.org/packages/03/d0/31535e06d7f2a08e82ba5d1a75ef690b71c54de5df5554383f23cc8fceae/quicktions-1.19-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c42ec7ee04858868085c68831187896c1dc3a9a70df20f73a6b9501a12cd8e00",
"md5": "b5bd2a39c05bf23f5e449e94f320bcd5",
"sha256": "7e881c999224a4b7c0b885ba9a0868e97dc17f4364d8f55d518a6858629b9569"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b5bd2a39c05bf23f5e449e94f320bcd5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 123455,
"upload_time": "2024-11-29T10:06:35",
"upload_time_iso_8601": "2024-11-29T10:06:35.558234Z",
"url": "https://files.pythonhosted.org/packages/c4/2e/c7ee04858868085c68831187896c1dc3a9a70df20f73a6b9501a12cd8e00/quicktions-1.19-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb26d5fc19a760fe3c96a20790368025c54bcf1b1ba952982046aed011132e40",
"md5": "52ab65506fe8585b26ec9c91806375dc",
"sha256": "5677601c6104d9f46caef14727e963c6648fef4057124a5376592593a00121ad"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "52ab65506fe8585b26ec9c91806375dc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 136813,
"upload_time": "2024-11-29T10:06:37",
"upload_time_iso_8601": "2024-11-29T10:06:37.639526Z",
"url": "https://files.pythonhosted.org/packages/cb/26/d5fc19a760fe3c96a20790368025c54bcf1b1ba952982046aed011132e40/quicktions-1.19-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbf163d0badc81d9f037433c068feb25dae952adfd1733102561b72f8bbfd665",
"md5": "4332ac09ef72cb59c396cbc22a7e8cd2",
"sha256": "dabb764a9cd62a4da215df4eb7694aed195d268ecef9f34aa824fef0baa728e4"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "4332ac09ef72cb59c396cbc22a7e8cd2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 93244,
"upload_time": "2024-11-29T10:06:39",
"upload_time_iso_8601": "2024-11-29T10:06:39.931478Z",
"url": "https://files.pythonhosted.org/packages/db/f1/63d0badc81d9f037433c068feb25dae952adfd1733102561b72f8bbfd665/quicktions-1.19-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f55b6b9a066cfecc828a01b4c42e459b498b280b71625873a5a5d1f8d71c010e",
"md5": "6709694338e20c4916501493d20268de",
"sha256": "b37bea1a9fbd8986497b220d45d3be227ee39eb1cc4103e72137f0e11b651281"
},
"downloads": -1,
"filename": "quicktions-1.19-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "6709694338e20c4916501493d20268de",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 102601,
"upload_time": "2024-11-29T10:06:41",
"upload_time_iso_8601": "2024-11-29T10:06:41.349043Z",
"url": "https://files.pythonhosted.org/packages/f5/5b/6b9a066cfecc828a01b4c42e459b498b280b71625873a5a5d1f8d71c010e/quicktions-1.19-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "adb4459a2155e286f02cebf05c086ee78b4dcb7b14192cf1d8c42b43df7591f1",
"md5": "2d0aa1f69596a7172c7edf418c6aa450",
"sha256": "8caaeb4373dd2b8478adeabcffe0b6129e108a721ef9ea41c921b8e43cb066f8"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2d0aa1f69596a7172c7edf418c6aa450",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 115938,
"upload_time": "2024-11-29T10:06:42",
"upload_time_iso_8601": "2024-11-29T10:06:42.744383Z",
"url": "https://files.pythonhosted.org/packages/ad/b4/459a2155e286f02cebf05c086ee78b4dcb7b14192cf1d8c42b43df7591f1/quicktions-1.19-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26a9be5587692d7ce08f13e40390b24e90cec23329f90a3f99032462a8c4d7cc",
"md5": "b45a67337924323ad56433e7d5fb56f6",
"sha256": "2753017699de885f018874c865100e8fdd3ac8cdcaf2989fc9eb224cd1471a39"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "b45a67337924323ad56433e7d5fb56f6",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 119822,
"upload_time": "2024-11-29T10:06:44",
"upload_time_iso_8601": "2024-11-29T10:06:44.223114Z",
"url": "https://files.pythonhosted.org/packages/26/a9/be5587692d7ce08f13e40390b24e90cec23329f90a3f99032462a8c4d7cc/quicktions-1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af25aaa9c5ac5b9bec5fdf5b04416a0602af6dfc9dec9f931f5e011139875a3f",
"md5": "ecfaa7fd748f64033af0d36e882a20fa",
"sha256": "29caaae8b8876fafa015ff390a58d83bcaf0c7cc41aff6e015d39736c97b8026"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "ecfaa7fd748f64033af0d36e882a20fa",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 130829,
"upload_time": "2024-11-29T10:06:46",
"upload_time_iso_8601": "2024-11-29T10:06:46.812182Z",
"url": "https://files.pythonhosted.org/packages/af/25/aaa9c5ac5b9bec5fdf5b04416a0602af6dfc9dec9f931f5e011139875a3f/quicktions-1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "066d35dba3e975c7d3a86c8f8685d5df0de241e80575ead351ea0073615fc15e",
"md5": "2f03861bb5ec472d2bd233bba8023e9f",
"sha256": "0706043d7709d809811cb6998acb7cbc86e6c2f963a374cf6dc3e673a636894a"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2f03861bb5ec472d2bd233bba8023e9f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 146887,
"upload_time": "2024-11-29T10:06:48",
"upload_time_iso_8601": "2024-11-29T10:06:48.478775Z",
"url": "https://files.pythonhosted.org/packages/06/6d/35dba3e975c7d3a86c8f8685d5df0de241e80575ead351ea0073615fc15e/quicktions-1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a3ede677e5f6414909dd37cbf6ffbce3beba8823b978419bf75f6e2b7944efa",
"md5": "68266a20a304ac43a812545c49f6c182",
"sha256": "45883ecdaa750e540bdefe8d276ef7428861098183bf7a6b371b4682930ece32"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "68266a20a304ac43a812545c49f6c182",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 126441,
"upload_time": "2024-11-29T10:06:49",
"upload_time_iso_8601": "2024-11-29T10:06:49.778494Z",
"url": "https://files.pythonhosted.org/packages/3a/3e/de677e5f6414909dd37cbf6ffbce3beba8823b978419bf75f6e2b7944efa/quicktions-1.19-cp36-cp36m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea2abb4ac73a024d08993f1e9f722ab0b20d58b8cffb2c083e3d710c1a12caa6",
"md5": "d8fe2930f20ccc0e8508273d7b4e2ff8",
"sha256": "38f081fbb06c06d0d8d7830f34460ba2fa303a7b09643ffb1392a2c68857c44c"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d8fe2930f20ccc0e8508273d7b4e2ff8",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 135686,
"upload_time": "2024-11-29T10:06:51",
"upload_time_iso_8601": "2024-11-29T10:06:51.430796Z",
"url": "https://files.pythonhosted.org/packages/ea/2a/bb4ac73a024d08993f1e9f722ab0b20d58b8cffb2c083e3d710c1a12caa6/quicktions-1.19-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1015d26a85a7249868abadc05fe47d6c0f92d7f7bc2f07ea5f46b66665531309",
"md5": "395f1c6618c21d0e7b641e4359a696d5",
"sha256": "fb5d332e6529b84d78b2b440573b038fbeae49750fdc58ae0911c28182b52cf7"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "395f1c6618c21d0e7b641e4359a696d5",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 120472,
"upload_time": "2024-11-29T10:06:53",
"upload_time_iso_8601": "2024-11-29T10:06:53.549455Z",
"url": "https://files.pythonhosted.org/packages/10/15/d26a85a7249868abadc05fe47d6c0f92d7f7bc2f07ea5f46b66665531309/quicktions-1.19-cp36-cp36m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93eb2e6a2bbb4b62dc2a7063fc9b577dada4cf8f37acf2b271accfbd327f3e36",
"md5": "d541e78afb3ee3c059f670df5f2fe058",
"sha256": "76e92ed9b03f02ddff0ad992b5ef5568d37d30ded0f81c31e9c04268d7e46457"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d541e78afb3ee3c059f670df5f2fe058",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 131287,
"upload_time": "2024-11-29T10:06:54",
"upload_time_iso_8601": "2024-11-29T10:06:54.971352Z",
"url": "https://files.pythonhosted.org/packages/93/eb/2e6a2bbb4b62dc2a7063fc9b577dada4cf8f37acf2b271accfbd327f3e36/quicktions-1.19-cp36-cp36m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6cc11f01a6053f5543910304ff19f3c39d28257d8db47a3d78e79c1e192f713",
"md5": "797c938a4af0fd89cfea7670f48fede3",
"sha256": "425b6672d1a2874a8f0ef401f8ef28e7fb9150fbec5b0dbd7099cd47707f116a"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "797c938a4af0fd89cfea7670f48fede3",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 96989,
"upload_time": "2024-11-29T10:06:56",
"upload_time_iso_8601": "2024-11-29T10:06:56.304716Z",
"url": "https://files.pythonhosted.org/packages/c6/cc/11f01a6053f5543910304ff19f3c39d28257d8db47a3d78e79c1e192f713/quicktions-1.19-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9df843124cd30f4108085120f11187dfc47d7c3472c3482b94ab4436f3fed913",
"md5": "39b126f84c0338df2b1dc4678ebba01b",
"sha256": "1fbc10adcb38ae5cdc2d88616c2118648f2602d05adafae35e14f702ce778b96"
},
"downloads": -1,
"filename": "quicktions-1.19-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "39b126f84c0338df2b1dc4678ebba01b",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 107942,
"upload_time": "2024-11-29T10:06:58",
"upload_time_iso_8601": "2024-11-29T10:06:58.329480Z",
"url": "https://files.pythonhosted.org/packages/9d/f8/43124cd30f4108085120f11187dfc47d7c3472c3482b94ab4436f3fed913/quicktions-1.19-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd3303f7a735663a2360fd94c80e4b6d6f9697f3ff1448fabdc476df7a05f7fd",
"md5": "f46a7d33e5aae40a58bf063300dc31fe",
"sha256": "d285f710a139b2e2680fa74ef21f78c2a4fd22c1235604bf1543481ad1695cb5"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f46a7d33e5aae40a58bf063300dc31fe",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 118535,
"upload_time": "2024-11-29T10:06:59",
"upload_time_iso_8601": "2024-11-29T10:06:59.730759Z",
"url": "https://files.pythonhosted.org/packages/cd/33/03f7a735663a2360fd94c80e4b6d6f9697f3ff1448fabdc476df7a05f7fd/quicktions-1.19-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4bddfbc85f1bea9699c384c7cf01dfed4f8d938d60a7d3cedd54dba028c3538",
"md5": "b6dd1cbffb837bc1c56bbdbe298d76bb",
"sha256": "db88e462446ea5c6aef19aad5117f9c276fa34a4b421c4817b8b7eefdfa957b3"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "b6dd1cbffb837bc1c56bbdbe298d76bb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 124596,
"upload_time": "2024-11-29T10:07:01",
"upload_time_iso_8601": "2024-11-29T10:07:01.080569Z",
"url": "https://files.pythonhosted.org/packages/d4/bd/dfbc85f1bea9699c384c7cf01dfed4f8d938d60a7d3cedd54dba028c3538/quicktions-1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dadba3eca48c6707e70169a70deaa978fda37c87c8eb08e30a1306fc80f918f9",
"md5": "e8352f4eaa8bcce496129d4e94e8993f",
"sha256": "8390597da2cab3f43014eedc1b67acbfc939cc2738adef11cf4f7165db681340"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "e8352f4eaa8bcce496129d4e94e8993f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 134657,
"upload_time": "2024-11-29T10:07:02",
"upload_time_iso_8601": "2024-11-29T10:07:02.732739Z",
"url": "https://files.pythonhosted.org/packages/da/db/a3eca48c6707e70169a70deaa978fda37c87c8eb08e30a1306fc80f918f9/quicktions-1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "651e37e415ae24812aba8462a44ce840db5c8fb4bce1373c57cff6d4968b7f5d",
"md5": "78af756793509d0c187fdaf18f1864c2",
"sha256": "040648fdb0552d985d577a5319b1bd39a53ef886e7db856cb8c2af18e380d0fc"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "78af756793509d0c187fdaf18f1864c2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 152040,
"upload_time": "2024-11-29T10:07:05",
"upload_time_iso_8601": "2024-11-29T10:07:05.314705Z",
"url": "https://files.pythonhosted.org/packages/65/1e/37e415ae24812aba8462a44ce840db5c8fb4bce1373c57cff6d4968b7f5d/quicktions-1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99a764ce19923368e6d23f01dacf580a7a3c7e91bc405351c232d7a15052a1f1",
"md5": "87e73c771496ab4f1911c7fc65eb2d03",
"sha256": "1cbbf5fa7f83c937119c40855f4577c10be54ce00c1f116a66d6fe0a244f2844"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "87e73c771496ab4f1911c7fc65eb2d03",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 128864,
"upload_time": "2024-11-29T10:07:07",
"upload_time_iso_8601": "2024-11-29T10:07:07.341199Z",
"url": "https://files.pythonhosted.org/packages/99/a7/64ce19923368e6d23f01dacf580a7a3c7e91bc405351c232d7a15052a1f1/quicktions-1.19-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4700290503a77bdfeec169af1b2575205cde252471da504fd937a42439be61ae",
"md5": "5790d915e6381939d21dd56602a08308",
"sha256": "b8391061e74af3e92db1c53ec7690703a826832f2c606978892b5241ebffc04f"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "5790d915e6381939d21dd56602a08308",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 138828,
"upload_time": "2024-11-29T10:07:08",
"upload_time_iso_8601": "2024-11-29T10:07:08.706250Z",
"url": "https://files.pythonhosted.org/packages/47/00/290503a77bdfeec169af1b2575205cde252471da504fd937a42439be61ae/quicktions-1.19-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22ad574e9a987754d16a265a96e0c32e0942e0c620f227edca61e760b9e3fda7",
"md5": "2f8e8528fa28fe208018b8e3dcaceb99",
"sha256": "8277b08d29e3dcf6bb9b8667ff92d8b948b8487370416a7a74f484b11fc3718a"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2f8e8528fa28fe208018b8e3dcaceb99",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 124870,
"upload_time": "2024-11-29T10:07:11",
"upload_time_iso_8601": "2024-11-29T10:07:11.338961Z",
"url": "https://files.pythonhosted.org/packages/22/ad/574e9a987754d16a265a96e0c32e0942e0c620f227edca61e760b9e3fda7/quicktions-1.19-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7460fda119f8d42b79429fad99181cb38004598b0f93252a430ff1d86855aa1",
"md5": "405b13bc7ca73e3164ddb603e451f022",
"sha256": "650b5bb953a7494388a0cf206db4963b4da30c21b001551760506fcd4519d853"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "405b13bc7ca73e3164ddb603e451f022",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 135009,
"upload_time": "2024-11-29T10:07:13",
"upload_time_iso_8601": "2024-11-29T10:07:13.414920Z",
"url": "https://files.pythonhosted.org/packages/d7/46/0fda119f8d42b79429fad99181cb38004598b0f93252a430ff1d86855aa1/quicktions-1.19-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "793c5cc4a45501166c0ba9fa748e45fe738d613e005ce5651018d8a1c440145f",
"md5": "200cddac07ac61b610e1f6953e4d563a",
"sha256": "88581d1b9cfd80e018beebc317a126898d7cbd1f700ba0917599587526a84768"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "200cddac07ac61b610e1f6953e4d563a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 90932,
"upload_time": "2024-11-29T10:07:14",
"upload_time_iso_8601": "2024-11-29T10:07:14.750228Z",
"url": "https://files.pythonhosted.org/packages/79/3c/5cc4a45501166c0ba9fa748e45fe738d613e005ce5651018d8a1c440145f/quicktions-1.19-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9906098529c1700e288b8255345ec388802f51d1f8ed8ca6fe1acf880b8e81de",
"md5": "03c865050e47586cb43b571ee3befd33",
"sha256": "0415f737c3ccbff4779834fd0c6b674c3e26f39136d3be0c0a9b56c733adb643"
},
"downloads": -1,
"filename": "quicktions-1.19-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "03c865050e47586cb43b571ee3befd33",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 98541,
"upload_time": "2024-11-29T10:07:16",
"upload_time_iso_8601": "2024-11-29T10:07:16.095739Z",
"url": "https://files.pythonhosted.org/packages/99/06/098529c1700e288b8255345ec388802f51d1f8ed8ca6fe1acf880b8e81de/quicktions-1.19-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f2a2bc72a3e0370069cfe1820734fe8fcd0f98cbf420aa4654bb9a3ab6bf3f6",
"md5": "80ee5a374001e0a0f00644b9c12cf29f",
"sha256": "c0ef53f0281246ee6117fc110f7d76be97d3505ed4adff6373fdb8a8fa7944a3"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "80ee5a374001e0a0f00644b9c12cf29f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 120854,
"upload_time": "2024-11-29T10:07:17",
"upload_time_iso_8601": "2024-11-29T10:07:17.539789Z",
"url": "https://files.pythonhosted.org/packages/1f/2a/2bc72a3e0370069cfe1820734fe8fcd0f98cbf420aa4654bb9a3ab6bf3f6/quicktions-1.19-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "509882005f7e62a8bad78ee834de1f0045fb9fdd499c8d7f7bd8141d41400568",
"md5": "ab3e12450c1fd8278e7dfe5eac5c4aa5",
"sha256": "c449716a26efb8e461bff898f7dcd6fe81a536819687b06b560cece6141dc015"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ab3e12450c1fd8278e7dfe5eac5c4aa5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 114299,
"upload_time": "2024-11-29T10:07:18",
"upload_time_iso_8601": "2024-11-29T10:07:18.811484Z",
"url": "https://files.pythonhosted.org/packages/50/98/82005f7e62a8bad78ee834de1f0045fb9fdd499c8d7f7bd8141d41400568/quicktions-1.19-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87f560c06f5f5ee22932771189995ca0707a50aa158247c191ea44664d4229c9",
"md5": "0d9c97416b63036f83718b5942cbb836",
"sha256": "4212d1f6f163f0e93bf72b83a07b9fccbb34ddc39b19740de9e0008c565eee7e"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "0d9c97416b63036f83718b5942cbb836",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 128607,
"upload_time": "2024-11-29T10:07:20",
"upload_time_iso_8601": "2024-11-29T10:07:20.269069Z",
"url": "https://files.pythonhosted.org/packages/87/f5/60c06f5f5ee22932771189995ca0707a50aa158247c191ea44664d4229c9/quicktions-1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c093c3dbca031538e13dd0bd52e30fdb7a3d10e1b7dbb9fa9f161e91ae153803",
"md5": "e17c4877a7d5bca209f137f9d8efaeff",
"sha256": "11dae796cf2db34dd2c561889ffa4fe0ab1f624e543f3ed3fb1c33763dc91fd2"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "e17c4877a7d5bca209f137f9d8efaeff",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 140257,
"upload_time": "2024-11-29T10:07:21",
"upload_time_iso_8601": "2024-11-29T10:07:21.724902Z",
"url": "https://files.pythonhosted.org/packages/c0/93/c3dbca031538e13dd0bd52e30fdb7a3d10e1b7dbb9fa9f161e91ae153803/quicktions-1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c9d95fe2172f6d07cf2104b146e5e1ce2f92d9d54b36c8698ed71f7d8e79ea0",
"md5": "812b3d03ee3e47934a39da3261f83c6f",
"sha256": "226ef202e64b942aafce05d5bd60adbe7a842379b6c482a343a5a071a303fc9a"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "812b3d03ee3e47934a39da3261f83c6f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 156551,
"upload_time": "2024-11-29T10:07:23",
"upload_time_iso_8601": "2024-11-29T10:07:23.152353Z",
"url": "https://files.pythonhosted.org/packages/9c/9d/95fe2172f6d07cf2104b146e5e1ce2f92d9d54b36c8698ed71f7d8e79ea0/quicktions-1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8149173541b30cefea3533d59b8b8dcae69830f939fa80d1d01ea25efa28c5a4",
"md5": "00190cf394bdc634bb109519526387eb",
"sha256": "c5aa39e2fb26569d87cf647468bed3b94893278888c7d469d9d883a360041a68"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "00190cf394bdc634bb109519526387eb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 133202,
"upload_time": "2024-11-29T10:07:24",
"upload_time_iso_8601": "2024-11-29T10:07:24.642403Z",
"url": "https://files.pythonhosted.org/packages/81/49/173541b30cefea3533d59b8b8dcae69830f939fa80d1d01ea25efa28c5a4/quicktions-1.19-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3958ead61eae8d1f2b898ae32943c35eeb295fd27917adb1312b9942143d52a0",
"md5": "a51df7a4ae80a026a5085a4456ec8a8d",
"sha256": "49219d01252da3f074bed3a1af38a6ecbbcebfbe2b6bdb24b26bcad04e64920e"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a51df7a4ae80a026a5085a4456ec8a8d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 145293,
"upload_time": "2024-11-29T10:07:26",
"upload_time_iso_8601": "2024-11-29T10:07:26.125047Z",
"url": "https://files.pythonhosted.org/packages/39/58/ead61eae8d1f2b898ae32943c35eeb295fd27917adb1312b9942143d52a0/quicktions-1.19-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8f952555b0298511d3ccb3c47b1e3a6fa955fe3d8f97ad23f5d6a4bea22cd43",
"md5": "cfa7e9e2e6f02b2ff1825d445dce586c",
"sha256": "861380b334860e665237fd2c7f60c13f34bc412890bf71ab423a4cd464079fd0"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cfa7e9e2e6f02b2ff1825d445dce586c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 129177,
"upload_time": "2024-11-29T10:07:27",
"upload_time_iso_8601": "2024-11-29T10:07:27.500538Z",
"url": "https://files.pythonhosted.org/packages/c8/f9/52555b0298511d3ccb3c47b1e3a6fa955fe3d8f97ad23f5d6a4bea22cd43/quicktions-1.19-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7aff90a8f6f7df8f57b6e575a3ee280ed63dd0815d4c081986e90a6f4c2b6c6",
"md5": "80190652c9b9a52a5d60dddd3c85792a",
"sha256": "6070dfecbb3a06f11b281cde1207c0a171c7bfd0c9f37623c678de5432e2b25a"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "80190652c9b9a52a5d60dddd3c85792a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 140598,
"upload_time": "2024-11-29T10:07:28",
"upload_time_iso_8601": "2024-11-29T10:07:28.897634Z",
"url": "https://files.pythonhosted.org/packages/a7/af/f90a8f6f7df8f57b6e575a3ee280ed63dd0815d4c081986e90a6f4c2b6c6/quicktions-1.19-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2445addd9d8ca402f6ff727f6739856d323558b32f6495c7a8bcca1f56f26de9",
"md5": "0c3083ec9e41467aec86a4011281571e",
"sha256": "7e045460fea383eb37f060cf168a76f0ea03176734fb07783e5f3e6e77ea27d3"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "0c3083ec9e41467aec86a4011281571e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 92646,
"upload_time": "2024-11-29T10:07:30",
"upload_time_iso_8601": "2024-11-29T10:07:30.959988Z",
"url": "https://files.pythonhosted.org/packages/24/45/addd9d8ca402f6ff727f6739856d323558b32f6495c7a8bcca1f56f26de9/quicktions-1.19-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc6946a0267e623b2af19aa3615791a52e380ef9633c7529c0dd5c5aa2d9e857",
"md5": "6c4c085c5033b7c933c964709036d134",
"sha256": "e6ce8502f0dc0b9cc72ce806b02f0561d1d603c934eed1de48f81c8a8234f9d8"
},
"downloads": -1,
"filename": "quicktions-1.19-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "6c4c085c5033b7c933c964709036d134",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 101079,
"upload_time": "2024-11-29T10:07:32",
"upload_time_iso_8601": "2024-11-29T10:07:32.355068Z",
"url": "https://files.pythonhosted.org/packages/cc/69/46a0267e623b2af19aa3615791a52e380ef9633c7529c0dd5c5aa2d9e857/quicktions-1.19-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c11eb12c31f9305106b793d5e59c3114de687f4660f3801fd762af2068c7d063",
"md5": "a8f89a21c418b901a19207d78149f855",
"sha256": "31d983af7070df089ad7e7850737024dd80b221bd5d76c1061df29039cf33c5b"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a8f89a21c418b901a19207d78149f855",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 121353,
"upload_time": "2024-11-29T10:07:33",
"upload_time_iso_8601": "2024-11-29T10:07:33.774411Z",
"url": "https://files.pythonhosted.org/packages/c1/1e/b12c31f9305106b793d5e59c3114de687f4660f3801fd762af2068c7d063/quicktions-1.19-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79dd999adcbaa5015576c3caac426e208bd380d18c7afce5919868e8f996719e",
"md5": "edddce8caf51354989cb528981efc1a8",
"sha256": "7f50185a0fc4c598cb0f995148e6b62f38ada47576f52d18074696b3ae18c6bf"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "edddce8caf51354989cb528981efc1a8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 114635,
"upload_time": "2024-11-29T10:07:35",
"upload_time_iso_8601": "2024-11-29T10:07:35.821573Z",
"url": "https://files.pythonhosted.org/packages/79/dd/999adcbaa5015576c3caac426e208bd380d18c7afce5919868e8f996719e/quicktions-1.19-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57df8dd9b042f887dba060393af2741d7aa6dbd635290f793f75933affce95a2",
"md5": "e19ba56e6b2c9db6b7e59b18748525e4",
"sha256": "4c0f2cdad0809dc19ec2633b056c37b046482ab8c7d5bc3f89f17c750be07ae3"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e19ba56e6b2c9db6b7e59b18748525e4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 126894,
"upload_time": "2024-11-29T10:07:37",
"upload_time_iso_8601": "2024-11-29T10:07:37.226807Z",
"url": "https://files.pythonhosted.org/packages/57/df/8dd9b042f887dba060393af2741d7aa6dbd635290f793f75933affce95a2/quicktions-1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aae1b8116231cf1700596ffdadd11539827bf889600141162477de75e718ff03",
"md5": "28c7e7658d05c11e3351dbbc802eb5c1",
"sha256": "68e92f225a3d873c879242a283910e0c05ea542034ed663c9a917382db859846"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "28c7e7658d05c11e3351dbbc802eb5c1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 139004,
"upload_time": "2024-11-29T10:07:39",
"upload_time_iso_8601": "2024-11-29T10:07:39.247255Z",
"url": "https://files.pythonhosted.org/packages/aa/e1/b8116231cf1700596ffdadd11539827bf889600141162477de75e718ff03/quicktions-1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aac38a346ae99f33c050518225f37192e9860848569ca3ab040ee296297f8e1e",
"md5": "eb29c05eb772d06a61299afdaf9ab781",
"sha256": "505cfb135bae7bc4e4c5ebe7f2153a1e18597abcf1126628961b61d6ab9033e7"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "eb29c05eb772d06a61299afdaf9ab781",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 158201,
"upload_time": "2024-11-29T10:07:40",
"upload_time_iso_8601": "2024-11-29T10:07:40.703001Z",
"url": "https://files.pythonhosted.org/packages/aa/c3/8a346ae99f33c050518225f37192e9860848569ca3ab040ee296297f8e1e/quicktions-1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad2d3daa8775c994bdf51e82339b9756d30af591c531c11ca2dac949024da6da",
"md5": "62fb27201da5329b3a905005e6a73391",
"sha256": "b305c6f162d5e64d8f06831609bb1ee3bef95066d82050846031e7b98210a275"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "62fb27201da5329b3a905005e6a73391",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 132721,
"upload_time": "2024-11-29T10:07:42",
"upload_time_iso_8601": "2024-11-29T10:07:42.017592Z",
"url": "https://files.pythonhosted.org/packages/ad/2d/3daa8775c994bdf51e82339b9756d30af591c531c11ca2dac949024da6da/quicktions-1.19-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "76c45b458395be7b79281ca5043add0db05122a650f3b4ca98b989b48bf970a5",
"md5": "9c626aa399fa648a5a701433bf8510d5",
"sha256": "ca21f7f53352d1d7eea0f469809ff763e4c22a920db6d209469577a016706a96"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "9c626aa399fa648a5a701433bf8510d5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 142693,
"upload_time": "2024-11-29T10:07:43",
"upload_time_iso_8601": "2024-11-29T10:07:43.407671Z",
"url": "https://files.pythonhosted.org/packages/76/c4/5b458395be7b79281ca5043add0db05122a650f3b4ca98b989b48bf970a5/quicktions-1.19-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29f589c49f0c0e1642bbc345ba491a148d504611eb81b5d7330ed17a3a5a42fd",
"md5": "fd71fb97efd63848b69d26ac1233757b",
"sha256": "4c127d9b4cfc2545dbe561f088632008caa3c40414a3f58eb522e322e13cd143"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fd71fb97efd63848b69d26ac1233757b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 127048,
"upload_time": "2024-11-29T10:07:45",
"upload_time_iso_8601": "2024-11-29T10:07:45.558371Z",
"url": "https://files.pythonhosted.org/packages/29/f5/89c49f0c0e1642bbc345ba491a148d504611eb81b5d7330ed17a3a5a42fd/quicktions-1.19-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f68b1adc35e4210bd2f80e41bd9ec4d50e9d38b5f55a40053478f8120d18aca",
"md5": "6a9225872ee441be0a3e704caf7945f9",
"sha256": "75100f63b98e805ee22c0e7e5e82917da2bff71de231f0487de0e9dbc998e853"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6a9225872ee441be0a3e704caf7945f9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 139159,
"upload_time": "2024-11-29T10:07:47",
"upload_time_iso_8601": "2024-11-29T10:07:47.683764Z",
"url": "https://files.pythonhosted.org/packages/4f/68/b1adc35e4210bd2f80e41bd9ec4d50e9d38b5f55a40053478f8120d18aca/quicktions-1.19-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "083ab37a222b4284986cdefd86a98d52d99783299dd7772718bdde6c0e0c89f4",
"md5": "763ffeff2bba983fcb189f1fadc317ae",
"sha256": "2491c378815028916a5ae47ae329dd883912165e60bb9ae621618f3bb43893ff"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "763ffeff2bba983fcb189f1fadc317ae",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 92581,
"upload_time": "2024-11-29T10:07:49",
"upload_time_iso_8601": "2024-11-29T10:07:49.063417Z",
"url": "https://files.pythonhosted.org/packages/08/3a/b37a222b4284986cdefd86a98d52d99783299dd7772718bdde6c0e0c89f4/quicktions-1.19-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b0f87861255f55037c164a18c8b10bb65804a23ecefff480f72d92d3f0ca849",
"md5": "5f5d59826d3020d97709234d12f471a3",
"sha256": "b922333ddc9a3c1723be378496d313b68eda7f5b84d2ed1e54f08b41d24b7f79"
},
"downloads": -1,
"filename": "quicktions-1.19-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "5f5d59826d3020d97709234d12f471a3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 100936,
"upload_time": "2024-11-29T10:07:51",
"upload_time_iso_8601": "2024-11-29T10:07:51.241500Z",
"url": "https://files.pythonhosted.org/packages/3b/0f/87861255f55037c164a18c8b10bb65804a23ecefff480f72d92d3f0ca849/quicktions-1.19-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5f0387c401cbc569d4d6fcef942e84284a80bc171418c04e1c3fade9fe7c7e1",
"md5": "0bd51e792406a81bd1e6b6c64bd9cb36",
"sha256": "81ded2cb8e1e89c94eadc406c01673ad81c079ebda2773a15a6623e62e1b446f"
},
"downloads": -1,
"filename": "quicktions-1.19.tar.gz",
"has_sig": false,
"md5_digest": "0bd51e792406a81bd1e6b6c64bd9cb36",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 374449,
"upload_time": "2024-11-29T10:07:52",
"upload_time_iso_8601": "2024-11-29T10:07:52.970827Z",
"url": "https://files.pythonhosted.org/packages/b5/f0/387c401cbc569d4d6fcef942e84284a80bc171418c04e1c3fade9fe7c7e1/quicktions-1.19.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-29 10:07:52",
"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": [],
"tox": true,
"lcname": "quicktions"
}