├── .gitignore ├── README.md ├── config.py ├── coordinates.py ├── exceptions.py ├── history.py ├── weather ├── weather_api_service.py └── weather_formatter.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | env 4 | *.json 5 | *.txt 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexey-goloburdin/weather/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexey-goloburdin/weather/HEAD/config.py -------------------------------------------------------------------------------- /coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexey-goloburdin/weather/HEAD/coordinates.py -------------------------------------------------------------------------------- /exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexey-goloburdin/weather/HEAD/exceptions.py -------------------------------------------------------------------------------- /history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexey-goloburdin/weather/HEAD/history.py -------------------------------------------------------------------------------- /weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexey-goloburdin/weather/HEAD/weather -------------------------------------------------------------------------------- /weather_api_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexey-goloburdin/weather/HEAD/weather_api_service.py -------------------------------------------------------------------------------- /weather_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexey-goloburdin/weather/HEAD/weather_formatter.py --------------------------------------------------------------------------------