pip3 install newspaper3k
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.title
article.publish_date
article.text
from newspaper import Article
from newspaper import Config
config = Config()
config.follow_meta_refresh = True
config.language = ‘zh’
article = Article(
‘’, config=config)
article.download(input_html=html)
article.parse()
article.title
article.publish_date
article.text