AttributeError: 'NoneType' object has no attribute 'children'

本文分享了一位爬虫新手在使用Python的requests库和BeautifulSoup解析HTML时遇到的AttributeError错误经历。作者通过检查代码,发现将requests误写为request,导致无法正确获取网页内容。修正后,代码成功抓取并解析了大学排名列表。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

AttributeError: ‘NoneType’ object has no attribute ‘children’

第一次写爬虫,也是第一次博客,就碰到这个问题,查了半天也没找出原因,认真想了一下
‘NoneType’ 对象没有属性 ‘children’ ,应该是没有抓取到html网页內部信息,应该问题出现在def getHTMLText(url)函数没有得到url链接,贴出自己在慕课网看的嵩天老师的课程后写的代码

# -*- coding: utf-8 -*-
import requests
from bs4 import BeautifulSoup
import bs4

def getHTMLText(url):#01
    try:
        r = request.get(url, timeout=30)
        r.raise_for_status()
        r.encoding = r.apparent_encoding
        return r.text
    except:
        return ""
def fillUnivList(ulist,html):#02
    soup = BeautifulSoup(html,"html.parser")
    for tr in soup.find('tbody').children:
        if isinstance(tr,bs4.element.Tag):
            tds = tr('td')
            ulist.append([tds[0].string,tds[1].string,tds[2].string])
def printUnivList(ulist, num):
    tplt = "{0:^10}\t{1:{3}^10}\t{2:^10}"
    print(tplt.format("排名","学校名称","总分",chr(12288)))
    for i in range(num):
        u=ulist[i]
        print(tplt.format(u[0],u[1],u[2],chr(12288)))  

def main():
    
    uinfo = []
    url = 'http://www.zuihaodaxue.cn/zuihaodaxuepaiming2016.html'
    html = getHTMLText(url)
   
    fillUnivList(uinfo,html)
    printUnivList(uinfo,20)
main()

最后发现代码错误出现在

r = request.get(url, timeout=30)

request应该是requests
在网上查了下出现这个错误,基本都是代码关键字出错导致

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值