Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lobooooooo14/tempyrature
🌡️ A simple Python module to convert temperature scales easily.
https://github.com/lobooooooo14/tempyrature
conversor conversor-de-temperaturas converter temperature temperature-converter
Last synced: 1 day ago
JSON representation
🌡️ A simple Python module to convert temperature scales easily.
- Host: GitHub
- URL: https://github.com/lobooooooo14/tempyrature
- Owner: Lobooooooo14
- License: apache-2.0
- Created: 2022-10-24T11:51:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-04T19:40:30.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T19:48:24.258Z (27 days ago)
- Topics: conversor, conversor-de-temperaturas, converter, temperature, temperature-converter
- Language: Python
- Homepage: https://tempyrature.readthedocs.io/en/latest/
- Size: 29.3 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![PyPI](https://img.shields.io/pypi/v/tempyrature?style=for-the-badge)
![PyPI - Downloads](https://img.shields.io/pypi/dm/tempyrature?style=for-the-badge)
![GitHub commit activity](https://img.shields.io/github/commit-activity/w/Lobooooooo14/tempyrature?style=for-the-badge)
![GitHub](https://img.shields.io/github/license/Lobooooooo14/tempyrature?style=for-the-badge)
[![Documentation Status](https://readthedocs.org/projects/tempyrature/badge/?version=latest&style=for-the-badge)](https://tempyrature.readthedocs.io/en/latest/?badge=latest)
# Tempyrature
Tempyrature is a simple Python module to convert temperature scales easily.
***
## Documentation
You can see the full documentation [***here***](https://tempyrature.readthedocs.io/en/latest/)
## 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 Converterprint(Converter.celsius2fahrenheit(30.5)) #30.5°C
#>>> 86.0
```