高级爬虫实战-系统掌握破解反爬技能 挑战高薪
Posted 9w1nw4lk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高级爬虫实战-系统掌握破解反爬技能 挑战高薪相关的知识,希望对你有一定的参考价值。
download:高级爬虫实战-系统掌握破解反爬技能 挑战高薪
import re
import urllib
import os
def rename(name):
name = name + \'.jpg\'
return name
def gethtml(url):
page = urllib.urlopen(url)
html = page.read()
return html
def getImg(html):
reg = r\'src="(.+?\\.jpg)" pic_ext\'
imgre = re.compile(reg)
imglist = re.findall(imgre,html)
os.chdir("E:\\\\pic")
os.getcwd()
x=1
for imgurl in imglist:
img=urllib.urlopen(imgurl)
name=str(x)
name = rename(name)
print(name)
x=x+1
f=open(name,\'wb\')
f.write(img.read())
f.close()
html = getHtml("http://tieba.baidu.com/p/3553148164")
getImg(html)
print \'pic save!\'
以上是关于高级爬虫实战-系统掌握破解反爬技能 挑战高薪的主要内容,如果未能解决你的问题,请参考以下文章
常见的一些反爬虫策略破解方式-Java网络爬虫系统性学习与实战系列(11)