Python爬虫获取图片并下载保存至本地


本文摘自php中文网,作者不言,侵删。

这篇文章主要介绍了关于Python爬虫获取图片并下载保存至本地,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

1、抓取煎蛋网上的图片。

2、代码如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

import urllib.request

import os

#to open the url

def url_open(url):

 req=urllib.request.Request(url)

 req.add_header('User-Agent','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0')

 response=urllib.request.urlopen(url)

 html=response.read()

 return html

#to get the num of page like 1,2,3,4...

def get_page(url):

 html=url_open(url).decode('utf-8')

 a=html.find('current-comment-page')+23 #add the 23 offset th arrive at the [2356]

 b=html.find(']',a)

 #print(html[a:b])

 return html[a:b]

#find the url of imgs and return the url of arr

def find_imgs(url):

 html=url_open(url).decode('utf-8')

 img_addrs=[]

 a=html.find('img src=')

 while a!=-1:

  b=html.find('.jpg',a,a+255) # if false : return -1

  if b!=-1:

   img_addrs.append('http:'+html[a+9:b+4])

  else:

   b=a+9

  a=html.find('img src=',b)

 #print(img_addrs) 

 return img_addrs

  #print('http:'+each)

   

#save the imgs

def save_imgs(folder,img_addrs):

 for each in img_addrs:

  filename=each.split('/')[-1] #get the last member of arr,that is the name

  with open(filename,'wb') as f:

   img = url_open(each)

   f.write(img)

  

def download_mm(folder='mm',pages=10):

 os.mkdir(folder)

 os.chdir(folder)

 url='http://jandan.net/ooxx/'

 page_num=int(get_page(url))

  

 for i in range(pages):

  page_num -= i

  page_url = url + 'page-' + str(page_num) + '#comments'

  img_addrs=find_imgs(page_url)

  save_imgs(folder,img_addrs)

   

if __name__ == '__main__':

 download_mm()

阅读剩余部分

相关阅读 >>

Python赋值时大小写敏感吗

对于初学者如何理解 @classmethod 和@staticmethod

Python中怎么去掉标点符号

Python函数之bool([x])用法详解

Python range用法

使用Python和xlwt向excel文件中写入中文

Python如何判断是否为浮点数

Python中的字典排序如何实现代码说明

Python什么时候用多进程编程

Python基础-类变量和实例变量

更多相关阅读请进入《Python》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...