Metadata-Version: 2.1
Name: tempyrature
Version: 1.0.1
Summary: A simple temperature converter.
Home-page: https://github.com/lobooooooo14/tempyrature
Author: Lobooooooo14
License: Apache License 2.0
Project-URL: Github, https://github.com/lobooooooo14/tempyrature
Keywords: scale,conversor,temperature
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: LICENSE

# Tempyrature

Tempyrature is a simple Python module to convert temperature scales easily.

***

## Scales

Tempyrature currently supports 3 temperature ranges:

- Celcius
- Fahrenheit
- Kelvin

## Installation

You can install tempyrature in two main ways:

1. [***Pypi***](https://pypi.org/project/tempyrature/):

    Through the command:
    ```
    pip install tempyrature
    ```
    > This command may vary depending on your device.

2. Cloning this repository:

    If you have GIT installed, you can:

    ```
    git clone https://github.com/Lobooooooo14/tempyrature.git
    ```
    This will download this repository to your device, enter the downloaded folder (make sure it is in the same directory as the `setup.py` file) and use the command:
    ```
    pip install .
    ```

## How to use

After you have done the installation, you can use the tempyrature as follows:

```python
from tempyrature import Converter


print(Converter.celsius2fahrenheit(30.5)) #30.5°C
#>>> 86.0
```

## Documentation

You can see the full documentation [***here***](https://github.com/Lobooooooo14/tempyrature/wiki/Documentation)
