爬虫入门
Posted fsrmyc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬虫入门相关的知识,希望对你有一定的参考价值。
前面我们找到网站的url和伪装浏览器之后就可以写代码了
res = requests.get(add,headers=headers)
soup = BeautifulSoup(res.text,‘lxml‘)
img_list = soup.find_all(‘img‘,attrs={‘class‘:‘lazy image_dtb img-responsive‘})#class 中是下载路径
def download_img(url):
split_list = url.split(‘/‘)#图片名分割
filename = split_list.pop()
path = os.path.join("images")#图片的路径
# 判断是否有这个文件夹没有的话创建文件夹
if not os.path.exists(path):
os.mkdir(path)
else:
mypath=os.path.join("images",filename)
request.urlretrieve(url,filename=mypath)
for img in img_list:
img_really = img[‘data-original‘]
download_img(img_really)
以上是关于爬虫入门的主要内容,如果未能解决你的问题,请参考以下文章