├── .gitignore ├── README.md ├── Weather App └── task │ └── web │ ├── app.py │ ├── static │ ├── img │ │ ├── day.jpg │ │ ├── evening-morning.jpg │ │ └── night.jpg │ └── style.css │ └── templates │ └── index.html ├── images └── weather.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /venv/ 2 | /.idea/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jairo8925/weather-app/HEAD/README.md -------------------------------------------------------------------------------- /Weather App/task/web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jairo8925/weather-app/HEAD/Weather App/task/web/app.py -------------------------------------------------------------------------------- /Weather App/task/web/static/img/day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jairo8925/weather-app/HEAD/Weather App/task/web/static/img/day.jpg -------------------------------------------------------------------------------- /Weather App/task/web/static/img/evening-morning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jairo8925/weather-app/HEAD/Weather App/task/web/static/img/evening-morning.jpg -------------------------------------------------------------------------------- /Weather App/task/web/static/img/night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jairo8925/weather-app/HEAD/Weather App/task/web/static/img/night.jpg -------------------------------------------------------------------------------- /Weather App/task/web/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jairo8925/weather-app/HEAD/Weather App/task/web/static/style.css -------------------------------------------------------------------------------- /Weather App/task/web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jairo8925/weather-app/HEAD/Weather App/task/web/templates/index.html -------------------------------------------------------------------------------- /images/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jairo8925/weather-app/HEAD/images/weather.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask-sqlalchemy 2 | Flask~=1.1.2 3 | pyppeteer~=0.2.5 4 | urllib3 5 | requests 6 | --------------------------------------------------------------------------------