Metadata-Version: 2.1
Name: glarki_bmi_calculator
Version: 0.3.2
Summary: Calculate Body-Mass Index
Author: Gijs Luijten
Description-Content-Type: text/markdown

# BMICalculator
**BMICalculator** is a Python package that allows users to calculate their Body Mass Index (BMI) based on their weight, height, and unit system (metric or imperial). It also categorizes the BMI into standard categories such as Underweight, Normal weight, Overweight, and Obesity.

## Installation
You can install the package using pip:
```bash
pip install glarki-bmi-calculator
```

## Usage
**Import**
``` python
from glarki-bmi-calculator import Class_01_BMIcalc as bmi
```

**Example with metric units**
```Python
person1 = bmi(gender="female", weight=68, height=1.65)
print(person1.get_bmi_info())  # Output: Gender: Female, BMI: 24.98, Category: Normal weight
```
**Example with imperial units**
``` Python
person2 = bmi(gender="male", weight=150, height=65, unit="imperial")
print(person2.get_bmi_info())  # Output: Gender: Male, BMI: 24.96, Category: Normal weight
```

## Help
In python:
```Python
print(bmi.__doc__)
print(bmi.{method}.__doc__)
```
In Command Line Interface
```Bash
glarki-bmi-calculator.py -h or --help
```

<!-- <p> Some text that explains stuff </p>  -->
