MerchantryTidbits

scraping / library

newspaper3k

Capability: newspaper3k

Use it when

  • extract news article title body and authors from article URLs
  • build a simple news corpus without writing custom parsers

What it solves

Install

pip install newspaper3k

Invoke

from newspaper import Article; a = Article(url); a.download(); a.parse()

Alternatives

No reviewed alternatives recorded yet.