"No one is harder on a talented person than the person themselves" - Linda Wilkinson ; "Trust your guts and don't follow the herd" ; "Validate direction not destination" ;

August 14, 2019

Day #267 - Get Historical Weather Data

Fetch Historical weather data information to correlate with findings


#pip install wwo-hist
#https://www.worldweatheronline.com/developer/
from wwo_hist import retrieve_hist_data
#fetch for every day (24 hours Window)
frequency=24
start_date = '01-JANUARY-2019'
end_date = '10-AUGUST-2019'
api_key = 'XYZABC'
location_list = ['new-york']
hist_weather_data = retrieve_hist_data(api_key,location_list,start_date,end_date,frequency,location_label = False,export_csv = True, store_df = True)
Happy Learning!!!

No comments: