python爬虫,使用BeautifulSoup模块爬取人民网新链接,标题,时间

Posted iceberg710815

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python爬虫,使用BeautifulSoup模块爬取人民网新链接,标题,时间相关的知识,希望对你有一定的参考价值。

import requests
from bs4 import BeautifulSoup as bs
res = requests.get(‘http://politics.people.com.cn/GB/1024/index.html‘)
content = res.content.decode(‘GB2312‘)
soup = bs(content, ‘html5lib‘)
myList = soup.find_all(‘li‘)

myNews = {}
for i in myList:
    myNews = {}
    myNews[‘title‘] = i.find(‘a‘).get_text()
    myNews[‘link‘] = i.find(‘a‘).get(‘href‘)
    myNews[‘time‘] = i.find(‘em‘).get_text()
    print(myNews)

  运行结果显示:

{‘title‘: ‘千方百计加快恢复和稳定就业 为就业创业、灵活就业提供更多机会‘, ‘link‘: ‘/n1/2020/0321/c1024-31642187.html‘, ‘time‘: ‘2020-03-21‘}
{‘title‘: ‘在精准防控疫情的同时积极有序推进复工复产 稳住和支持市场主体增强经济回升动力‘, ‘link‘: ‘/n1/2020/0321/c1024-31642183.html‘, ‘time‘: ‘2020-03-21‘}
{‘title‘: ‘李克强:在精准防控疫情的同时积极有序推进复工复产 稳住和支持市场主体增强经济回升动力‘, ‘link‘: ‘/n1/2020/0320/c1024-31642058.html‘, ‘time‘: ‘2020-03-20‘}

通过和上一篇博客使用正则表达式抓取人民网新闻相比较,对于简单的网页抓取,使用正则表达式获取网页信息更简单,快捷。

 

以上是关于python爬虫,使用BeautifulSoup模块爬取人民网新链接,标题,时间的主要内容,如果未能解决你的问题,请参考以下文章

python爬虫之beautifulsoup的使用

Python爬虫小白入门Python 爬虫 – BeautifulSoup分析页面

python爬虫---beautifulsoup

Python爬虫之BeautifulSoup和requests的使用

Python 爬虫-BeautifulSoup

python 爬虫之BeautifulSoup 库的基本使用