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 --dev
$ pipenv install -e .
$ pipenv run pytest

Author

Seth M. Morton

History

Please visit the changelog.

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

fastnumbers-2.0.3.tar.gz (370.9 kB view hashes)

Uploaded Source

Built Distributions

fastnumbers-2.0.3-cp36-cp36m-win_amd64.whl (21.1 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

fastnumbers-2.0.3-cp36-cp36m-win32.whl (19.9 kB view hashes)

Uploaded CPython 3.6m Windows x86

fastnumbers-2.0.3-cp36-cp36m-manylinux1_x86_64.whl (59.0 kB view hashes)

Uploaded CPython 3.6m

fastnumbers-2.0.3-cp36-cp36m-manylinux1_i686.whl (55.9 kB view hashes)

Uploaded CPython 3.6m

fastnumbers-2.0.3-cp36-cp36m-macosx_10_6_intel.whl (36.2 kB view hashes)

Uploaded CPython 3.6m macOS 10.6+ intel

fastnumbers-2.0.3-cp35-cp35m-win_amd64.whl (21.0 kB view hashes)

Uploaded CPython 3.5m Windows x86-64

fastnumbers-2.0.3-cp35-cp35m-win32.whl (19.7 kB view hashes)

Uploaded CPython 3.5m Windows x86

fastnumbers-2.0.3-cp35-cp35m-manylinux1_x86_64.whl (58.0 kB view hashes)

Uploaded CPython 3.5m

fastnumbers-2.0.3-cp35-cp35m-manylinux1_i686.whl (52.8 kB view hashes)

Uploaded CPython 3.5m

fastnumbers-2.0.3-cp35-cp35m-macosx_10_6_intel.whl (35.4 kB view hashes)

Uploaded CPython 3.5m macOS 10.6+ intel

fastnumbers-2.0.3-cp34-cp34m-win_amd64.whl (18.2 kB view hashes)

Uploaded CPython 3.4m Windows x86-64

fastnumbers-2.0.3-cp34-cp34m-win32.whl (18.1 kB view hashes)

Uploaded CPython 3.4m Windows x86

fastnumbers-2.0.3-cp34-cp34m-manylinux1_x86_64.whl (57.5 kB view hashes)

Uploaded CPython 3.4m

fastnumbers-2.0.3-cp34-cp34m-manylinux1_i686.whl (52.5 kB view hashes)

Uploaded CPython 3.4m

fastnumbers-2.0.3-cp34-cp34m-macosx_10_6_intel.whl (35.3 kB view hashes)

Uploaded CPython 3.4m macOS 10.6+ intel

fastnumbers-2.0.3-cp27-cp27mu-manylinux1_x86_64.whl (56.7 kB view hashes)

Uploaded CPython 2.7mu

fastnumbers-2.0.3-cp27-cp27mu-manylinux1_i686.whl (54.0 kB view hashes)

Uploaded CPython 2.7mu

fastnumbers-2.0.3-cp27-cp27m-win_amd64.whl (18.5 kB view hashes)

Uploaded CPython 2.7m Windows x86-64

fastnumbers-2.0.3-cp27-cp27m-win32.whl (18.6 kB view hashes)

Uploaded CPython 2.7m Windows x86

fastnumbers-2.0.3-cp27-cp27m-manylinux1_x86_64.whl (56.5 kB view hashes)

Uploaded CPython 2.7m

fastnumbers-2.0.3-cp27-cp27m-manylinux1_i686.whl (53.9 kB view hashes)

Uploaded CPython 2.7m

fastnumbers-2.0.3-cp27-cp27m-macosx_10_6_intel.whl (36.5 kB view hashes)

Uploaded CPython 2.7m macOS 10.6+ intel

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