newspaper_intro

from newspaper import Article

url = 'https://www.foxsports.com.au/nrl/nrl-premiership/teams/sharks/james-maloneys-shock-confession-over-relationship-with-shane-flanagan/news-story/7134a366ebb93358cb23a2291ff78409'
article = Article(url)

article.download()
article.parse()

# see who the authors are
article.authors

# when was the publish date
article.publish_date

# the article title
article.title

# the actual text of the article
article.text

# the url of the main image of the article
article.top_img