第一个BeautifulSoup爬虫

利用BeautifulSoup抓取网易评论的文章标题,时间,链接
使用BeautifulSoup,request模块,在虚拟的Python2.7下运行

# coding=utf-8
import requests
from bs4 import BeautifulSoup


html = requests.get('http://money.163.com/special/pinglun/')
text = html.text


soup = BeautifulSoup(text, "lxml")

# h2 = soup.find('h2')
# print h2

#搜索div标签下所有class为item_top的内容
for link in soup.find_all('div', class_='item_top'):
    #获得a标签下的文字
    print(link.a.get_text())
    #获得a标签下href
    print(link.a.get('href'))
    #获得span标签下的文字,即时间
    print(link.span.get_text())
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值