我在Python 3.4中进行编码并尝试创建Rest Query来访问Yahoo Weather Data。 我为雅虎的YQL创建了一个客户端ID和密码,但我不知道如何继续。 在此先感谢您的帮助。 我的代码如下:
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)
...???