WorldWeatherOnline icon indicating copy to clipboard operation
WorldWeatherOnline copied to clipboard

WorldWeatherOnline historical weather data API Python wrapper

Results 10 WorldWeatherOnline issues
Sort by recently updated
recently updated
newest added

Trying to work with the repo (thanks!) What is the timezone of the dates given? UTC or local time?

How am I supposed a input a list of longitude and latitude, as the location parameter is required to be a string?

Hi, Thank you very much for this useful package. I've noticed that the scrapped tempC and maxtempC are the same. Is it a bug in the script or the data...

It appears if you reach the historical limit for weather data (e.g. I was trying to scrape for a date in 2008), the API returns an error message: ``` {'error':...

Hello i have a problem with the script than i used a small modification ``` from wwo_hist import retrieve_hist_data import os **import requests** **os.chdir(os.getcwd())** frequency = 3 start_date = '11-DEC-2018'...

Hello, Is there any way to make the `export_csv` function append to a csv file? Right now, the `export_csv` just writes over the CSV file. Thanks, AN

This should allow newer versions of pandas from working and remove warnings from occuring when running retrieve_hist_data

In newer versions of pandas, pd.date_range no longer uses the keyword "closed" this should be replaced by "inclusive"

Minor update to function to allow for progress to be showed with tqdm, showing runtime, number of months to retrieve, estimated runtime, and iteration speed. Previous look when using function:...

removed FutureWarning: Argument `closed` is deprecated in favor of `inclusive` by updating list_mon_begin and list_mon_end with inclusive instead of closed