Newspaper3k:有什么方法可以将多篇网络文章下载到一个变量中?

如何解决Newspaper3k:有什么方法可以将多篇网络文章下载到一个变量中?

我正在尝试下载一些网络文章进行解析。它们是类似的文章(年度报告),为了简单起见,我希望将所有三篇文章都下载到一个单一的输出/变量中。

当我分隔多个 url 时,代码有效,但是,只下载第一个 url。

这是我尝试运行的代码示例:

from newspaper import Article

consolidated = Article('url1.com','url2.com','url3.com')
consolidate.download()
consolidated.parse()
consolidated.nlp()

result = consolidated.text
print(result)

url1

解决方法

constructor of Article is defined as follows

class Article(object):
    """Article objects abstract an online news article page
    """
    def __init__(self,url,title='',source_url='',config=None,**kwargs):

因此,如果您执行 Article('url1.com','url2.com','url3.com'),Python 会将其解释为

Article(url='url1.com',title='url2.com',source_url='url3.com')

这不是你想要的。

根据您的用途,例如,您可以将所有文章存储在字典中,如下所示:

from newspaper import Article
import nltk
nltk.download('punkt')

urls = ['https://edition.cnn.com/2021/03/24/americas/brazil-youth-covid-19-intl-latam/index.html','https://edition.cnn.com/2021/03/25/business/astrazeneca-covid-vaccine/index.html','https://edition.cnn.com/2021/03/25/india/india-covid-double-mutant-variant-intl-hnk/index.html']

results = {}

for url in urls:
    article = Article(url)
    article.download()
    article.parse()
    article.nlp()
    results[url] = article

您可以稍后像这样使用它:

for url in urls:
    print(url)
    article = results[url]
    print(article.authors)
    print(article.publish_date)
    print(article.keywords)
    print(article.summary)

本例中的输出:

https://edition.cnn.com/2021/03/24/americas/brazil-youth-covid-19-intl-latam/index.html
['Matt Rivers']
2021-03-24 00:00:00
['doctors','sick','silva','younger','icu','p1','patients','variant','getting','young','brazil','da','covid19']
São Paulo (CNN) It took only 10 days from start to finish,from the time 28-year-old Graciane da Silva got sick to the time she died.
She was alone when she passed away in a Rio de Janeiro Hospital -- her mom,Maria da Penha da Silva Siqueira,thinks about that often.
And amid that surge,a worrying pattern has emerged—more young people seem to be getting severely ill and dying from Covid-19,doctors tell CNN.
The increase in both illness and death in younger people has coincided with the rise of at least one Covid-19 variant in Brazil.
It's an effect that Maria da Penha da Silva Siqueira feels acutely nearly every day.
https://edition.cnn.com/2021/03/25/business/astrazeneca-covid-vaccine/index.html
['Julia Horowitz','Cnn Business','Andrew Berens','Svb Leerink Analyst','Ronn Torossian','Ceo Of Public Relations']
2021-03-25 00:00:00
['think','astrazenecas','mistake','trials','vaccine','data','doses','pandemic','european','astrazeneca','hero','went','villain','vaccines','company']
AstraZeneca updated its data on Thursday,reporting that the trials showed its vaccine to be 76% effective in preventing Covid-19 symptoms.
The AstraZeneca vaccine is administered to a patient at a pharmacy in London.
France also initially limited AstraZeneca vaccines to those under 65.
A nurse prepares a dose of the AstraZeneca vaccine at the Edouard Herriot hospital on Feb. 6 in Lyon,France.
Frustrations boiled over this week after 29 million doses of AstraZeneca's vaccine were discovered in a reported "raid" on a factory in Italy.
https://edition.cnn.com/2021/03/25/india/india-covid-double-mutant-variant-intl-hnk/index.html
['Jessie Yeung','Esha Mitra']
2021-03-25 00:00:00
['india','mutations','strain','variants','according','double','cases','spike','mutant','ministry','covid19','detects']
New Delhi (CNN) India has discovered a new "double mutant" variant of Covid-19,as the country struggles to contain a spike in cases that's raising fears of a second wave.
A "double mutant" variant is a virus strain that carries two mutations.
India has now reported a total of more than 11.7 million cases and 160,000 related deaths,according to Johns Hopkins University data.
And now double mutations have been reported.
The Brazil variant known as P.1 has 17 mutations,and the South Africa variant known as B.1.351 also has multiple mutations,according to the US Centers for Disease Control and Prevention (CDC).

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?
Java在半透明框架/面板/组件上重新绘画。
Java“ Class.forName()”和“ Class.forName()。newInstance()”之间有什么区别?
在此环境中不提供编译器。也许是在JRE而不是JDK上运行?
Java用相同的方法在一个类中实现两个接口。哪种接口方法被覆盖?
Java 什么是Runtime.getRuntime()。totalMemory()和freeMemory()?
java.library.path中的java.lang.UnsatisfiedLinkError否*****。dll
JavaFX“位置是必需的。” 即使在同一包装中
Java 导入两个具有相同名称的类。怎么处理?
Java 是否应该在HttpServletResponse.getOutputStream()/。getWriter()上调用.close()?
Java RegEx元字符(。)和普通点?