博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用requests库和BeautifulSoup4库爬取新闻列表
阅读量:5111 次
发布时间:2019-06-13

本文共 994 字,大约阅读时间需要 3 分钟。

 1、用requests库和BeautifulSoup4库,爬取校园新闻列表的时间、标题、链接、来源。

import requestsfrom bs4 import BeautifulSoupres=requests.get('http://news.gzcc.cn/html/xiaoyuanxinwen/')res.encoding='utf-8'soup=BeautifulSoup(res.text,'html.parser')for news in soup.select('li'):    if len(news.select('.news-list-title'))>0:      title=news.select('.news-list-title')[0].text      url=news.select('a')[0]['href']      time=news.select('.news-list-info')[0].contents[0].text      laiyuan=news.select('.news-list-info')[0].contents[1].text      print(title,url,time,laiyuan)

 

2、选一个自己感兴趣的主题,做类似的操作,为“爬取网络数据并进行文本分析”做准备。

import requestsfrom bs4 import BeautifulSoupres=requests.get('http://trips.tuniu.com/search?q=%E7%8F%A0%E6%B5%B7')res.encoding='utf-8'soup=BeautifulSoup(res.text,'html.parser')for trips in soup.select('li'):    if len(trips.select('.list-name'))>0:      title=trips.select('.list-name')[0].text      url=trips.select('a')[0]['href']      print(title,url)

 

转载于:https://www.cnblogs.com/chenyuanzhao/p/7600167.html

你可能感兴趣的文章
Java 多态 虚方法
查看>>
Unity之fragment shader中如何获得视口空间中的坐标
查看>>
万能的SQLHelper帮助类
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Html5 离线页面缓存
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Android打包key密码丢失找回
查看>>
VC6.0调试技巧(一)(转)
查看>>
类库与框架,强类型与弱类型的闲聊
查看>>
webView添加头视图
查看>>
php match_model的简单使用
查看>>
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
php_扑克类
查看>>
回调没用,加上iframe提交表单
查看>>
(安卓)一般安卓开始界面 Loding 跳转 实例 ---亲测!
查看>>
Mysql 索引优化 - 1
查看>>
LeetCode(3) || Median of Two Sorted Arrays
查看>>