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

用requests库和BeautifulSoup4库爬取新闻列表

时间:2017-09-27 13:27:32      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:select   nts   gb2312   port   int   text   soup   sele   res   

import requests
from bs4 import BeautifulSoup
jq=http://news.gzcc.cn/html/2017/xiaoyuanxinwen_0926/8262.html
res = requests.get(jq)
res.encoding=gb2312
soup = BeautifulSoup(res.text,html.parser)

for news in soup.select(li):
    if len(news.select(a))>0:
        title=news.select(a)[0].text
        url=news.select(a)[0][href]
        #time=news.select(‘span‘)[0].contents[0].text
        #print(time,title,url)
        print(title,url)

 

用requests库和BeautifulSoup4库爬取新闻列表

标签:select   nts   gb2312   port   int   text   soup   sele   res   

原文地址:http://www.cnblogs.com/hxhlo/p/7600940.html

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