I have even tried the commands in pypi.org but no article is getting downloaded.
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.html
article.html only gives empty sting ' '. when i try article.parse() it gives error *
You must
download()
an article first!
I have tried workaround
while article.download_state == ArticleDownloadState.NOT_STARTED:
# Raise exception if article download state does not change after 10 seconds
if slept > 9:
raise ArticleException('Download never started')
sleep(1)
slept += 1
still unable to solve the issue.