在Droplet上使用BeautifulSoup脚本执行时出错

时间:2019-01-09 04:24:50

标签: python django beautifulsoup digital-ocean

我有一个beautifulsoup脚本,它可以作为Django自定义命令在我的本地计算机上完美运行。但是,当我在自己的Ocean Drop上执行与自定义命令相同的脚本时,会出现以下nonetype错误:

AttributeError:'NoneType'对象没有属性'prettify'

我不确定为什么该脚本可以在我的机器上运行但不能在Droplet上运行。据我所知,我正在运行相同版本的python和django。

        heading = soup.find('h1',class_="gem-c-title__text gem-c-title__text--long")
        heading = heading.prettify()
        d['heading'] = heading

我想念什么?

0 个答案:

没有答案