Skip to main content

Fast fractions data type for rational numbers. Cythonized version of 'fractions.Fraction'.

Project description

Python’s Fraction data type is an excellent way to do exact money calculations and largely beats Decimal in terms of simplicity, accuracy and safety. Clearly not in terms of speed, though, given the cdecimal accelerator in Py3.3+.

quicktions is an adaptation of the original fractions module (as included in CPython 3.5) that is compiled and optimised with Cython into a fast, native extension module.

Compared to the standard library fractions module in Py2.7 and Py3.4, quicktions is currently about 10x faster, and still about 6x faster than the current version in Python 3.5. It’s also about 15x faster than the (Python implemented) decimal module in Py2.7.

For documentation, see the Python standard library’s fractions module:

https://docs.python.org/3.5/library/fractions.html

ChangeLog

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

quicktions-1.9.tar.gz (218.7 kB view details)

Uploaded Source

Built Distributions

quicktions-1.9-cp37-cp37m-win_amd64.whl (64.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

quicktions-1.9-cp37-cp37m-win32.whl (57.5 kB view details)

Uploaded CPython 3.7m Windows x86

quicktions-1.9-cp37-cp37m-manylinux1_x86_64.whl (88.1 kB view details)

Uploaded CPython 3.7m

quicktions-1.9-cp37-cp37m-manylinux1_i686.whl (76.3 kB view details)

Uploaded CPython 3.7m

quicktions-1.9-cp36-cp36m-win_amd64.whl (64.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

quicktions-1.9-cp36-cp36m-win32.whl (57.5 kB view details)

Uploaded CPython 3.6m Windows x86

quicktions-1.9-cp36-cp36m-manylinux1_x86_64.whl (88.3 kB view details)

Uploaded CPython 3.6m

quicktions-1.9-cp36-cp36m-manylinux1_i686.whl (76.7 kB view details)

Uploaded CPython 3.6m

quicktions-1.9-cp35-cp35m-win_amd64.whl (64.5 kB view details)

Uploaded CPython 3.5m Windows x86-64

quicktions-1.9-cp35-cp35m-win32.whl (57.1 kB view details)

Uploaded CPython 3.5m Windows x86

quicktions-1.9-cp35-cp35m-manylinux1_x86_64.whl (86.9 kB view details)

Uploaded CPython 3.5m

quicktions-1.9-cp35-cp35m-manylinux1_i686.whl (75.2 kB view details)

Uploaded CPython 3.5m

quicktions-1.9-cp34-cp34m-win_amd64.whl (63.4 kB view details)

Uploaded CPython 3.4m Windows x86-64

quicktions-1.9-cp34-cp34m-win32.whl (57.5 kB view details)

Uploaded CPython 3.4m Windows x86

quicktions-1.9-cp34-cp34m-manylinux1_x86_64.whl (88.9 kB view details)

Uploaded CPython 3.4m

quicktions-1.9-cp34-cp34m-manylinux1_i686.whl (76.7 kB view details)

Uploaded CPython 3.4m

quicktions-1.9-cp27-cp27mu-manylinux1_x86_64.whl (91.3 kB view details)

Uploaded CPython 2.7mu

quicktions-1.9-cp27-cp27mu-manylinux1_i686.whl (79.0 kB view details)

Uploaded CPython 2.7mu

quicktions-1.9-cp27-cp27m-win_amd64.whl (63.0 kB view details)

Uploaded CPython 2.7m Windows x86-64

quicktions-1.9-cp27-cp27m-win32.whl (56.6 kB view details)

Uploaded CPython 2.7m Windows x86

quicktions-1.9-cp27-cp27m-manylinux1_x86_64.whl (91.3 kB view details)

Uploaded CPython 2.7m

quicktions-1.9-cp27-cp27m-manylinux1_i686.whl (78.9 kB view details)

Uploaded CPython 2.7m

File details

Details for the file quicktions-1.9.tar.gz.

File metadata

  • Download URL: quicktions-1.9.tar.gz
  • Upload date:
  • Size: 218.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9.tar.gz
Algorithm Hash digest
SHA256 ef0c10dc4a89b9885d7f805a700fbfc129b9583658a9444f8c2c560290b29bd0
MD5 0ddf30c4280643f41a4ffa9608479bda
BLAKE2b-256 521616c32b5814d5b4ecf4863e9c4dde16e4fe2f4efca1e658f6f8e151f4f118

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: quicktions-1.9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 64.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1c6270fc2d1f3dfc4097df868443d5c921b39041cfcf1eec9357a27d3c114053
MD5 ae9383eccb00ce459530b6357825294f
BLAKE2b-256 dc9f231b21889c84faaf2883cd39f4f4a1c5aa17db1af91f2e5474ea0c660565

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp37-cp37m-win32.whl.

File metadata

  • Download URL: quicktions-1.9-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 57.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 008badf92161f084c9b54aa64f13fd51a281772fd9405eb619a4c02759bb2991
MD5 a23207051baf066913fc53597323f318
BLAKE2b-256 7a3b3d42c0d4212cfe153ddebc9dab7de2e9a007b012d64c4c588c20696b95c4

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: quicktions-1.9-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 88.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c401718f0fb2211e08393732bc2989058d1457b3f37f5189931b2c0c81bcd5e2
MD5 56d83078cb122fea048eb4418cc2aad8
BLAKE2b-256 138b10632f03050b0be55f2dbaaef93930dab40ddab8f8c2f2053c1ef70b7925

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: quicktions-1.9-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 76.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1923d34a613b31a1e46747143b3e67e9341c895dece4f5aa9bb14d072e8e790a
MD5 d938fd769695a6b4919436f17c0c47c0
BLAKE2b-256 ab6e6b120404093896aabc7e26cccc585fef2f0e1f9a6671c8144ddcac12fc05

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: quicktions-1.9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 64.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 168f21b27e67748b438684abe3ebba4525ac1c669572ba616dd5a07343b3d592
MD5 06dc51a56f418000901cd9e952ee5064
BLAKE2b-256 341c5668b0d76b7457fb3890579cae5fbcfa359571178c7413832915ef7beb1e

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp36-cp36m-win32.whl.

File metadata

  • Download URL: quicktions-1.9-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 57.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f4ec6f10114182c8f08a386a43de12f4a0b5a5090d42d8bb6fb98b730fb349d0
MD5 9e670b2f17db10da0a8129b2091143f0
BLAKE2b-256 6cfe769ba5deac28ea997fe594d3c0364f6e5bcb1db1a578b8f40c6b11a5290e

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: quicktions-1.9-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 88.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 52b0bff3333d10287caf91040c921b43cb5f1db24bbc68120b0e6f534d298a30
MD5 c42d1e91940cf0cacced0c9a0de1b4f9
BLAKE2b-256 5c9bf1d3c95e25d223c9b56fd373e61465bd2abb3d91e3b2163728504d2e8f11

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: quicktions-1.9-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 76.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 291c51dee2e0d3a474e68b0a3caae06f829b7e2a5cfcf103ad41af65b44c05a4
MD5 415ad67967617fcbcc17a24a9f4b948d
BLAKE2b-256 f45df6f2960260f43ebbcbc2eb67655d9d8c1a2723417e047eb257d4419291d3

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: quicktions-1.9-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 64.5 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d23afc7b6379aaa637b06b71647cdcc750c5935d9255c8941c72b1a0d4486df4
MD5 dac2e3d0d627fd698c34ddbb1bfc76c5
BLAKE2b-256 2e2a1542013ea9ee8636e2ff2fcf31827cb9abc9c006f680679aa0bfed32a756

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp35-cp35m-win32.whl.

File metadata

  • Download URL: quicktions-1.9-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 1c687b72cb7c0432147cb6fb8104c9fa65bcb4032e129f226018b9b3afb25258
MD5 998ae068a995d189aaddc9cc41f99c78
BLAKE2b-256 dd023e79c6332e906d4e2601fe681f2ccf52d3371a772c75735f0c3746327618

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: quicktions-1.9-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 86.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a4fd50369f138b595265d297c0881d832604853869372b8bb2a0d8fa2815c5ec
MD5 269cf0e0c2b6a34c8b33ce2e1f4f1c4d
BLAKE2b-256 ed448cf716e0d3da200e4064e66ce21d91bb8eb21880c797eca7061b73729b5c

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: quicktions-1.9-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 75.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 797b83f9708305ca2c7c8dee7bf0fbce8a761be6b54d50f971d3a81a6d409bc3
MD5 001b905d39bb1dcb0101c449c8b810fd
BLAKE2b-256 fe95e61c8aaabe733957dfd785ce6fe8c142a8d58ab38a0b57809466af0e8a41

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: quicktions-1.9-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 63.4 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 b792b7cf49888484ec3621fff967a519bfa4afd6e862bc09f1ef23c0d57dfe4a
MD5 dd3f02e694571e8275ec9d80cc4bee5a
BLAKE2b-256 f54211ef43573e0b48bf71c8689981242b8f8d0add989e9598ff0c36e7a8876b

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp34-cp34m-win32.whl.

File metadata

  • Download URL: quicktions-1.9-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 57.5 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 c118835f34c741f34281bf53c9013de941f1e659025e8fffc90c1d92cf015c53
MD5 5684d31b7bb02e9e1db9efa38987b0db
BLAKE2b-256 26f6c66b8314fc890efd6647c1ac33354e7bf38ca79f505edb1d4556386ef07e

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: quicktions-1.9-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 88.9 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 85fce9caebbd96d4bfa42a8ef74dc975e249104168090ee02c5a7339dbdccae1
MD5 89a8f3466d1d7f36ba5cdb9cccf2b027
BLAKE2b-256 525f0e1c3b4d801b8c439610c5380cf232cd7670534ce0cf55809a22f4d7b29a

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: quicktions-1.9-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 76.7 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1db329aa75b286e19fc8fb329f4d002fac354fa2c2bd0b73eba7a0044dfeafa8
MD5 a90349f4356bfe217637a81027581d86
BLAKE2b-256 a178006b29a1f941350b6b6f37e9c65436fcb06812a4b41387d0006fb8f1f900

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: quicktions-1.9-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 08a08233d3c5a4a1f6a6c32892d92a09996dbb26300a55d450ed55e407df7fee
MD5 e04405ac99ee5dd8eda70275b809125e
BLAKE2b-256 74f46ecbf10a28e49bff275b685f0b83be06453137d7473f0dd86f76a10faf4d

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: quicktions-1.9-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 79.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e1ada72afbb988bc8664d5158ad1cadf04ad9f63f7c03e6630520253611fdfc2
MD5 2646f560b8c2d81b63b75c48d12ce159
BLAKE2b-256 e4a9d567bf9a9b5efc1fd7657ff158780f893b7c19acd47409ca26bc0a34f5ed

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: quicktions-1.9-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 63.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 78369419ff4d3027302bd940dcf8eb0fe0106bb189399c4c07d43e6ae7ff6da1
MD5 60022ff9c5be4e1ea8d6f28d89e8db52
BLAKE2b-256 202803eacdf4f2b5ce47519a5c8785855efa69609480740761f7a168acfaf6d1

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp27-cp27m-win32.whl.

File metadata

  • Download URL: quicktions-1.9-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 56.6 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 f9861fa3504f6e41b712a641a0ae2f89b8dcca2a2a726d2bb830f6c52624ec91
MD5 866d83a01688ec55a65e369f8aa9b6d7
BLAKE2b-256 5aed58fdd18faf78bc3825873b6aed85c7fbbc0d9d494c3d367c76a7eaf3a0fc

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: quicktions-1.9-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8256d307061ba59d4cd6a6e7f7ef199ff4c8cab004dd7808c780453f0625d2cb
MD5 6124a1d19909b5ccef28a768cebe6a8d
BLAKE2b-256 c3e93a901bf89894dc192111697e50043219c85fe35fa6a5380aafe5740d783c

See more details on using hashes here.

Provenance

File details

Details for the file quicktions-1.9-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: quicktions-1.9-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 78.9 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for quicktions-1.9-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52bd168a1ee4ba96475a03964cc1e7a9b5ce3e7431a30d03e6bc6a6400b926bd
MD5 7cc29b262fc1e145bd602fa6ed1e9957
BLAKE2b-256 f71cac491b3f18cd30ebe938b9495d8c0cc8b1c1ff5b94a81e8dbcfccde33b5f

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page