Python爬取百度贴吧帖子所有楼层图片的爬虫 Python实现爬取百度贴吧帖子所有楼层图片的爬虫示例

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Python爬取百度贴吧帖子所有楼层图片的爬虫 Python实现爬取百度贴吧帖子所有楼层图片的爬虫示例

开心果汁   2021-03-28 我要评论
想了解Python实现爬取百度贴吧帖子所有楼层图片的爬虫示例的相关内容吗,开心果汁在本文为您仔细讲解Python爬取百度贴吧帖子所有楼层图片的爬虫的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Python,爬取,百度贴吧,帖子,图片,爬虫,下面大家一起来学习吧。

本文实例讲述了Python实现爬取百度贴吧帖子所有楼层图片的爬虫。分享给大家供大家参考,具体如下:

下载百度贴吧帖子图片,好好看

python2.7版本:

#coding=utf-8
import re
import requests
import urllib
from bs4 import BeautifulSoup
import time
time1=time.time()
def getHtml(url):
  page = requests.get(url)
  html =page.text
  return html
def getImg(html):
  soup = BeautifulSoup(html, 'html.parser')
  img_info = soup.find_all('img', class_='BDE_Image')
  global index
  for index,img in enumerate(img_info,index+1):
    print ("正在下载第{}张图片".format(index))
    urllib.urlretrieve(img.get("src"),'C:/pic4/%s.jpg' % index)
def getMaxPage(url):
  html = getHtml(url)
  reg = re.compile(r'max-page="(\d+)"')
  page = re.findall(reg,html)
  page = int(page[0])
  return page
if __name__=='__main__':
  url  = "https://tieba.baidu.com/p/5113603072"
  page = getMaxPage(url)
  index = 0
  for i in range(1,page):
    url = "%s%s" % ("https://tieba.baidu.com/p/5113603072?pn=",str(i))
    html = getHtml(url)
    getImg(html)
  print ("OK!All DownLoad!")
  time2=time.time()
  print u'总共耗时:' + str(time2 - time1) + 's'

PS:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:

JavaScript正则表达式在线测试工具:
http://tools.softyun.net/regex/javascript

正则表达式在线生成工具:
http://tools.softyun.net/regex/create_reg

希望本文所述对大家Python程序设计有所帮助。

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们