最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Python異步爬取知乎熱榜實(shí)例分享

 更新時(shí)間:2022年04月11日 20:03:51   作者:程序員班長  
這篇文章主要介紹了Python異步爬取知乎熱榜實(shí)例分享,文章圍繞Python異步爬取是我相關(guān)資料展開對知乎熱榜爬取的相關(guān)內(nèi)容,需要的小伙伴卡哇伊參考一下

一、錯(cuò)誤代碼:摘要和詳細(xì)的url獲取不到

import asyncio
from bs4 import BeautifulSoup
import aiohttp
?
headers={
? ? 'user-agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',
? ? 'referer': 'https://www.baidu.com/s?tn=02003390_43_hao_pg&isource=infinity&iname=baidu&itype=web&ie=utf-8&wd=%E7%9F%A5%E4%B9%8E%E7%83%AD%E6%A6%9C'
}
async def getPages(url):
? ? async with aiohttp.ClientSession(headers=headers) as session:
? ? ? ? async with session.get(url) as resp:
? ? ? ? ? ? print(resp.status) ?# 打印狀態(tài)碼
? ? ? ? ? ? html=await resp.text()
? ? soup=BeautifulSoup(html,'lxml')
? ? items=soup.select('.HotList-item')
? ? for item in items:
? ? ? ? title=item.select('.HotList-itemTitle')[0].text
? ? ? ? try:
? ? ? ? ? ? abstract=item.select('.HotList-itemExcerpt')[0].text
? ? ? ? except:
? ? ? ? ? ? abstract='No Abstract'
? ? ? ? hot=item.select('.HotList-itemMetrics')[0].text
? ? ? ? try:
? ? ? ? ? ? img=item.select('.HotList-itemImgContainer img')['src']
? ? ? ? except:
? ? ? ? ? ? img='No Img'
? ? ? ? print("{}\n{}\n{}".format(title,abstract,img))
?
if __name__ == '__main__':
? ? url='https://www.zhihu.com/billboard'
? ? loop=asyncio.get_event_loop()
? ? loop.run_until_complete(getPages(url))
? ? loop.close()

二、查看JS代碼

發(fā)現(xiàn)詳細(xì)鏈接、圖片鏈接、問題摘要等都在JS里面(CSDN的開發(fā)者助手插件確實(shí)好用)

正則表達(dá)式獲取上述信息:

接下來就是詳細(xì)的代碼啦

import asyncio
import json
import re
import aiohttp
?
headers={
? ? 'user-agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',
? ? 'referer': 'https://www.baidu.com/s?tn=02003390_43_hao_pg&isource=infinity&iname=baidu&itype=web&ie=utf-8&wd=%E7%9F%A5%E4%B9%8E%E7%83%AD%E6%A6%9C'
}
async def getPages(url):
? ? async with aiohttp.ClientSession(headers=headers) as session:
? ? ? ? async with session.get(url) as resp:
? ? ? ? ? ? print(resp.status) ?# 打印狀態(tài)碼
? ? ? ? ? ? html=await resp.text()
?
? ? regex=re.compile('"hotList":(.*?),"guestFeeds":')
? ? text=regex.search(html).group(1)
? ? # print(json.loads(text)) ? # json換成字典格式
? ? for item in json.loads(text):
? ? ? ? title=item['target']['titleArea']['text']
? ? ? ? question=item['target']['excerptArea']['text']
? ? ? ? hot=item['target']['metricsArea']['text']
? ? ? ? link=item['target']['link']['url']
? ? ? ? img=item['target']['imageArea']['url']
? ? ? ? if not img:
? ? ? ? ? ? img='No Img'
? ? ? ? if not question:
? ? ? ? ? ? question='No Abstract'
? ? ? ? print("Title:{}\nPopular:{}\nQuestion:{}\nLink:{}\nImg:{}".format(title,hot,question,link,img))
?
if __name__ == '__main__':
? ? url='https://www.zhihu.com/billboard'
? ? loop=asyncio.get_event_loop()
? ? loop.run_until_complete(getPages(url))
? ? loop.close()

到此這篇關(guān)于Python異步爬取知乎熱榜實(shí)例分享的文章就介紹到這了,更多相關(guān)Python異步爬取內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論

西畴县| 临汾市| 宜章县| 巍山| 五家渠市| 乐平市| 宽甸| 鹰潭市| 奉贤区| 利辛县| 临江市| 沙洋县| 临泉县| 永济市| 榆中县| 通辽市| 子长县| 白沙| 将乐县| 印江| 万宁市| 龙川县| 巩义市| 隆化县| 久治县| 中西区| 师宗县| 乌兰察布市| 白玉县| 西乌珠穆沁旗| 顺义区| 京山县| 新竹市| 剑阁县| 呼和浩特市| 页游| 扶风县| 芒康县| 许昌县| 六安市| 大方县|