python爬虫 AttributeError: 'NoneType' object has no attribute 'children' 错误

       今天看python爬虫的视频,然后按照视频上的内容编写代码,运行时出现了AttributeError: 'NoneType' object has no attribute 'children'错误提示,看了好久代码也没发现错误,百度了网上有个博主发布了一条博客,发现他也是一样的错误,看了他的博客,然后再看我的代码,发现我们都是同一个单词写错了,代码如下:

# 爬取由上海交通大学开发的最好大学网  http://www.zuihaodaxue.cn/
# 中国大学排名网页  http://www.zuihaodaxue.cn/zuihaodaxuepaiming2018.html

import requests
from bs4 import BeautifulSoup
import bs4


def getHTMLText(url):
    try:
        r = requests.get(url,timeoout=30)
        r.raise_for_status()
        r.encoding = r.apparent_encoding
        return r.text
    except:
        return ""


def fillUnivList(ulist,html):
    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].
评论 26
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值