Metadata-Version: 2.1
Name: degreesConversion
Version: 0.0.1
Summary: A simple temperature conversion package
Project-URL: Homepage, https://github.com/nicola-lamaddalena/Degrees-converter
Project-URL: Bug Tracker, https://github.com/nicola-lamaddalena/Degrees-converter/issues
Author-email: Nicola Lamaddalena <lamaddalena.nicola1@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Degrees converter

Simple library that converts temperature from one unit to another one(e.g. from Celsius to Fahrenheit).

Every method of the class *Converter* returns a float rounded to the second decimal figure.

## Usage

Create an instance of the class *Converter*:

```Python
conv = Converter()
```

and then call the methods of the instance with an int or a float value:

```Python
print(conv.celFah(0))
# output: 32.0
```

The methods can accept a string as argument if it's still a number:

```Python
print(conv.celFah("0"))
# output: 32.0

print(conv.celFah("zero"))
# output: Couldn't convert string to float.
```
