pip install newspaper3k
python
from newspaper import Article
python
python
article = Article(url)
article.download()
python
article.parse()
python
title = article.title
python
authors = article.authors
python
publish_date = article.publish_date
python
content = article.text
python
keywords = article.keywords
python
article = Article(url)
python
python