A weather report application build with Python, Flask, and Geopy.
Requirements
Python 3
Flask
Requests
Geopy
Clone repository
$ git clone https://github.com/brandon-wallace/simpleweatherreport.git
$ cd simpleweatherreport/
Create a .env file
$ vim .env
# Add these 4 lines.
FLASK_APP=run.py
FLASK_ENV=development
SECRET_KEY=
OWM_API_KEY=
Install requirements
$ pipenv install
Start application
$ flask run