用接口爬取今日头条图片
Posted 陌溪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用接口爬取今日头条图片相关的知识,希望对你有一定的参考价值。
#encoding:utf8
import requests
import json
import re
demo = requests.get(‘http://www.toutiao.com/api/pc/feed/?category=gallery_detail&utm_source=toutiao&max_behot_time=0&as=A1E5F9D180C2473&cp=5910C214D7E3BE1‘).text
demo1 = json.loads(demo)
n = 0
for i in demo1[‘data‘]:
the_url = ‘http://www.toutiao.com/‘+ i[‘source_url‘]
contents = requests.get(the_url).text
demo = re.compile(‘gallery = {(.*?)}‘,re.S)
list = demo.findall(contents)
for i in list:
n=n+1
print(i)
t = requests.get(i[33:85].replace(‘\/‘,‘/‘)).content
op = open(str(n)+‘.jpg‘,‘wb+‘)
op.write(t)
op.close()
以上是关于用接口爬取今日头条图片的主要内容,如果未能解决你的问题,请参考以下文章