Codebase list golang-github-jdkato-prose / eccb2396-f240-454e-8b77-61f06882c1fa/upstream/sid scripts / get_article.py
eccb2396-f240-454e-8b77-61f06882c1fa/upstream/sid

Tree @eccb2396-f240-454e-8b77-61f06882c1fa/upstream/sid (Download .tar.gz)

get_article.py @eccb2396-f240-454e-8b77-61f06882c1fa/upstream/sidraw · history · blame

import os

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()

with open(os.path.join('testdata', 'article.txt'), 'w') as f:
    f.write(article.text)