Suppose I have local copies of news articles. How can I run newspaper on those articles? According to the documentation, the normal use of the newspaper library looks something like this:
from newspaper import Article
url = 'http://fox13now.com/2013/12/30/new-year-new-laws-obamacare-pot-guns-and-drones/'
article.download()
article = Article(url)
article.parse()
# ...
In my case, I do not need to download the article from a web page because I already have a local copy of the page. How can I use newspaper on a local copy of the web page?