python小白求大神帮助

我才接触Python没多久,但是想尝试下用爬虫爬取网站的图片,并保存在本地,但是怎么也成功不了,求大佬指点下,代码如下:
import requests
import re
import os
import time

headers={
‘user-agent’:‘Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3754.400 QQBrowser/10.5.4020.400’
}
response=requests.get(‘http://www.netbian.com/weimei/index.htm’,headers=headers)
html=response.text

pa=re.compile(’

  • <a href=".?" title=".?".?src="(.?)".*?
  • ’,re.S)
    pics=pa.findall(html)
    pics.pop(0)

    for pic in pics:
    time.sleep(1)
    response_1=requests.get(pic,headers=headers)
    folder_path = pic.split(’.’)[-1]
    if os.path.exists(folder_path) == False:
    os.makedirs(folder_path)
    with open(‘folder_path’,‘wb’) as f:
    f.write(response_1.content)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值