getQuery()如何在python中

时间:2013-04-14 23:18:55

标签: python get python-3.3

我无法理解如何做到这一点。这样做的目的是对这个函数进行不同的模块调用,让它返回正确的url,这个url将被下载并从中提取出来。

getQuery(location)返回包含GET查询的网址,以便从wunderground.com检索指定位置的天气。

例如,getQuery('Princeton, WV')会返回网址

http://www.wunderground.com/cgi-bin/findweather/hdfForecast?query=Princeton%2C+WV

1 个答案:

答案 0 :(得分:2)

def getQuery(location):
   # return your root url plus the location encoded using quote_plus
   # http://docs.python.org/2/library/urllib.html#urllib.quote_plus
   pass