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).

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...