Simple Flask app recommending number of layers and outfit guidance based on temperature and conditions.
Quick start
- Create a virtualenv and install dependencies:
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt- Run the app:
python app.py- Open UI at http://127.0.0.1:5000/ and API docs at http://127.0.0.1:5000/docs
Notes
- Weather is fetched from Open-Meteo (no API key required) when latitude+longitude are provided.
- Logging to
app.logis configured.