python爬虫 遇到KeyError: ‘href‘

<a href="https://wordpress-edu-3autumn.localprod.oc.forchange.cn/all-about-the-future_04/" rel="bookmark"><time class="entry-date published" datetime="2018-12-18T11:17:37+00:00">2018-12-18</time><time class="updated" datetime="2018-12-18T11:25:15+00:00">2018-12-18</time></a>

学python爬虫,遇到一个练习,抓取某个网页里的链接,按照学到知识,返回KeyError: 'href'。按照网上找到的其他方法,返回了一个None。

最后解决了。

完整的代码:

import requests

from bs4 import BeautifulSoup

res = requests.get( 'https://wordpress-edu-3autumn.localprod.oc.forchange.cn/' )

html = res.text

soup = BeautifulSoup( html, 'html.parser' )

items = soup.find_all( 'article' )

for item in items:

    title = item.find( 'h2' )

    time = item.find( 'time' )

    print( title.text )
    print( time.text )
    print( title.a['href'])

正确的代码:

print( title.a['href'])

错误的代码:

print( title['href'])

没错也没用的代码:

print( title.get('href'))

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值