konstants

Python package for common math and physics constants.


License
MIT
Install
pip install konstants==0.3

Documentation

Constant List

Python package for common math and physics constants.

Build Status

This is a basic and simple python package which contains all commonly used mathematical and physical constants like pi,e etc. The package is not complete and will be updated whenever I get free time. Contribs are welcome.

Installation

Windows, OS X and Linux: pip install konstants

Usage

The module is very easy to use. Just search for the constant you wish to use from here and import it. To import, follow the code snippet below:

from konstants.math import basic as b
from konstants.math import eDerivatives as ed
from konstants.math import piDerivatives as pd
from konstants.math import named as n
from konstants.phys import fundamental as f
from konstants.phys import astrophysical as a

print(b.pi)
print(b.e)
print(ed.eie)
print(pd.pip)
print(n.her)
print(n.ape)
print(f.amc)
print(a.par)

Release History

  • 0.0.2
    • Work in progress
  • 0.0.1
    • Created package

Meta

Justin Mathew - @thisismjustin - thisisjustinm@outlook.com