10 2016 档案

摘要:使用build_opener 自定义 opener,这种方法的好处是可以方便的拓展功能。 import urllib.request import http.cookiejar def makeMyOpener(head={ 'Connection': 'Keep-Alive', 'Accept': 阅读全文
posted @ 2016-10-19 18:30 ,,,沙子,,, 阅读(503) 评论(0) 推荐(0) 编辑
摘要:Requests比urllib更加方便,抓取有道翻译非常的简单。 import requests class YouDao(): def __init__(self,parm): # 请求表单,不需要手动urlencode self.form_data = {} self.form_data['ty 阅读全文
posted @ 2016-10-19 18:30 ,,,沙子,,, 阅读(151) 评论(0) 推荐(0) 编辑
摘要:抓取实时天气前需要首先获得所有地区的cityCode,因为在最后queryWeather的时候需要传递这个参数。 最美天气获取全部cityCode及cityName的方法: 1.获取34个省及直辖市的cityCode、cityName http://www.zuimeitianqi.com/zuim 阅读全文
posted @ 2016-10-19 18:30 ,,,沙子,,, 阅读(302) 评论(0) 推荐(0) 编辑