16.ajax_case05

Posted hankleo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了16.ajax_case05相关的知识,希望对你有一定的参考价值。

# 抓取36氪快讯
# https://36kr.com/newsflashes

import requests
import json

header = {
        'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36(KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'
    }

url = 'https://36kr.com/api/newsflash?&per_page=20'
response = requests.get(url,headers=header,timeout=5)

data = json.loads(response.text)['data']
items = data['items']

# print(items)

for item in items:
    # print(item)
    item_info = {}
    title = item['title']
    item_info['title'] = title
    description = item['description']
    item_info['content'] = description
    published_time = item['published_at']
    item_info['published_time'] = published_time
    print(item_info)

以上是关于16.ajax_case05的主要内容,如果未能解决你的问题,请参考以下文章

16.ajax_case06

16.ajax_case08

16.ajax_case07

推进学说代码片段

刷新片段不再起作用?

持久片段和查看器