Inspiration
Major League Hacking is my inspiration.
What it does
It retrieves current weather data. Additionally we can temperature, humidity, wind and cloud data.
How we built it
I used Python Open Weather Map Api for building this project. Get free api key from any weather app.
1. Install pyowm
pip3 install pyowm
2. Open Jupyter Notebook.
from pyowm import OWM owm = OWM("API KEY") mgr = owm.weather_manager() observation = mgr.weather_at_place('London,GB') w = observation.weather print(w.temperature('celsius')) print(w.wind()) print(w.humidity) print(w.rain) print(w.heat_index) print(w.clouds)
Challenges we ran into
Learning a new thing is always a challenge.
Accomplishments that we're proud of
I am proud of writing this program.
What we learned
I learned using weather data in Python.
What's next for Use Weather data
Maybe more advanced retrieval of weather features.
Log in or sign up for Devpost to join the conversation.