temp2temp is a temperature conversion package between Celcius, Delisle, Fahrenheit, Kelvin, Rankine, Reaumur, Newton and Romer
A complete temperature conversion package for python3. Simply convert from Celcius to example Reaumor or Newton to Kelvin.
I could only find packages that had Celsius to Fahrenheit or Kelvin, which I found a bit lacking as I would not define it as a 'complete' package that others may need in the future.
Import all temperature conversions
import temp2temp
temp2temp.Celsius.to_kelvin(321)
>>> 594.15
temp2temp.Rankine.to_newton(321)
>>> -31.2895from temp2temp import *
Celsius.to_kelvin(321)
>>> 594.15
Rankine.to_newton(321)
>>> -31.2895Import just specific classes
from temp2temp import Celsius, Rankine
temp2temp.Celsius.to_kelvin(321)
>>> 594.15
temp2temp.Rankine.to_newton(321)
>>> -31.2895temp2temp is licensed under the MIT license. See LICENSE.txt for details.