21 lines
466 B
Markdown
21 lines
466 B
Markdown
# 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.
|