mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2025-02-07 09:00:54 +00:00
33 lines
606 B
Markdown
33 lines
606 B
Markdown
|
|
# BMI and BMR Calculator
|
|
|
|
This Streamlit application calculates BMI and BMR for adults. Users input their height, weight, age, and gender to get their BMI, BMR, and a short analysis of their weight category, including insights on whether they are underweight, normal weight, overweight, or obese.
|
|
|
|
|
|
## Run the application
|
|
|
|
Download the repo
|
|
|
|
```bash
|
|
git clone https://github.com/gitarshmah/Awesome-Python-Scripts.git
|
|
```
|
|
|
|
Go to the project directory
|
|
|
|
```bash
|
|
cd BMI_and_BMR_Calculator/
|
|
```
|
|
|
|
Install Streamlit
|
|
|
|
```bash
|
|
pip install streamlit
|
|
```
|
|
|
|
Run the app
|
|
|
|
```bash
|
|
streamlit run 1_Home.py
|
|
```
|
|
|