码迷,mamicode.com
首页 > 其他好文 > 详细

爬取校园新闻首页的新闻

时间:2018-04-03 12:54:59      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:url   首页   爬取   body   odi   port   select   .text   beautiful   

import requests
from bs4 import BeautifulSoup

url="http://news.gzcc.cn/html/xiaoyuanxinwen/"
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‘))


for newc in soup.select(‘li‘):
if len(newc.select(‘.news-list-title‘))>0:
d=newc.select(‘a‘)[0].attrs[‘href‘]
res1=requests.get(d)
res1.encoding="utf-8"
e=BeautifulSoup(res1.text,‘html.parser‘)
content=e.select(‘#content‘)[0].text
show=e.select(‘.show-info‘)[0].text
print(content,show)

爬取校园新闻首页的新闻

标签:url   首页   爬取   body   odi   port   select   .text   beautiful   

原文地址:https://www.cnblogs.com/XiaoFengLuo/p/8707450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!