Microservice which can return today, hourly and daily weather forecast by http apies. This service has 4 apies:
- Get today weather forecast
- Get hourly weather forecast (3 days)
- Get daily weather forecast (10 days)
- Get place id by your city details
For details about apies, see src/main.py You can find controllers for all apies with documentation.
- Docker Engine
- Build Dockerfile image
docker build -t weather-api:v1.0.0 .- Start image
docker run -p 8000:8000 weather-api:v1.0.0