Skip to main content

Super-fast and clean conversions to numbers.

Project description

https://img.shields.io/pypi/v/fastnumbers.svg https://img.shields.io/pypi/pyversions/fastnumbers.svg https://img.shields.io/pypi/l/fastnumbers.svg https://img.shields.io/travis/SethMMorton/fastnumbers/master.svg?label=travis-ci https://ci.appveyor.com/api/projects/status/5ahtcvmt3aoui3mw/branch/master?svg=true https://codecov.io/gh/SethMMorton/fastnumbers/branch/master/graph/badge.svg https://api.codacy.com/project/badge/Grade/7221f3d2be3147e9a975d604f1770cfb

Super-fast and clean conversions to numbers.

fastnumbers is a module with the following three objectives:

  1. Provide drop-in replacements for the Python built-in int and float that on average are up to 2x faster. These functions should behave identically to the Python built-ins except for a few specific corner-cases as mentioned in the API documentation.

  2. Provide a set of convenience functions that wrap the above int and float replacements and provides easy, concise, powerful, fast and flexible error handling.

  3. Provide a set of functions that can be used to rapidly identify if an input could be converted to int or float.

Examples

The below examples showcase the fast_float function, which is a fast conversion function with error-handling. Please see the API Documentation for other functions that are available from fastnumbers.

>>> from fastnumbers import fast_float, float as fnfloat
>>> # Convert string to a float
>>> fast_float('56.07')
56.07
>>> # Unconvertable string returned as-is by default
>>> fast_float('bad input')
'bad input'
>>> # Unconvertable strings can trigger a default value
>>> fast_float('bad input', default=0)
0
>>> # 'default' is also the first optional positional arg
>>> fast_float('bad input', 0)
0
>>> # Integers are converted to floats
>>> fast_float(54)
54.0
>>> # One can ask inf or nan to be substituted with another value
>>> fast_float('nan')
nan
>>> fast_float('nan', nan=0.0)
0.0
>>> fast_float(float('nan'), nan=0.0)
0.0
>>> fast_float('56.07', nan=0.0)
56.07
>>> # The default built-in float behavior can be triggered with
>>> # "raise_on_invalid" set to True.
>>> fast_float('bad input', raise_on_invalid=True) #doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
  ...
ValueError: invalid literal for float(): bad input
>>> # A key function can be used to return an alternate value for invalid input
>>> fast_float('bad input', key=len)
9
>>> fast_float(54, key=len)
54.0
>>> # Single unicode characters can be converted.
>>> fast_float(u'\u2164')  # Roman numeral 5 (V)
5.0
>>> fast_float(u'\u2466')  # 7 enclosed in a circle
7.0

NOTE: If you need locale-dependent conversions, supply the fastnumbers function of your choice to locale.atof.

import locale
locale.setlocale(locale.LC_ALL, 'de_DE.UTF-8')
print(atof('468,5', func=fast_float))  # Prints 468.5

Timing

Just how much faster is fastnumbers than a pure python implementation? Please see the following Jupyter notebooks for timing information on various Python versions.

Installation

Use pip!

$ pip install fastnumbers

How to Run Tests

Please note that fastnumbers is NOT set-up to support python setup.py test.

The recommended way to run tests is with tox. Suppose you want to run tests for Python 3.6 - you can run tests by simply executing the following:

$ tox -e py36

tox will create virtual a virtual environment for your tests and install all the needed testing requirements for you.

If you want to run testing on all of Python 2.7, 3.4, 3.5, 3.6, and 3.7 you can simply execute

$ tox

If you do not wish to use tox, you can install the testing dependencies and run the tests manually using pytest - fastnumbers contains a Pipfile for use with pipenv that makes it easy for you to install the testing dependencies:

$ pipenv install --skip-lock --dev
$ pipenv install --skip-lock -e .
$ pipenv run pytest

Author

Seth M. Morton

History

Please visit the changelog.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastnumbers-2.1.0.tar.gz (371.3 kB view details)

Uploaded Source

Built Distributions

fastnumbers-2.1.0-cp37-cp37m-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

fastnumbers-2.1.0-cp37-cp37m-win32.whl (20.1 kB view details)

Uploaded CPython 3.7m Windows x86

fastnumbers-2.1.0-cp37-cp37m-manylinux1_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.7m

fastnumbers-2.1.0-cp37-cp37m-manylinux1_i686.whl (52.5 kB view details)

Uploaded CPython 3.7m

