Skip to main content

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


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pytemp-0.0.1-py3-none-any.whl (2.3 kB view hashes)

Uploaded Python 3

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