python temperature converter
Project description
Description
this is a python module to convert temperatures from one unit to another
Installation
pip install pytemp
Usage
from pytemp import pytemp
convert from 40 degree kelvin to fahrenheit and back
fahrenheit = pytemp(40,'kelvin', 'fahrenheit') ========> -387.66999999999996
f = pytemp(40,'k', 'f') ========> -387.66999999999996
kelvin = pytemp(f,'fahrenheit','kelvin') ========> 40.0
k = pytemp(f,'f','k') ========> 40.0
convert from 40 degree celsius to fahrenheit and back
fahrenheit = pytemp(40,'celsius', 'fahrenheit') ========> 104.0
f = pytemp(40,'c', 'f') ========> 104.0
celsius = pytemp(f,'fahrenheit','celsius') ========> 40.0
c = pytemp(f,'f','c') ========> 40.0
convert from 40 degree kelvin to celsius and back
celsius = pytemp(40,'kelvin', 'celsius') ========> -233.14999999999998
c = pytemp(40,'k', 'c') ========> -233.14999999999998
kelvin = pytemp(c,'celsius','kelvin') ========> 40.0
k = pytemp(c,'c','k') ========> 40.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pytemp-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: pytemp-0.0.1-py3-none-any.whl
- Upload date:
- Size: 2.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
36ce46095c942a48765533e2c076aeb37baf73b54577bbc6991f2599612d1cc4
|
|
MD5 |
3cc067f11e256741721178f7894dc890
|
|
BLAKE2b-256 |
b25348c1419c2924ddc19f5313ac66a855d10f4ade6e87e7c7b89fef5c113bf6
|