This is a live weather web app baed on python(flask) and flask_sqlachemcy connect to a api of Openweathermap API this api gives us live information of weather of various locations
Flask is a micro web framework written in Python. It is classified as a microframework because it does not require particular tools or libraries. It has no database abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions.
InstallingInstall and update using pip:
$ pip install -U Flask
The requests library is the de facto standard for making HTTP requests in Python. It abstracts the complexities of making requests behind a beautiful, simple API so that you can focus on interacting with services and consuming data in your application
InstallingInstall and update using pip:
$ pip install requests
Flask-SQLAlchemy is an extension for Flask that adds support for SQLAlchemy to your application. It aims to simplify using SQLAlchemy with Flask by providing useful defaults and extra helpers that make it easier to accomplish common tasks.
InstallingInstall and update using pip:
$ pip install -U Flask-SQLAlchemy