Skip to main content

A package for formatting numbers into scientific formatted strings.

Project description

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. pyOpenSci Read the Docs PyPI - Version PyPI - Python Version Codecov GitHub Workflow Status Zenodo

sciform

We would greatly appreciate you taking the time to fill out the User Experience Survey to help improve sciform.

Overview

sciform is used to convert python numbers into strings according to a variety of user-selected scientific formatting options including decimal, binary, fixed-point, scientific and engineering formats. Where possible, formatting follows documented standards such as those published by BIPM or IEC. sciform provides certain options, such as engineering notation, well-controlled significant figure rounding, and separator customization which are not provided by the python built-in format specification mini-language (FSML).

Installation

Install the latest stable version from PyPi with:

python -m pip install sciform

or install the latest development version from GitHub with:

python -m pip install git+https://github.com/jagerber48/sciform.git

sciform is compatible with Python versions >=3.8.

Usage

Here we provide a few key usage examples. For many more details see Usage.

sciform provides a wide variety of formatting options which can be controlled when constructing Formatter objects which are then used to format numbers into strings according to the selected options:

>>> from sciform import Formatter
>>> formatter = Formatter(
...     round_mode="dec_place", ndigits=6, upper_separator=" ", lower_separator=" "
... )
>>> print(formatter(51413.14159265359))
51 413.141 593
>>> formatter = Formatter(round_mode="sig_fig", ndigits=4, exp_mode="engineering")
>>> print(formatter(123456.78))
123.5e+03

Users can also format numbers by constructing SciNum objects and using string formatting to format the SciNum instances according to a custom FSML:

>>> from sciform import SciNum
>>> num = SciNum(12345)
>>> print(f"{num:!2f}")
12000
>>> print(f"{num:!2r}")
12e+03

In addition to formatting individual numbers, sciform can be used to format pairs of numbers as value/uncertainty pairs. This can be done by passing two numbers into a Formatter call or by using the SciNum object:

>>> formatter = Formatter(ndigits=2, upper_separator=" ", lower_separator=" ")
>>> print(formatter(123456.654321, 0.00345))
123 456.654 3 ± 0.003 4
>>> formatter = Formatter(ndigits=4, exp_mode="engineering")
>>> print(formatter(123456.654321, 0.00345))
(123.456654321 ± 0.000003450)e+03

>>> num = SciNum(123456.654321, 0.00345)
>>> print(f"{num:!2f}")
123456.6543 ± 0.0034
>>> print(f"{num:!2f()}")
123456.6543(34)

Note that the above examples demonstrate that sciform uses “round-to-even” rounding:

>>> print(f"{SciNum(865):!2}")
860
>>> print(f"{SciNum(875):!2}")
880

See Formatting Options, Format Specification Mini-Language for more details and Examples for more examples.

Project Status

sciform adheres to semantic versioning. The major version for sciform is still 0 indicating that sciform is still in the development stage which means there may be backwards-incompatible changes to the interface (e.g. function or object behaviors and names) without a corresponding major version bump. All changes are announced after new releases in the changelog. Backwards incompatible changes are indicated with the [BREAKING] flag.

We are very excited to get your feedback to help stabilize the interface and make sciform a more useful tool. You can provide your feedback on your experience with sciform by filling out the user experience survey. Now is a great time to share your sciform ideas or issues by opening a discussion or issue. If you would like to contribute to sciform then please see How to Contribute.

sciform has undergone peer review by the PyOpenSci community and been accepted into the PyOpenSci ecosystem. You can view the review here.

Acknowledgements

sciform was heavily motivated by the prefix formatting provided in the prefixed package and the value ± uncertainty formatting in the uncertainties package.

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

sciform-0.38.2.tar.gz (216.8 kB view details)

Uploaded Source

Built Distribution

sciform-0.38.2-py3-none-any.whl (41.1 kB view details)

Uploaded Python 3

File details

Details for the file sciform-0.38.2.tar.gz.

File metadata

  • Download URL: sciform-0.38.2.tar.gz
  • Upload date:
  • Size: 216.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for sciform-0.38.2.tar.gz
Algorithm Hash digest
SHA256 206d698e869dd192d3f108f28b7ec374428e662e229f95f2ded0763283da446a
MD5 fdd561f39b2a84b3285c4c7ce3e93774
BLAKE2b-256 e851bec40a30f83c88d40e2f5515c9a06fca80b89630c95b5bb8c5d828bfda14

See more details on using hashes here.

File details

Details for the file sciform-0.38.2-py3-none-any.whl.

File metadata

  • Download URL: sciform-0.38.2-py3-none-any.whl
  • Upload date:
  • Size: 41.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for sciform-0.38.2-py3-none-any.whl
Algorithm Hash digest
SHA256 87b11419c2bc0d21d0084249659a0a785df7de214535137d98c6780d131b44e5
MD5 1e3263af8f2c28b00c3d5f105b4f9a7e
BLAKE2b-256 2167f78d01293c719708fe39e8ab4b16eba1d714ef93557c47f661b6106e1d29

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