This is a universal conversor. It has methods to convert measurment units and world's most popular currency.
pip install cunitpy
from cunitpy import *
# 38° Celsius to Kelvin
tempKel = Temperature.celsius2kelvin(38)
# 250 pounds to kilograms
kg = Mass.pound2kilogram(250)
# 2000 Japanese Ienes to Dollars
dol = Currency.JPY2USD(2000)