newspaper icon indicating copy to clipboard operation
newspaper copied to clipboard

newspaper3k is a news, full-text, and article metadata extraction in Python 3. Advanced docs:

Results 152 newspaper issues
Sort by recently updated
recently updated
newest added

Hi, I am trying to use newspaper3k on my work computer and I keep getting an SSLError and the articles won't download. The error happens when trying to parse the...

`python-crfsuite` appears to fail to build under python 3.10. This package is a dependency of `pythainlp`. `pythainlp` is the only failing package under Python 3.10. `pythainlp` is used exclusively to...

I currently working on a project which constist in extracting informations for repport. I would like to use newspaper for this but as for now I have only seen newspaper...

now return just text ; however , some article have image or code; so i want to return article content html,then i can use it ;

Hi admin, ``` import newspaper from newspaper import Config from newspaper import Article USER_AGENT = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0) Gecko/20100101 Firefox/78.0' config = Config() config.browser_user_agent =...

Hey, I was wondering why the function feed_urls() does not return any feeds, even for the example page cnn.com, although it does have RSS-feeds. So I dug deeper into the...

Using the example in the docs ``` from newspaper import Article url = 'http://fox13now.com/2013/12/30/new-year-new-laws-obamacare-pot-guns-and-drones/' article = Article(url) article.download() article.parse() article.authors ``` `authors` yields an empty list, whereas the correct answer...

Article `download()` failed with 500 Server Error: Internal Server Error for url : is there any max_retry option in this library ?

For example, when I wanna search specific words(America, war, world),I wanna get some news related to these three words. So I copy the URL in these words:"www.xxx.xx/america-war-world". However the problems...