quicktions (original) (raw)
Project description
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 withCython 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 aFraction 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:
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 decimalmodule 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 floatinstead 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 ofhttps://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, followinghttps://github.com/python/cpython/pull/100161
- Implement Fraction.is_integer(), followinghttps://github.com/python/cpython/issues/100488
- Fraction.limit_denominator() is faster, followinghttps://github.com/python/cpython/pull/93730
- Internal creation of result Fractions is about 10% faster if the calculated numerator/denominator pair is already normalised, followinghttps://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/issue43420Original 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
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file quicktions-1.19.tar.gz
.
File metadata
- Download URL: quicktions-1.19.tar.gz
- Upload date: Nov 29, 2024
- Size: 374.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19.tar.gz | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 81ded2cb8e1e89c94eadc406c01673ad81c079ebda2773a15a6623e62e1b446f | | | MD5 | 0bd51e792406a81bd1e6b6c64bd9cb36 | | | BLAKE2b-256 | b5f0387c401cbc569d4d6fcef942e84284a80bc171418c04e1c3fade9fe7c7e1 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-win_amd64.whl
- Upload date: Nov 29, 2024
- Size: 102.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-win_amd64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | b37bea1a9fbd8986497b220d45d3be227ee39eb1cc4103e72137f0e11b651281 | | | MD5 | 6709694338e20c4916501493d20268de | | | BLAKE2b-256 | f55b6b9a066cfecc828a01b4c42e459b498b280b71625873a5a5d1f8d71c010e | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-win32.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-win32.whl
- Upload date: Nov 29, 2024
- Size: 93.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-win32.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | dabb764a9cd62a4da215df4eb7694aed195d268ecef9f34aa824fef0baa728e4 | | | MD5 | 4332ac09ef72cb59c396cbc22a7e8cd2 | | | BLAKE2b-256 | dbf163d0badc81d9f037433c068feb25dae952adfd1733102561b72f8bbfd665 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 136.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-musllinux_1_2_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 5677601c6104d9f46caef14727e963c6648fef4057124a5376592593a00121ad | | | MD5 | 52ab65506fe8585b26ec9c91806375dc | | | BLAKE2b-256 | cb26d5fc19a760fe3c96a20790368025c54bcf1b1ba952982046aed011132e40 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 123.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-musllinux_1_2_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 7e881c999224a4b7c0b885ba9a0868e97dc17f4364d8f55d518a6858629b9569 | | | MD5 | b5bd2a39c05bf23f5e449e94f320bcd5 | | | BLAKE2b-256 | c42ec7ee04858868085c68831187896c1dc3a9a70df20f73a6b9501a12cd8e00 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 140.9 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-musllinux_1_1_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 644cbeb4aa6507acbcc88fdb8ba7c72a3b2d71f26e6570bf9fb09a33fb3bbbbb | | | MD5 | bbec52191a396d0ff4322174eb722613 | | | BLAKE2b-256 | 03d031535e06d7f2a08e82ba5d1a75ef690b71c54de5df5554383f23cc8fceae | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 129.9 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-musllinux_1_1_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 06c5230203530eb1d4792475f806d5e6bdef59c15d93ba69f00854949fc62af6 | | | MD5 | 2611a0339c55e5a22155207e359a27d7 | | | BLAKE2b-256 | 31c6481a79f4a2cbe986338628c094f26bbcb9272a93801fdd6f4a03f299a32e | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 136.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | b226b5c0071223b6b9ece5b8902e2beff5d042af11efe1cf9fe26ca555c1f18d | | | MD5 | 45d1611a7e5181f501006693e63ac453 | | | BLAKE2b-256 | 6390eba8406b668fb6056ee33984b938d5c945df832496f89785107d8da25742 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 123.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | ce702537f3ea8902393cff853f147f16bd9b9228887c78cdb1aee85425fda4d1 | | | MD5 | 91e3e749b5a8b4d138cc80ac0a626f47 | | | BLAKE2b-256 | 4f995568ed135f3576fc2fdcf30f442a4711c79539c9a88373b027a7104aae39 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date: Nov 29, 2024
- Size: 148.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | cc38e61ca3564e2cdf64ddb92ed403ee3d71b045453e9957ff816a6ae70ba2b7 | | | MD5 | 23732707269d8dfaf4a2650a4a13f097 | | | BLAKE2b-256 | d7f38f149dd25bf840abcdbe18864fbc8f914419e6d8a33188d2957230314914 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-macosx_11_0_arm64.whl
- Upload date: Nov 29, 2024
- Size: 115.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-macosx_11_0_arm64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 57f4002d89106eba472c46cc6899f9432be3457a95c32c907af35d4e6e4ac497 | | | MD5 | f39d16b162215e890a2191edc4ff8968 | | | BLAKE2b-256 | 176f004e0a786db4de9598fa91e5f750fd29f3cc14ffe7ee342e55877aecaf7e | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 123.9 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp312-cp312-macosx_10_9_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 31c27762cbd06f554ac41e550327e0f286088a2333d86ceb3a35a93104edfa8c | | | MD5 | 0a0d33383cad815f10baea474b24ce24 | | | BLAKE2b-256 | 0598041cc6d90437f493a51e853e14fe89fee7646bc76af8c0dc9ef2d7bd4cab | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-win_amd64.whl
- Upload date: Nov 29, 2024
- Size: 100.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-win_amd64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 1f1656e9cd21f8af76257b3dca9c6ba8c8acd5df8b186bee24cb8ca9f8d1a58b | | | MD5 | 3808d116cfbbfda37a5a595e2af59deb | | | BLAKE2b-256 | dba34513d2c6c9d866d9bb9d3d6a60cb41d9cce64fcea733e09a40f6dbf90646 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-win32.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-win32.whl
- Upload date: Nov 29, 2024
- Size: 90.3 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-win32.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 08fe8afe716ab9791027f70e2b4d05ecac1271bc702cd1dd9169f24845bcafb1 | | | MD5 | 1923b396816b330ac635829129581734 | | | BLAKE2b-256 | b6336033c29681970038779c6c111e205d9506a69cc5a57db8bc0c422c299b22 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 138.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-musllinux_1_2_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 2b804ea58683e14b70c1d56c2f11daf0a2e56950dcd1a3b82fa48c2b0084b74c | | | MD5 | 536e7ca7b99a006f68b467e925df186b | | | BLAKE2b-256 | d7a78b86ee8b18ffab33fe1fd5945fad0c430cf157fcb5d8625112bfc4e329fb | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 126.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-musllinux_1_2_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 12b073fadc9ce6dc02fa0909002e9787dbbe1682989b8d6eef4322d85bf9dddc | | | MD5 | 8d9413aa0ddd2f907fb0225d436b8318 | | | BLAKE2b-256 | 12676b073da5db49fe59050d9ead87b9d848be749447b6cf958847c6572cb0f0 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 141.2 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-musllinux_1_1_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 7e6283d2543bc15aa074a7b429f357e83583bc79f44512768a78da48c403e346 | | | MD5 | 4434ec4d17d2fc1b49cab4fadba003d8 | | | BLAKE2b-256 | 2f546f363d3bae836a8bc2f5a4a50eb8507cc8882e15933f5aa24f51b5cae44b | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 132.6 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-musllinux_1_1_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 0bbca1cd912c4a750b24b5db21859a0307392cf6118937426efd81f733809567 | | | MD5 | a083cc0d472743018f85644895771a23 | | | BLAKE2b-256 | b3b8b27fd3efca54a4b09ec714d266141b7f31a7ca840c5feb25571c6dc53a43 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 138.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | f1b1d4093f4c68836fac43b99f00a1c4c8042e0be7d0a5bee6cb28b89e8408bf | | | MD5 | c2c52b082a3b9b57bc01d2b53bd8faae | | | BLAKE2b-256 | 89d67f18db4814c487cd0492915bd265ebf3fb0ee34efe9a4d815de4e612eb96 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 126.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 8c07eb08365e148bfca2b997228a47e722e091352cc87303eadb22d0c81d8d72 | | | MD5 | 7b12bddafa9a669b1c9470d2e2eb7a2e | | | BLAKE2b-256 | 177144481d28a3c7fd5f596b977bb0f82ce7fa8add16a671dc369a598f77a4f7 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date: Nov 29, 2024
- Size: 149.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 43b660a5cf51613208bc2f32cf9175e82f3fca609da8fadda98f4adfb4666b51 | | | MD5 | eeac47275f08edfbbedf8924b00fba7a | | | BLAKE2b-256 | 23112c61ca474fb3b06e89a23ce9f569b918965d14089c853bee8943511a675b | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-macosx_11_0_arm64.whl
- Upload date: Nov 29, 2024
- Size: 113.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-macosx_11_0_arm64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 509a5f1750b4c903d93a50b57d44da942ca7af7b03f434885eafbe88315f951d | | | MD5 | 52bd687df764899ada0f529ae99d3803 | | | BLAKE2b-256 | 3d32f2c21cd2ccf15bc9cebe451862ea86dd18115219ef71f714ed2ae3d98997 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 121.0 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp311-cp311-macosx_10_9_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 413b2214cb9448724f3fc33ede05e4f4ea256e1233ab9b872aa8a4d418e20c29 | | | MD5 | 70bd1d334f465324014de0b56a3c719b | | | BLAKE2b-256 | b1a9f33132268a2671cab5970f8d85fbc314f468b48bd30e6c374f486edc42a2 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-win_amd64.whl
- Upload date: Nov 29, 2024
- Size: 100.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-win_amd64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 2b78c34b5a36c04877b2315d5e49c8f2bd41cffd109a91f0192ccabd783b0918 | | | MD5 | 2fa26b3d1f9cd263b448b01218deb88b | | | BLAKE2b-256 | fcaa620a60eaf6587b6922b819993dda8d0da44f14fccb6cc7edc57971b5dfd7 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-win32.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-win32.whl
- Upload date: Nov 29, 2024
- Size: 91.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-win32.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 72b8a7dde7e03ac53714d1f3b8b0e48c7edff99ba76fd0b3edc69212d080d9ce | | | MD5 | 1f5bc14a5027e2ec1849d708780d8f4d | | | BLAKE2b-256 | 1dc6d9827ab828eb5c1334001ca8c78eb7a3ff991a0e10492c527c20380a2a38 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 139.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-musllinux_1_2_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 5b20ab5b9b9621f17ac0da2a92dcb07656d0ca66786c92d2a9de1252eb7ae73a | | | MD5 | 79c8e3d184380e57654e290ba184451f | | | BLAKE2b-256 | f859a96e46c60697d9da4afcc92855b84a9a584f3691690111714d7287396f9c | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 126.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-musllinux_1_2_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 7f8fe64c449a515fe2b2b11bad8e2269f0e21f27aae6893ffd7243c0c7c45beb | | | MD5 | 61ec61fe66ed02b7063decb6718f95f8 | | | BLAKE2b-256 | 8be4684bbf8f39c5e47898b465d2b2126db62b74605388eb890720ab45b15055 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 141.8 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-musllinux_1_1_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | e4e5d0405eff96b7257d0eee9ebcaea561873fee0d256a981d51af5e8a2a1a37 | | | MD5 | 3c9d9c8443d7558b46a396bb604f37ea | | | BLAKE2b-256 | d51cc8e9ef56ec8337933d1f96ec0eae911c0bba6b7ebb06f4a09fe22f428479 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 132.9 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-musllinux_1_1_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 10fe317cbb79c8a74809e5ee56548a901218c94eb1243a2963552aedf63c3ce7 | | | MD5 | 102ce74b0d404d9f85c115a21797f779 | | | BLAKE2b-256 | ec786d5ec15a5b65766bddd03f87da11821414f348ccbe5c7061983768b77e8e | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 138.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 748ebd44fd6c465d6f935ebb5b86c7a7ca486ffd50dab3b1738d5a52d63faefa | | | MD5 | a3ee6b9ea541c72477eb962578dbe53a | | | BLAKE2b-256 | 4fac16378fa8c790db9e7568840c7343578fe4eff24e9799e1c9d621bbd18200 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 126.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 7a6e25df124b8cda67caacfbeeac59d063f5c4fc8225d12bf0da89e33c476c2e | | | MD5 | 96d34020b908f0050a684398489a4939 | | | BLAKE2b-256 | 5ec648249c086a985a0957f190b371dadd70d966911e07c1517b22a514507584 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date: Nov 29, 2024
- Size: 157.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 50122d4fdd995fd6417555b22ba5f6cc951de334522263e76f838278729201e6 | | | MD5 | 2a686c6615d488a3003ef64dd57cc615 | | | BLAKE2b-256 | 8ff8ef1f27146bb73523dfc5440f2684967fdc8af8dfcc63e60ec8eb251bd314 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-macosx_11_0_arm64.whl
- Upload date: Nov 29, 2024
- Size: 113.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-macosx_11_0_arm64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 898f893ffacb44ed3cf23d5646abf554b29dd98866b88d02a1a0d9b871919333 | | | MD5 | 79db0b3810fd829c92069795f78c2f35 | | | BLAKE2b-256 | f858f1a626f34e0faf05975f12e9d74ef54e1311c965f12d85d337db030f24dc | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 120.7 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp310-cp310-macosx_10_9_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 6703a1991a3c2a8d22b85130a09f20d9d822a09161de09114a0062bd599533dd | | | MD5 | e7e8dda2748ae0fb9185bc06cdcb8cad | | | BLAKE2b-256 | 865f70988e93b3be45cc9baa2c2640323399c0bc7d98131013a7737069a53c6a | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-win_amd64.whl
- Upload date: Nov 29, 2024
- Size: 100.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-win_amd64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | b922333ddc9a3c1723be378496d313b68eda7f5b84d2ed1e54f08b41d24b7f79 | | | MD5 | 5f5d59826d3020d97709234d12f471a3 | | | BLAKE2b-256 | 3b0f87861255f55037c164a18c8b10bb65804a23ecefff480f72d92d3f0ca849 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-win32.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-win32.whl
- Upload date: Nov 29, 2024
- Size: 92.6 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-win32.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 2491c378815028916a5ae47ae329dd883912165e60bb9ae621618f3bb43893ff | | | MD5 | 763ffeff2bba983fcb189f1fadc317ae | | | BLAKE2b-256 | 083ab37a222b4284986cdefd86a98d52d99783299dd7772718bdde6c0e0c89f4 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 139.2 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-musllinux_1_2_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 75100f63b98e805ee22c0e7e5e82917da2bff71de231f0487de0e9dbc998e853 | | | MD5 | 6a9225872ee441be0a3e704caf7945f9 | | | BLAKE2b-256 | 4f68b1adc35e4210bd2f80e41bd9ec4d50e9d38b5f55a40053478f8120d18aca | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 127.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-musllinux_1_2_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 4c127d9b4cfc2545dbe561f088632008caa3c40414a3f58eb522e322e13cd143 | | | MD5 | fd71fb97efd63848b69d26ac1233757b | | | BLAKE2b-256 | 29f589c49f0c0e1642bbc345ba491a148d504611eb81b5d7330ed17a3a5a42fd | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 142.7 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-musllinux_1_1_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | ca21f7f53352d1d7eea0f469809ff763e4c22a920db6d209469577a016706a96 | | | MD5 | 9c626aa399fa648a5a701433bf8510d5 | | | BLAKE2b-256 | 76c45b458395be7b79281ca5043add0db05122a650f3b4ca98b989b48bf970a5 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 132.7 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-musllinux_1_1_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | b305c6f162d5e64d8f06831609bb1ee3bef95066d82050846031e7b98210a275 | | | MD5 | 62fb27201da5329b3a905005e6a73391 | | | BLAKE2b-256 | ad2d3daa8775c994bdf51e82339b9756d30af591c531c11ca2dac949024da6da | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 139.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 68e92f225a3d873c879242a283910e0c05ea542034ed663c9a917382db859846 | | | MD5 | 28c7e7658d05c11e3351dbbc802eb5c1 | | | BLAKE2b-256 | aae1b8116231cf1700596ffdadd11539827bf889600141162477de75e718ff03 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 126.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 4c0f2cdad0809dc19ec2633b056c37b046482ab8c7d5bc3f89f17c750be07ae3 | | | MD5 | e19ba56e6b2c9db6b7e59b18748525e4 | | | BLAKE2b-256 | 57df8dd9b042f887dba060393af2741d7aa6dbd635290f793f75933affce95a2 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date: Nov 29, 2024
- Size: 158.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 505cfb135bae7bc4e4c5ebe7f2153a1e18597abcf1126628961b61d6ab9033e7 | | | MD5 | eb29c05eb772d06a61299afdaf9ab781 | | | BLAKE2b-256 | aac38a346ae99f33c050518225f37192e9860848569ca3ab040ee296297f8e1e | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-macosx_11_0_arm64.whl
- Upload date: Nov 29, 2024
- Size: 114.6 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-macosx_11_0_arm64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 7f50185a0fc4c598cb0f995148e6b62f38ada47576f52d18074696b3ae18c6bf | | | MD5 | edddce8caf51354989cb528981efc1a8 | | | BLAKE2b-256 | 79dd999adcbaa5015576c3caac426e208bd380d18c7afce5919868e8f996719e | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 121.4 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp39-cp39-macosx_10_9_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 31d983af7070df089ad7e7850737024dd80b221bd5d76c1061df29039cf33c5b | | | MD5 | a8f89a21c418b901a19207d78149f855 | | | BLAKE2b-256 | c11eb12c31f9305106b793d5e59c3114de687f4660f3801fd762af2068c7d063 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-win_amd64.whl
- Upload date: Nov 29, 2024
- Size: 101.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-win_amd64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | e6ce8502f0dc0b9cc72ce806b02f0561d1d603c934eed1de48f81c8a8234f9d8 | | | MD5 | 6c4c085c5033b7c933c964709036d134 | | | BLAKE2b-256 | cc6946a0267e623b2af19aa3615791a52e380ef9633c7529c0dd5c5aa2d9e857 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-win32.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-win32.whl
- Upload date: Nov 29, 2024
- Size: 92.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-win32.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 7e045460fea383eb37f060cf168a76f0ea03176734fb07783e5f3e6e77ea27d3 | | | MD5 | 0c3083ec9e41467aec86a4011281571e | | | BLAKE2b-256 | 2445addd9d8ca402f6ff727f6739856d323558b32f6495c7a8bcca1f56f26de9 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 140.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-musllinux_1_2_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 6070dfecbb3a06f11b281cde1207c0a171c7bfd0c9f37623c678de5432e2b25a | | | MD5 | 80190652c9b9a52a5d60dddd3c85792a | | | BLAKE2b-256 | a7aff90a8f6f7df8f57b6e575a3ee280ed63dd0815d4c081986e90a6f4c2b6c6 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 129.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-musllinux_1_2_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 861380b334860e665237fd2c7f60c13f34bc412890bf71ab423a4cd464079fd0 | | | MD5 | cfa7e9e2e6f02b2ff1825d445dce586c | | | BLAKE2b-256 | c8f952555b0298511d3ccb3c47b1e3a6fa955fe3d8f97ad23f5d6a4bea22cd43 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 145.3 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-musllinux_1_1_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 49219d01252da3f074bed3a1af38a6ecbbcebfbe2b6bdb24b26bcad04e64920e | | | MD5 | a51df7a4ae80a026a5085a4456ec8a8d | | | BLAKE2b-256 | 3958ead61eae8d1f2b898ae32943c35eeb295fd27917adb1312b9942143d52a0 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 133.2 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-musllinux_1_1_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | c5aa39e2fb26569d87cf647468bed3b94893278888c7d469d9d883a360041a68 | | | MD5 | 00190cf394bdc634bb109519526387eb | | | BLAKE2b-256 | 8149173541b30cefea3533d59b8b8dcae69830f939fa80d1d01ea25efa28c5a4 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 140.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 11dae796cf2db34dd2c561889ffa4fe0ab1f624e543f3ed3fb1c33763dc91fd2 | | | MD5 | e17c4877a7d5bca209f137f9d8efaeff | | | BLAKE2b-256 | c093c3dbca031538e13dd0bd52e30fdb7a3d10e1b7dbb9fa9f161e91ae153803 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 128.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 4212d1f6f163f0e93bf72b83a07b9fccbb34ddc39b19740de9e0008c565eee7e | | | MD5 | 0d9c97416b63036f83718b5942cbb836 | | | BLAKE2b-256 | 87f560c06f5f5ee22932771189995ca0707a50aa158247c191ea44664d4229c9 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date: Nov 29, 2024
- Size: 156.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 226ef202e64b942aafce05d5bd60adbe7a842379b6c482a343a5a071a303fc9a | | | MD5 | 812b3d03ee3e47934a39da3261f83c6f | | | BLAKE2b-256 | 9c9d95fe2172f6d07cf2104b146e5e1ce2f92d9d54b36c8698ed71f7d8e79ea0 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-macosx_11_0_arm64.whl
- Upload date: Nov 29, 2024
- Size: 114.3 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-macosx_11_0_arm64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | c449716a26efb8e461bff898f7dcd6fe81a536819687b06b560cece6141dc015 | | | MD5 | ab3e12450c1fd8278e7dfe5eac5c4aa5 | | | BLAKE2b-256 | 509882005f7e62a8bad78ee834de1f0045fb9fdd499c8d7f7bd8141d41400568 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 120.9 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp38-cp38-macosx_10_9_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | c0ef53f0281246ee6117fc110f7d76be97d3505ed4adff6373fdb8a8fa7944a3 | | | MD5 | 80ee5a374001e0a0f00644b9c12cf29f | | | BLAKE2b-256 | 1f2a2bc72a3e0370069cfe1820734fe8fcd0f98cbf420aa4654bb9a3ab6bf3f6 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-win_amd64.whl
- Upload date: Nov 29, 2024
- Size: 98.5 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-win_amd64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 0415f737c3ccbff4779834fd0c6b674c3e26f39136d3be0c0a9b56c733adb643 | | | MD5 | 03c865050e47586cb43b571ee3befd33 | | | BLAKE2b-256 | 9906098529c1700e288b8255345ec388802f51d1f8ed8ca6fe1acf880b8e81de | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-win32.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-win32.whl
- Upload date: Nov 29, 2024
- Size: 90.9 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-win32.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 88581d1b9cfd80e018beebc317a126898d7cbd1f700ba0917599587526a84768 | | | MD5 | 200cddac07ac61b610e1f6953e4d563a | | | BLAKE2b-256 | 793c5cc4a45501166c0ba9fa748e45fe738d613e005ce5651018d8a1c440145f | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 135.0 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-musllinux_1_2_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 650b5bb953a7494388a0cf206db4963b4da30c21b001551760506fcd4519d853 | | | MD5 | 405b13bc7ca73e3164ddb603e451f022 | | | BLAKE2b-256 | d7460fda119f8d42b79429fad99181cb38004598b0f93252a430ff1d86855aa1 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-musllinux_1_2_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 124.9 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-musllinux_1_2_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 8277b08d29e3dcf6bb9b8667ff92d8b948b8487370416a7a74f484b11fc3718a | | | MD5 | 2f8e8528fa28fe208018b8e3dcaceb99 | | | BLAKE2b-256 | 22ad574e9a987754d16a265a96e0c32e0942e0c620f227edca61e760b9e3fda7 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 138.8 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-musllinux_1_1_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | b8391061e74af3e92db1c53ec7690703a826832f2c606978892b5241ebffc04f | | | MD5 | 5790d915e6381939d21dd56602a08308 | | | BLAKE2b-256 | 4700290503a77bdfeec169af1b2575205cde252471da504fd937a42439be61ae | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-musllinux_1_1_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 128.9 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-musllinux_1_1_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 1cbbf5fa7f83c937119c40855f4577c10be54ce00c1f116a66d6fe0a244f2844 | | | MD5 | 87e73c771496ab4f1911c7fc65eb2d03 | | | BLAKE2b-256 | 99a764ce19923368e6d23f01dacf580a7a3c7e91bc405351c232d7a15052a1f1 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 134.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 8390597da2cab3f43014eedc1b67acbfc939cc2738adef11cf4f7165db681340 | | | MD5 | e8352f4eaa8bcce496129d4e94e8993f | | | BLAKE2b-256 | dadba3eca48c6707e70169a70deaa978fda37c87c8eb08e30a1306fc80f918f9 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 124.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | db88e462446ea5c6aef19aad5117f9c276fa34a4b421c4817b8b7eefdfa957b3 | | | MD5 | b6dd1cbffb837bc1c56bbdbe298d76bb | | | BLAKE2b-256 | d4bddfbc85f1bea9699c384c7cf01dfed4f8d938d60a7d3cedd54dba028c3538 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date: Nov 29, 2024
- Size: 152.0 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 040648fdb0552d985d577a5319b1bd39a53ef886e7db856cb8c2af18e380d0fc | | | MD5 | 78af756793509d0c187fdaf18f1864c2 | | | BLAKE2b-256 | 651e37e415ae24812aba8462a44ce840db5c8fb4bce1373c57cff6d4968b7f5d | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 118.5 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp37-cp37m-macosx_10_9_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | d285f710a139b2e2680fa74ef21f78c2a4fd22c1235604bf1543481ad1695cb5 | | | MD5 | f46a7d33e5aae40a58bf063300dc31fe | | | BLAKE2b-256 | cd3303f7a735663a2360fd94c80e4b6d6f9697f3ff1448fabdc476df7a05f7fd | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-win_amd64.whl
- Upload date: Nov 29, 2024
- Size: 107.9 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-win_amd64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 1fbc10adcb38ae5cdc2d88616c2118648f2602d05adafae35e14f702ce778b96 | | | MD5 | 39b126f84c0338df2b1dc4678ebba01b | | | BLAKE2b-256 | 9df843124cd30f4108085120f11187dfc47d7c3472c3482b94ab4436f3fed913 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-win32.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-win32.whl
- Upload date: Nov 29, 2024
- Size: 97.0 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-win32.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 425b6672d1a2874a8f0ef401f8ef28e7fb9150fbec5b0dbd7099cd47707f116a | | | MD5 | 797c938a4af0fd89cfea7670f48fede3 | | | BLAKE2b-256 | c6cc11f01a6053f5543910304ff19f3c39d28257d8db47a3d78e79c1e192f713 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-musllinux_1_2_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 131.3 kB
- Tags: CPython 3.6m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-musllinux_1_2_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 76e92ed9b03f02ddff0ad992b5ef5568d37d30ded0f81c31e9c04268d7e46457 | | | MD5 | d541e78afb3ee3c059f670df5f2fe058 | | | BLAKE2b-256 | 93eb2e6a2bbb4b62dc2a7063fc9b577dada4cf8f37acf2b271accfbd327f3e36 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-musllinux_1_2_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 120.5 kB
- Tags: CPython 3.6m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-musllinux_1_2_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | fb5d332e6529b84d78b2b440573b038fbeae49750fdc58ae0911c28182b52cf7 | | | MD5 | 395f1c6618c21d0e7b641e4359a696d5 | | | BLAKE2b-256 | 1015d26a85a7249868abadc05fe47d6c0f92d7f7bc2f07ea5f46b66665531309 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-musllinux_1_1_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 135.7 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-musllinux_1_1_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 38f081fbb06c06d0d8d7830f34460ba2fa303a7b09643ffb1392a2c68857c44c | | | MD5 | d8fe2930f20ccc0e8508273d7b4e2ff8 | | | BLAKE2b-256 | ea2abb4ac73a024d08993f1e9f722ab0b20d58b8cffb2c083e3d710c1a12caa6 | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-musllinux_1_1_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 126.4 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-musllinux_1_1_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 45883ecdaa750e540bdefe8d276ef7428861098183bf7a6b371b4682930ece32 | | | MD5 | 68266a20a304ac43a812545c49f6c182 | | | BLAKE2b-256 | 3a3ede677e5f6414909dd37cbf6ffbce3beba8823b978419bf75f6e2b7944efa | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 130.8 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 29caaae8b8876fafa015ff390a58d83bcaf0c7cc41aff6e015d39736c97b8026 | | | MD5 | ecfaa7fd748f64033af0d36e882a20fa | | | BLAKE2b-256 | af25aaa9c5ac5b9bec5fdf5b04416a0602af6dfc9dec9f931f5e011139875a3f | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date: Nov 29, 2024
- Size: 119.8 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 2753017699de885f018874c865100e8fdd3ac8cdcaf2989fc9eb224cd1471a39 | | | MD5 | b45a67337924323ad56433e7d5fb56f6 | | | BLAKE2b-256 | 26a9be5587692d7ce08f13e40390b24e90cec23329f90a3f99032462a8c4d7cc | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date: Nov 29, 2024
- Size: 146.9 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 0706043d7709d809811cb6998acb7cbc86e6c2f963a374cf6dc3e673a636894a | | | MD5 | 2f03861bb5ec472d2bd233bba8023e9f | | | BLAKE2b-256 | 066d35dba3e975c7d3a86c8f8685d5df0de241e80575ead351ea0073615fc15e | |
See more details on using hashes here.
File details
Details for the file quicktions-1.19-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: quicktions-1.19-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date: Nov 29, 2024
- Size: 115.9 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
Hashes for quicktions-1.19-cp36-cp36m-macosx_10_9_x86_64.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 8caaeb4373dd2b8478adeabcffe0b6129e108a721ef9ea41c921b8e43cb066f8 | | | MD5 | 2d0aa1f69596a7172c7edf418c6aa450 | | | BLAKE2b-256 | adb4459a2155e286f02cebf05c086ee78b4dcb7b14192cf1d8c42b43df7591f1 | |