打开beautifulsoup文件中的TypeError

时间:2014-11-14 00:32:55

标签: python beautifulsoup

我不知道为什么我会收到错误。有人可以向我解释一下发生了什么吗?我试着跟随其他一些例子,但显然我失败了:P

import BeautifulSoup as bs

def readHTML():
    soup = bs("stats.html")
    print(soup.prettify())

为什么我会收到类型错误?

TypeError: 'module' object is not callable

1 个答案:

答案 0 :(得分:1)

你需要利用课程" BeautifulSoup"这是在模块内

from BeautifulSoup import BeautifulSoup as bs

def readHTML():   
    soup = bs("stats.html")
    print(soup.prettify())