码迷,mamicode.com
首页 > 编程语言 > 详细

python 9.28作业

时间:2017-09-28 13:07:25      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:校园   alt   .com   png   int   技术分享   网络数   request   imp   

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

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

技术分享

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

 

python 9.28作业

标签:校园   alt   .com   png   int   技术分享   网络数   request   imp   

原文地址:http://www.cnblogs.com/coolcan/p/7605941.html

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