• 大小: 1.41KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2024-05-10
  • 语言: Python
  • 标签: 批量  小说  爬取  

资源简介


资源截图

代码片段和文件信息

import requests
import re
from fake_useragent import UserAgent
import ssl
ssl._create_default_https_context = ssl._create_unverified_context


def take_img(realurl):
    headers={
        ‘Referer‘:realurl
        ‘User-Agent‘:UserAgent().randow
    }
    content_= requests.get(realurlheaders=headers).content

    path=realurl.split(‘/‘)[-1]
    with open(‘百度图片/‘+path‘wb‘)as f:
        f.write(content_)
        print(‘图片{}保存成功,地址在{}‘.format(realurlpath))


def main():
        keyword_= input(‘请输入需要查询的关键字:‘)
        depth=int(input(‘请输入需要爬取的页数:‘))
        for i in range(depth):
            url=‘https://image.baidu.com/search/index?tn=baiduimage&p

评论

共有 条评论