話不多說,都在代碼里
#下載斗魚顏值欄目主播照片
#author:ives
#date:2016-8-28 21:58
#e-mail:renhanlinbsl@163.com
import urllib.request
import string
import re
import json
import sys,os
url="http://capi.douyucdn.cn/api/v1/getColumnRoom/8?offset="
urlAfter="&limit=30&client_sys=android"
offset=0
#下載的張數
count=1
#獲取當前腳本路徑
def cur_file_dir():
path=sys.path[0]
if os.path.isdir(path):
return path
elif os.path.isfile(path):
return os.path.dirname(path)
#獲取網頁json
def getHtml(url):
page=urllib.request.urlopen(url)
html=page.read()
#解決編碼問題
return html.decode("UTF-8")
#下載圖片
def downLoadImg(url):
#截取文件名
file=open(downLoadUrl+url.split("/")[-1],'wb')
img=urllib.request.urlopen(url)
buf=img.read()
file.write(buf)
return
#動態生成路徑
def getLink(url):
response=getHtml(url)
#處理中文編碼問題
response = response.encode('latin-1').decode('unicode_escape')
jsonText=json.loads(response)
#獲取所有的數據
test=jsonText["data"]
for i in test:
#獲取圖片路徑
src=i["vertical_src"]
downLoadImg(src)
global count
print("已下載"+str(count)+"張"+src+"-*-"+str(offset))
count=count+1
return
######################################################
#獲取下載目錄
downLoadUrl=cur_file_dir()+"/"
#動態修改offset獲取更多圖片
while(True):
finalUrl=url+str(offset)+urlAfter
getLink(url)
offset=offset+20
聯系我:renhanlinbsl@163.com
2016-8-30
21:49