第一次尝试做爬虫!

今天尝试准备写个爬虫,在网上找了些图片网站,发现这个网站页面规则简单,就决定用他做处女作吧。该网站图片命名规则就是xxx1.jgp-xxx100.jpg:

import requests
import time
import os
from bs4 import BeautifulSoup
tp = 'E:\\tp'
if not os.path.exists(tp):
    os.mkdir(tp)

headers = {'User-Agent':' Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36'}
for h in range(1,100):          
    if h <10:
        h = str('00') + str(h)
    else:
        h = str('0') + str(h)
    resp = requests.get('http://img.ivsky.com/img/bizhi/pre/201910/08/zhaoze-'+str(h)+'.jpg',headers)
    if resp.status_code != 200:
        break
    #状态码非200时结束循环
    time_file = int(time.time())
    #加入时间戳
    with open('E:\\tp\\'+str(h)+'_'+str(time_file)+'.jpg','wb') as f:
        f.write(resp.content)
    time.sleep(3)
    
    print('下载完毕,第 %d 张图片' % int(h))
)

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值