fastnumbers-2.1.0-cp37-cp37m-macosx_10_6_intel.whl (36.7 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

fastnumbers-2.1.0-cp36-cp36m-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

fastnumbers-2.1.0-cp36-cp36m-win32.whl (20.1 kB view details)

Uploaded CPython 3.6m Windows x86

fastnumbers-2.1.0-cp36-cp36m-manylinux1_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.6m

fastnumbers-2.1.0-cp36-cp36m-manylinux1_i686.whl (52.5 kB view details)

Uploaded CPython 3.6m

fastnumbers-2.1.0-cp36-cp36m-macosx_10_6_intel.whl (36.7 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

fastnumbers-2.1.0-cp35-cp35m-win_amd64.whl (20.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

fastnumbers-2.1.0-cp35-cp35m-win32.whl (19.7 kB view details)

Uploaded CPython 3.5m Windows x86

fastnumbers-2.1.0-cp35-cp35m-manylinux1_x86_64.whl (53.9 kB view details)

Uploaded CPython 3.5m

fastnumbers-2.1.0-cp35-cp35m-manylinux1_i686.whl (50.7 kB view details)

Uploaded CPython 3.5m

fastnumbers-2.1.0-cp35-cp35m-macosx_10_6_intel.whl (35.7 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

fastnumbers-2.1.0-cp34-cp34m-win_amd64.whl (18.2 kB view details)

Uploaded CPython 3.4m Windows x86-64

fastnumbers-2.1.0-cp34-cp34m-win32.whl (18.1 kB view details)

Uploaded CPython 3.4m Windows x86

fastnumbers-2.1.0-cp34-cp34m-manylinux1_x86_64.whl (53.6 kB view details)

Uploaded CPython 3.4m

fastnumbers-2.1.0-cp34-cp34m-manylinux1_i686.whl (50.4 kB view details)

Uploaded CPython 3.4m

fastnumbers-2.1.0-cp34-cp34m-macosx_10_6_intel.whl (35.6 kB view details)

Uploaded CPython 3.4m macOS 10.6+ intel

fastnumbers-2.1.0-cp27-cp27mu-manylinux1_x86_64.whl (53.5 kB view details)

Uploaded CPython 2.7mu

fastnumbers-2.1.0-cp27-cp27mu-manylinux1_i686.whl (50.3 kB view details)

Uploaded CPython 2.7mu

fastnumbers-2.1.0-cp27-cp27m-win_amd64.whl (18.1 kB view details)

Uploaded CPython 2.7m Windows x86-64

fastnumbers-2.1.0-cp27-cp27m-win32.whl (18.3 kB view details)

Uploaded CPython 2.7m Windows x86

fastnumbers-2.1.0-cp27-cp27m-manylinux1_x86_64.whl (53.5 kB view details)

Uploaded CPython 2.7m

fastnumbers-2.1.0-cp27-cp27m-manylinux1_i686.whl (50.4 kB view details)

Uploaded CPython 2.7m

fastnumbers-2.1.0-cp27-cp27m-macosx_10_6_intel.whl (35.2 kB view details)

Uploaded CPython 2.7m macOS 10.6+ intel

File details

Details for the file fastnumbers-2.1.0.tar.gz.

File metadata

  • Download URL: fastnumbers-2.1.0.tar.gz
  • Upload date:
  • Size: 371.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.3

File hashes

Hashes for fastnumbers-2.1.0.tar.gz
Algorithm Hash digest
SHA256 2deca8373f7978c23b71c11f431fbaaa897fe3ca5642691d73168729148a5d1e
MD5 22cbcd96e108de3280d5dada81d6e8c1
BLAKE2b-256 76937e3bd016249f24fd183c6319b123a5f96549898ddb75a3597f1ba313d1e4

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-py3.6-macosx-10.13-x86_64.egg.

File metadata

  • Download URL: fastnumbers-2.1.0-py3.6-macosx-10.13-x86_64.egg
  • Upload date:
  • Size: 22.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.1.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.3

File hashes

Hashes for fastnumbers-2.1.0-py3.6-macosx-10.13-x86_64.egg
Algorithm Hash digest
SHA256 52c1f292d4736dd20a34354a01674f8e2de67f3a7c3f2bc82533b1d59ef6ee12
MD5 e354f059234a06ea00292db44cedca50
BLAKE2b-256 8c8aebf6f8ea37437b08824bb81049d5d51a0edcb809be0e25d160a044046b9b

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 20.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 99f3f7bc0d3f5db26a7531da4817d34f9310c9afacbe3d11c179ad3f040c58c0
MD5 cd55b913f01394df1992910571f220d3
BLAKE2b-256 4b28f540d330cbbf98980824ab5707c939b462564761776d5bff9e70fcee36d8

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 638cc33cbad698965d174ef5feb0334fe094195ea45f3d17c218a342b87fe757
MD5 ade178307ae0803ec21907d5c3ee7858
BLAKE2b-256 bedcbc553c29c1767ed37534f2d1828858e3daaa2bf639f467b973e2b88ab85f

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 55.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae037627b2d21ba9d9b144ff0ca4a99692a73d79105b30710c3300258a14fcff
MD5 78275b77abadfc64dc27d7de79d587fa
BLAKE2b-256 e850d4a04bfda0acd84df27c65d0e4263ef54d8ef9c2ab10808f8a7c51f105e0

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 52.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2501708acbd3b5462770ab85ffe55b006d457a56a9c40c5d3f3d6b216053796
MD5 4b5b3f4d9e673652f9cb62937f711e75
BLAKE2b-256 8d029805ab0ec001d926675e5da7a8866e17399f2c2ca0a8496000320b766c1e

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1c9801c58f1687a2d90b87b581ce5fb6f2756e0a7d17e9dd49db971cfc6d3d99
MD5 566a0f8ff3ae97ba9b8d831f23a7270b
BLAKE2b-256 23870c465ccfbf62f8708a1a6fcb7c77d0e84d414984c3fe8ed4c2b48a79d9d0

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 20.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cbde302fea9b448b5db333a772f25572d33ca56fb061b16458be82b059b3fdbd
MD5 9c6a228c96777a1af5cc16e565d1b1eb
BLAKE2b-256 4c739b99a7a2c704ce41e1a4e52870d23edb5906552f64fd0d5a05aaf8af1ab5

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f08b8faca672fe129a7ee1803ef89b479ac15324aeae92c64c075cbab185d891
MD5 9dc5d13a6e070fc1acad59dc60543fe2
BLAKE2b-256 68294a356336a7c777cfa80c324bf6462847a736f3a0731654c4a473561edb7b

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 55.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4ceb1774f20fa0cf1f17081f302af1274d22bd2f3ca8081804bb6d1ddb24bee8
MD5 87155aa372859f4b34c9d94c4cf19622
BLAKE2b-256 d11bb366477594acf6c44e2d9b3d598291afa457f605613cedc6092e47f8dcb0

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 52.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb561dc97399edea74363b78871af17a7c20824e38ca96b5a5e0dfa0bf0a3e3d
MD5 8162387f2259f2c5f019de9b84224791
BLAKE2b-256 bb94f21821fcfa625c7c67d66de844d23c4ecf184b25f96932f2dabb4c05e575

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 16249cbd11c845ee2c32cbe997c43c3edb0cb656f50f3b18f1d6922acfdb882f
MD5 896adab4391d358fccc9d926499561f6
BLAKE2b-256 4fe97750c85fa0ecea80079a8ba61366d9ffd816f3e3a54953d73c0cbb60db41

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 fab6cd9d8ca44901310ffb17f3cdc5331d8b04431154e612318b30d9804dd9b5
MD5 0b7c7b1cde2dde2383aa4e0ab6a360d8
BLAKE2b-256 c4b7425d896a5db04e817b8c7e3832ce5998747c44fb0df987c1c4fdb1baad3e

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 11145f6f40fe49cb9d8098d7ad83a7f61d2876f41ddd5c0971014a0d6a4070a5
MD5 19f807bc203cfb671a39f7a798698ab5
BLAKE2b-256 effc04b0d0c6d864d9809ba15ab055d9f0efe1254ef23b837edee7e6e37805ec

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 53.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4d80abb9b9069e03f6ded35b2db8f591dd91f038869d5eca541174626902c714
MD5 5c876d3f05ef75387a4ebc7bc034b301
BLAKE2b-256 009ba4fe545e77c5427ef1d1febec37b7583bd77970e191b5dfd3d16c2ac2443

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 50.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4544c76087ac9cce6d5ac9bd214e4a0bfc6827a650467bf113ab63d82a13b542
MD5 eb8196b48669741f604f23afdc6a15a5
BLAKE2b-256 4ad0b42590df17e15ccc47ce5a485c3241e4ccd746001c8479241f8083f9940a

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d0c1df401a0227a453b72688028154e9ae2daf15128f2310a8fd7ca35719b7d8
MD5 d60a7bf3e1452179a0eb560b98dacb20
BLAKE2b-256 33f704a06728cf420b60bb43a9824c1f4b6ebeb4e017fe9ba81f7e9cbf7b304c

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 18.2 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 6a7feb28277ecee90f733b360d363fe0a91a40dccd8c60a3fe4b19757071a6eb
MD5 b13f3712c1f2fb7f2d180ec7ccd54517
BLAKE2b-256 59dee5e3654da4c18343c08b2d2e77b94dde2c28c02f586b9603f820641ff710

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp34-cp34m-win32.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 dec708a226412aa9fbb4fb00747de1212efd69ef33b7f94c2a56b61bd0d6829b
MD5 2086dcea4021275c501a630cfb13cdaf
BLAKE2b-256 54308717edc11b66415fd32a82eb9a79ff08eec78a314d4e58efa07e9cb62d9c

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 53.6 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e2ac3cf5dff397d120ec0e962d7aac54ddc9eafbd9afb38a2554093b8fd980a6
MD5 9b7db4038baff990181a98b046e2165d
BLAKE2b-256 ceca1311e524a18e4e52bff18b6368c3d57965f3003764cd9a08675c4c973e08

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 50.4 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 abb966aa9468abe9c00cf0d9de6c3c35371fae54e1d9abebfb55765c2efc8ca6
MD5 7846a204d916529982f2b0288a87e75a
BLAKE2b-256 4bc347374233c4181bb9acaab97e3d70903ea90115bc3868cd622e9eac5f077c

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp34-cp34m-macosx_10_6_intel.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 35.6 kB
  • Tags: CPython 3.4m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 14ce4da8c0f9dfd1dc3640d37927a1b817ed87271e7ce7d3a43966b6280664b2
MD5 4a9a1e2faa3399d3500e001fd0482016
BLAKE2b-256 9f7d20b8a1b1c699b0267874b22b27ba9b4effcbf16e7127bf434abd3f1aa587

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 53.5 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4d112ff877acae716c45f329c5a07f16d34fe0d61076b37307c865bd1673df0e
MD5 c0db318222398a7c3e3349e07e33b4e3
BLAKE2b-256 cad420ba8f6fd66af6756c951c0fa76c1e55252fd72fddee94ab7282c048ae28

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 50.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1aaa17ff9d6f19a1fe30e82850b4b0b7924736e827089f76132d6ce2941ba851
MD5 ae49c520014b2ac7c6e8d0afe2c3d9e8
BLAKE2b-256 dee0ab0d12b50bda6aed72c8629fcb0fbb23d853ba2615a268f259c3fa7469c2

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2335870125b85743950e4be31f885a8c8b0f066158eb9f5b771c6e2402689b4c
MD5 01382829f98a3b81ab7a65c7c41472ff
BLAKE2b-256 5a0dfc95ccfc625b72afe6c6c2085182ea9023872417d55202dd630e7d964f02

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 05cd694d22f578a8b5f811e275cc15e06970187a31c7832fc876870ac4c1e1e6
MD5 cce2e100d182caf42264adea218382ff
BLAKE2b-256 a5473d36ffd1795061d630f054b48c6f74327a2c21c0c533c5c2a84053f278b5

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 53.5 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 597d0f4e925cd2632abda77f18950f50f98917602e5e67924ce407fb6230e253
MD5 03545757f780367fd0edb3cdbf41da67
BLAKE2b-256 b96a41346f85217abd7ab14d7d436ead03a4b87abf69c2468500ccfe2dcfd6e4

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 50.4 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/38.2.4 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.14

File hashes

Hashes for fastnumbers-2.1.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9831c86edb116cfd7e50689f08c0b286b6da8f3eaa98a8f34afc066209f31f25
MD5 567175932a9e35612d1117913e06d3b7
BLAKE2b-256 dcf4ea5bed82ce2bd14c00f0b1544eae754065a773e27021396469bec41ad0c4

See more details on using hashes here.

File details

Details for the file fastnumbers-2.1.0-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: fastnumbers-2.1.0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 35.2 kB
  • Tags: CPython 2.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15

File hashes

Hashes for fastnumbers-2.1.0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 51a283c141cb95bd636ffa317afe0170b848a330ed07a2dc7ca3ae16aff4ce47
MD5 e574c2539d89e7d1b81a191f0ff5242d
BLAKE2b-256 de267dac1471175c3d7c74b11554486a0ade6fe589eb52713edcb3571ef4e2f9

See more details on using hashes here.

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