1. 用requests庫和beautifulsoup庫,爬取校園新聞首頁新聞的標題、鏈結、正文。
import2. 分析字串,獲取每篇新聞的發布時間,作者,**,攝影等資訊。requests
from bs4 import
beautifulsoup
url = '
'res =requests.get(url)
res.encoding = '
utf-8
'soup = beautifulsoup(res.text, '
html.parser')
for news in soup.select('li'
):
if len(news.select('
.news-list-title
')) >0:
print(news.select('
.news-list-title'))
t=news.select('
.news-list-title
')[0].text
dt=news.select('
.news-list-info
')[0].contents[0].text
a=news.select('
a')[0].attrs['
href']
print(dt,t,a)
3. 將其中的發布時間由str轉換成datetime型別。
import4. 將完整的**及執行結果截圖發布在作業上。requests
from bs4 import
beautifulsoup
from datetime import
datetime
url = '
'res =requests.get(url)
res.encoding = '
utf-8
'soup = beautifulsoup(res.text,'
html.parser')
for news in soup.select('li'
):
if len(news.select('
.news-list-title
'))>0:
t = news.select('
.news-list-title
')[0].text
dt = news.select('
.news-list-info
')[0].contents[0].text
a = news.select('
a')[0].attrs['
href']
print(dt,t,a)#
爬取校園新聞首頁新聞的標題、鏈結
res2 =requests.get(a)
res2.encoding = '
utf-8
'soup2 = beautifulsoup(res2.text, '
html.parser')
te = soup2.select('
#content
')[0].text
print(te)#
爬取校園新聞首頁新聞的正文
ifd = soup2.select('
.show-info
')[0].text
dt2 = ifd.lstrip('
')[:19]
print(dt2)#
獲取新聞的發布時間
i = ifd.find('')
if i>0:
s = ifd[ifd.find('
'):].split()[0].lstrip('')
print(s)#
獲取新聞的作者。
q = ifd.find('')
if q >0:
b = ifd[ifd.find('
'):].split()[0].lstrip('')
print(b)#
獲取新聞的**。
c = ifd.find('
攝影:'
)
if c >0:
n = ifd[ifd.find('
攝影:'):].split()[0].lstrip('
攝影:'
)
print(n)#
獲取新聞的攝影。
dtn = datetime.strptime(dt2,'
%y-%m-%d %h:%m:%s
')#將其中的發布時間由str轉換成datetime型別。
(dtn)
break
爬取校園新聞首頁的新聞
1.用requests庫和beautifulsoup庫,爬取校園新聞首頁新聞的標題 鏈結 正文 show info。2.分析info字串,獲取每篇新聞的發布時間,作者,攝影等資訊。import requests newsurl res requests.get newsurl 返回response物...
爬取校園新聞首頁的新聞
1.用requests庫和beautifulsoup庫,爬取校園新聞首頁新聞的標題 鏈結 正文 show info。import requests from bs4 import beautifulsoup newsurl res requests.get newsurl res.encoding ...
爬取校園新聞首頁的新聞
1.用requests庫和beautifulsoup庫,爬取校園新聞首頁新聞的標題 鏈結 正文 show info。2.分析info字串,獲取每篇新聞的發布時間,作者,攝影等資訊。import requests from bs4 import beautifulsoup from datetime ...