Metadata-Version: 2.1
Name: cunitpy
Version: 0.0.3
Summary: A universal converter package
Home-page: https://github.com/LazimR/CunitPy
Author: Lázaro Claubert
Author-email: lazimrclaubert@gmail.com
Maintainer: Kennedy Souza
Maintainer-email: kennedo160@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# CunitPy
#### This is a universal conversor. It has methods to convert measurment units and world's most popular currency.

#
## Installation
```
pip install cunitpy
```

#
## How to use
```
from cunitpy import *
```
#### Now, use the pattern bellow to asign a variable the converted value: 
##### *Quantity.your_measurement_unit2new_measurement_unit(value)*
### Examples:
```py
# 38° Celsius to Kelvin
tempKel = Temperature.celsius2kelvin(38)
```
```py
# 250 pounds to kilograms
kg = Mass.pound2kilogram(250)
```
```py
# 2000 Japanese Ienes to Dollars
dol = Currency.JPY2USD(2000)
```
