我希望得到您的建议/帮助:
创建一个python脚本:
- 每小时从该网站收集温度(例如 29 o C)和当前状态(例如 Clear):http ://www.wunderground.com/global/stations/54511.html
- 创建一个包含三个标题的 CSV 文件:
- 日期时间(捕获数据的时间戳)
- 现在的状况
- 温度
将从网站收集的数据添加到 CSV 文件的新行中。
规则:
- 该脚本必须在您的计算机上自动运行 5 天。
你有什么建议吗?:(
感谢您在这方面的帮助。
我试过这个:
import urllib2
import cookielib
cookieJar = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cookieJar))
setURL = 'http://www.wunderground.com/global/stations/54511.html?MR=1'
request = urllib2.Request(setURL)
response = opener.open(request)
url = "http://www.wunderground.com/global/stations/54511.html?MR=1"
request = urllib2.Request(url)
page = opener.open(request)
WeatherData = page.read()
print WeatherData
所以它打印所有数据,但我只想打印:
日期时间(捕获数据的时间戳) - 当前条件 - 温度
就像我说的需要建议一样:
我应该用什么来完成这个任务。
如何设置(天)的数据收集,我不知道..
我不需要完整的答案和复制粘贴,我不是傻瓜......
我想了解。