from newspaper import Article
url = 'http://www.wsj.com/articles/tesla-ceo-elon-musk-unveils-line-of-home-and-industrial-battery-packs-1430461622'
article = Article(url)
article.download()
article.parse()
article.text
The output:
'HAWTHORNE, Calif.—Tesla Motors Inc. Chief Executive Elon Musk unveiled a line of home and industrial battery packs late Thursday, representing a strategic shift as his money-losing electric car company tries to break into a crowded energy storage market.\n\nMore than just a splashy evening party in a hangar at Tesla’s Southern California design studios, the event was the 43-year-old billionaire’s attempt to bring attention to an...'
Why is it truncated? I didn't see this truncation when I scraped an NYTimes articles.
The output:
Why is it truncated? I didn't see this truncation when I scraped an NYTimes articles.