initial commit

This commit is contained in:
2026-05-05 00:40:52 -07:00
commit 4d80bb690b
7 changed files with 1007 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# Flask Weather Website
Small Flask app that geocodes a location and shows current conditions plus a 5-day forecast using Open-Meteo.
## API
- Forecast: https://api.open-meteo.com/v1/forecast
- Geocoding: https://geocoding-api.open-meteo.com/v1/search
- No API key required for basic, non-commercial usage.
## Run
```bash
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -r requirements.txt
python3 app.py
```
Open http://127.0.0.1:5000.