如果考虑版权,专利,这样做就是违法。考虑版权,貌似只能做聚合,用于展示图片,链接都是别人的。这让我想到了淘宝客,阿里妈妈,京东快车,广告联盟,瞬间燃起激情。再想到羞羞网站,估计顶不住了!?
2017-11-05
新手还是把try except去掉吧 根据提示慢慢改代码 就改出来了
python 3.X 版本
https://github.com/dagou1992/baike_spider
python 3.X 版本
https://github.com/dagou1992/baike_spider
2017-11-04
import urllib.request, http.cookiejar
urllib2 = urllib.request
cj = http.cookiejar.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener(opener)
res = urllib2.urlopen('http://www.baidu.com')
cont = res.read()
if res.getcode() == 200:
print(cont)
urllib2 = urllib.request
cj = http.cookiejar.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener(opener)
res = urllib2.urlopen('http://www.baidu.com')
cont = res.read()
if res.getcode() == 200:
print(cont)
2017-11-04
class HtmlDownloader(object):
def download(self,url):
if url is None:
return None
reponse=urllib2.urlopen(url)
if response.getcode() != 200:
return None
return response.read()
def download(self,url):
if url is None:
return None
reponse=urllib2.urlopen(url)
if response.getcode() != 200:
return None
return response.read()
2017-10-30
getcode() 200页面请求的状态值,
分别有:
200请求成功、
303重定向、
400请求错误、
401未授权、
403禁止访问、
404文件未找到、
500服务器错误
分别有:
200请求成功、
303重定向、
400请求错误、
401未授权、
403禁止访问、
404文件未找到、
500服务器错误
2017-10-30