beautifulsoup qpython错误

时间:2018-02-13 13:26:36

标签: beautifulsoup qpython

我正在使用qPython中的BeautifulSoup进行抓取项目。

这是一些代码

    import BeautifulSoup
    from BeautifulSoup import BeautifulSoup as Soup
    import requests
    import re

    r = requests.get(".....")

    soup = Soup(r.text)

    data  = soup.find_all("script")[12].string

以上是代码示例

的最后一行的错误
TypeError: 'NoneType' object is not callable

我遵循了包安装和从stackoverflow从其他帖子导入的准则。 谢谢你

1 个答案:

答案 0 :(得分:0)

这意味着 soup.find_all("script") 正在返回 None

先尝试打印。