Metadata-Version: 2.1
Name: temperature-converter-py
Version: 1.0.2
Home-page: https://github.com/BrunoASN/temperature_converter_py
Author: Bruno Nascimento
Author-email: bruno-asn@hotmail.com
License: MIT
Project-URL: Código fonte, https://github.com/BrunoASN/temperature_converter_py
Project-URL: Download, https://github.com/BrunoASN/temperature_converter_py/archive/master.zip
Keywords: conversor,temperatura
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Internationalization
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.4
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Temperature Converter

**temperature_converter_py** is a simple temperature converter.
## Install
- `pip install temperature-converter-py`
## Import
`import temperature_converter_py`

## Functions

- **celsius_to_fahrenheit(temp_in_celsius)**: Receives a float value in Celsius and returns in Fahrenheit.

- **fahrenheit_to_celsius(temp_in_fahrenheit)**: Receives a float value in Fahrenheit and returns in Celsius.

- **celsius_to_kelvin(temp_in_celsius)**: Receives a float value in Celsius and returns in Kelvin.

- **kelvin_to_celsius(temp_in_kelvin)**: Receives a float value in Kelvin and returns in Celsius.

- **fahrenheit_to_kelvin(temp_in_fahrenheit)**: Receives a float value in Fahrenheit and returns in Kelvin.

- **kelvin_to_fahrenheit(temp_in_kelvin)**: Receives a float value in Kelvin and returns in Fahrenheit.
