用接口爬取今日头条图片

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()

以上是关于用接口爬取今日头条图片的主要内容,如果未能解决你的问题,请参考以下文章

用Ajax爬取今日头条图片

用Ajax爬取今日头条图片集

Python爬虫实战——爬取今日头条美女图片

使用scrapy爬虫,爬取今日头条首页推荐新闻(scrapy+selenium+PhantomJS)

网站爬取-案例三:今日头条抓取(ajax抓取JS数据)

用Python爬下今日头条所有美女,美滋滋!