
- Set up FastAPI project structure - Create database models for locations and weather data - Implement OpenWeatherMap API integration - Create API endpoints for current weather and history - Add health endpoint - Set up database migrations with Alembic - Update README with documentation generated with BackendIM... (backend.im)
5 lines
177 B
Python
5 lines
177 B
Python
from app.schemas.weather import (
|
|
Location, LocationCreate, LocationUpdate,
|
|
WeatherData, WeatherDataCreate,
|
|
WeatherRequest, WeatherResponse, WeatherHistoryResponse
|
|
) |