我正在尝试使用报纸python库从网址下载文章。
我在下面尝试了执行此操作的基本方法。它返回针对作者和标题的corect响应,但不返回文本。我已经在其他网站上尝试过,并且可以正常工作。
url = https://nakedsecurity.sophos.com/2018/09/21/bitcoin-flaw-could-have-allowed-dreaded-51-takeover/
article = Article(url)
article.download()
article.parse()
print (article.title)
print (article.authors)
print (article.publish_date)
print (article.text)
这是可以解决的问题,还是无法找到文章的算法?