博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
爬取校园新闻
阅读量:5096 次
发布时间:2019-06-13

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

import requestsre=requests.get('http://news.gzcc.cn/html/xiaoyuanxinwen/')re.encoding='utf-8'from bs4 import BeautifulSoupsoup = BeautifulSoup(re.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        f = news.select('.news-list-description')[0].text        r = news.select('.news-list-info')[0].text        l=news.select('a')[0].attrs['href']        print(t,l)        print(f,r)        res = requests.get(l)        res.encoding = 'utf-8'        soupd = BeautifulSoup(res.text, 'html.parser')        print(soupd.select('.show-info')[0].text[0:25])        print(soupd.select('.show-info')[0].text[30:38])        print(soupd.select('.show-info')[0].text[38:45])        print(soupd.select('.show-info')[0].text[46:56])        print(soupd.select('.show-info')[0].text[62:])        break

 

转载于:https://www.cnblogs.com/206cch/p/8717418.html

你可能感兴趣的文章
cer证书签名验证
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>
QML学习笔记之一
查看>>
App右上角数字
查看>>
小算法
查看>>
新作《ASP.NET MVC 5框架揭秘》正式出版
查看>>
WPF中实现多选ComboBox控件
查看>>
读构建之法第四章第十七章有感
查看>>
Windows Phone开发(4):框架和页 转:http://blog.csdn.net/tcjiaan/article/details/7263146
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
IOS-图片操作集合
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
jquery实现限制textarea输入字数
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
ActiveMQ与spring整合
查看>>
第一阶段冲刺06
查看>>
EOS生产区块:解析插件producer_plugin
查看>>
排球积分程序(三)——模型类的设计
查看>>