I'm coding in Python 3.4 and trying to create a Rest Query to access Yahoo Weather Data. I've created a Client ID and Secret for Yahoo's YQL, but I'm not sure how to proceed. Thanks in advance for your help. My Code looks as follows:
import requests
import yql
import json
def get_forecast(zipcode):
clientID = "xyz"
clientSecret = "abc"
req_str = "select * from rss where url='http://xml.weather.yahoo.com/forecastrss/{0}_f.xml'".format(zipcode)
...???