Metadata-Version: 2.1
Name: Py-bmi
Version: 1.0.9
Summary: A Python module for Checking your bmi
Home-page: UNKNOWN
Author: Muhammed Fazin
License: MIT
Project-URL: Source, https://github.com/M-fazin/Py_bmi
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Py_bmi
A Python module for Checking your bmi

## Installation
```
pip install Py-bmi
```

### Usage
```py
from py_bmi import bmi
```

### Example of using
```py
from py_bmi import bmi
weight = 85
height = 1.4
print(bmi(weight,height))
# >> OH.. Noo.. You are Obesity
#The First Variable Must Be Weight In Kilograms 
#The Second Variable Must Be Height In Meters 
#Both Are Must Be Intergers 
```
---


## Special Thanks

[Fayas Noushad](https://github.com/FayasNoushad) & [Lokaman](https://github.com/lntechnical2) For Helping Me

---


