Metadata-Version: 2.1
Name: pytemperature
Version: 1.1
Summary: Scale of temperature
Home-page: https://github.com/wannaphong/pytemperature
Author: Wannaphong Phatthiyaphaibun
Author-email: wannaphong@yahoo.com
License: MIT
Keywords: temperature science
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# pytemperature

    A module that helps to convert temperature units.

**Examples of usage**

```python
>>> import pytemperature
>>> pytemperature.c2f(37.78) # Celsius to Fahrenheit
100.0
>>> pytemperature.f2c(104) # Fahrenheit to Celsius
40.0
>>> pytemperature.c2k(40) # Celsius to Kelvin
313.15
>>> pytemperature.k2c(273.15) # Kelvin to Celsius
0.0
>>> pytemperature.k2f(273.15) # Kelvin to Fahrenheit
31.98
>>> pytemperature.f2k(100) # Fahrenheit to Kelvin
310.93
>>> pytemperature.r2c(80) # Romoe to Celsius
100.0
>>> pytemperature.c2r(100) # Celsius to Romoe
80.0
>>> pytemperature.r2k(80) #Romoe to Kelvin
373.15
```


