#coding:utf-8
import requests
from bs4 import BeautifulSoup
import re
DownPath = "/jiaoben/python/meizitu/pic/"
import urllib
head = {\'User-Agent\':\'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6\'}
TimeOut = 5
PhotoName = 0
c = \'.jpeg\'
PWD="/jiaoben/python/meizitu/pic/"
for x in range(1,4):
site = "http://www.meizitu.com/a/qingchun_3_%d.html" %x
Page = requests.session().get(site,headers=head,timeout=TimeOut)
Coding = (Page.encoding)
Content = Page.content#.decode(Coding).encode(\'utf-8\')
ContentSoup = BeautifulSoup(Content)
jpg = ContentSoup.find_all(\'img\',{\'class\':\'scrollLoading\'})
for photo in jpg:
PhotoAdd = photo.get(\'data-original\')
PhotoName +=1
Name = (str(PhotoName)+c)
r = requests.get(PhotoAdd,stream=True)
with open(PWD+Name, \'wb\') as fd:
for chunk in r.iter_content():
fd.write(chunk)
print ("You have down %d photos" %PhotoName)
有时候不如不想输入路径,那就需要用os模块来修改当前路径
下面是从其他地方看到的一个例子,就是把图片url中的图片名字修改,然后就可以循环保存了,不过也是先确定了某个url
来源:http://www.oschina.net/code/snippet_1016509_21961 开源中国社区,自己修改的地方是提出了相同代码def了个函数