Python简单的抓取静态网页内容
生活随笔
收集整理的這篇文章主要介紹了
Python简单的抓取静态网页内容
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
import requests
from bs4 import BeautifulSoup
res = requests.get('http://news.sina.com.cn/china/')#獲取目標網(wǎng)頁
res.encoding = 'utf-8'#抓取網(wǎng)頁出現(xiàn)亂碼
#print(res.text)
soup = BeautifulSoup(res.text,'html.parser')#爬取網(wǎng)頁
for news in soup.select('.news-item'): if len(news.select('h2')) > 0:time = news.select('.time')[0].text#新聞發(fā)布時間h2 = news.select('h2')[0].text #新聞發(fā)布的標題a = news.select('a')[0]['href']#新聞鏈接print(time+"\t\t",h2+"\t",a)
?
轉(zhuǎn)載于:https://www.cnblogs.com/888888CN/p/8693903.html
總結(jié)
以上是生活随笔為你收集整理的Python简单的抓取静态网页内容的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 邻接矩阵逆邻接矩阵
- 下一篇: 中科大 EPC课程 爬虫(最新,效果良好