如何为Yahoo Weather创建Rest查询

时间:2015-10-23 22:17:38

标签: python rest python-3.4 yql yahoo-weather-api

我在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)

    ...???

0 个答案:

没有答案