gpt4 book ai didi

python - 为什么python模块newspaper3k只返回腾讯、新浪和wallstreetcn的0篇文章?

转载 作者:太空宇宙 更新时间:2023-11-03 21:31:12 26 4
gpt4 key购买 nike

news3k 库非常棒。我对它上瘾了。

请问,为什么大部分中国财经新闻页面的Source和build()只返回0篇文章?

我的代码有问题吗?

from newspaper import Article, Source

url='https://wallstreetcn.com/live/global'

result=newspaper.Source(url,language='zh')

result.build()

result.size()

0

最佳答案

我运行你的代码并收到了不同的结果,也许你遇到了缓存问题。尝试添加 memoize_articles=False,请参阅:

import newspaper

url='https://wallstreetcn.com/live/global'
result = newspaper.Source(url, language='zh', memoize_articles=False)

result.build()
result.size()
>>> 2

您可以找到文档here

关于python - 为什么python模块newspaper3k只返回腾讯、新浪和wallstreetcn的0篇文章?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53502442/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com