In [69]:
import json
import time
from scraper import getheadlines, getheadlines_JS
from textanalyser import generatesentiment
import boto
from time import gmtime, strftime
In [70]:
def generateheadlinefile(source_file, output_file, s3key, scraperfn):
with open(source_file) as data_file:
sources = json.load(data_file)
data = {}
data["time"] = time.strftime("%c")
data["news-data"] = []
for source in sources:
headlines = scraperfn(source["url"], source["xpath"])
sentiments = [generatesentiment("headline", headline) for headline in headlines]
print(sentiments)
data["news-data"].append({
"name": source["name"],
"sentiments": sentiments
})
# with open(output_file, 'w') as outfile:
# json.dump(data, outfile)
filename = strftime("%Y-%m-%d", gmtime())
s3 = boto.connect_s3()
bucket = s3.create_bucket('data.newsemote')
key = bucket.new_key(s3key + '/' + filename + '.json')
key.set_contents_from_string(json.dumps(data))
key.set_acl('public-read')
#keep copy of file in latest.json
latest = bucket.new_key(s3key + '/latest.json')
latest.set_contents_from_string(json.dumps(data))
latest.set_acl('public-read')
#retrieve files in bucket
files = bucket.list(prefix=s3key)
files = sorted(files, key=lambda k: k.last_modified, reverse=True)
filtered = [f for f in files if f.name != s3key + '/latest.json' and f.name != 'last7.json']
filtered = filtered[:7]
filelist = [file.name for file in filtered]
print(filelist)
#write to list file
latestlist = bucket.new_key(s3key + '/last7.json')
latestlist.set_contents_from_string(json.dumps(filelist))
latestlist.set_acl('public-read')
In [71]:
generateheadlinefile('news_sources_au.json', 'data-au.json', "au", getheadlines)
generateheadlinefile('news_sources_us.json', 'data-us.json', 'us', getheadlines_JS)
[{'headline': 'All options on the table in wake of Syrian gas attack, US warns', 'sentiment': {'neg': 0.29, 'neu': 0.71, 'pos': 0.0, 'compound': -0.5423}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Father grieves for baby twins killed in Syrian gas massacre', 'sentiment': {'neg': 0.487, 'neu': 0.513, 'pos': 0.0, 'compound': -0.8225}, 'v_neg': [{'word': 'killed', 'score': -3.5}], 's_neg': [{'word': 'grieves', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "Rockhampton's flooded Fitzroy to peak at midday", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Controversial Trump adviser Bannon dropped from National Security Council', 'sentiment': {'neg': 0.161, 'neu': 0.625, 'pos': 0.214, 'compound': 0.1531}, 'v_neg': [], 's_neg': [{'word': 'Controversial', 'score': -0.8}], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'Porter seemingly uninformed about debt recovery program, FOI investigation reveals', 'sentiment': {'neg': 0.217, 'neu': 0.783, 'pos': 0.0, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'debt', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': "Family's anguish over daughter receiving cuts, black eyes while in care", 'sentiment': {'neg': 0.353, 'neu': 0.462, 'pos': 0.185, 'compound': -0.4404}, 'v_neg': [{'word': 'anguish', 'score': -2.9}], 's_neg': [{'word': 'cuts', 'score': -1.2}], 'v_pos': [], 's_pos': [{'word': 'care', 'score': 2.2}]}, {'headline': "Young ice users 'have brain changes similar to Parkinson's disease'", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Revealed: How AFL docs keep bloodied players on the field', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'One in three students consider self-harm and suicide: report', 'sentiment': {'neg': 0.36, 'neu': 0.64, 'pos': 0.0, 'compound': -0.6705}, 'v_neg': [{'word': 'suicide', 'score': -3.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Terrorist or hipster — what does a beard mean?', 'sentiment': {'neg': 0.439, 'neu': 0.561, 'pos': 0.0, 'compound': -0.6908}, 'v_neg': [{'word': 'Terrorist', 'score': -3.7}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Volunteers aplenty awaiting call to help with cyclone and flood clean-up', 'sentiment': {'neg': 0.0, 'neu': 0.787, 'pos': 0.213, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'help', 'score': 1.7}]}, {'headline': 'Masters favourite Dustin Johnson in doubt after staircase fall', 'sentiment': {'neg': 0.238, 'neu': 0.762, 'pos': 0.0, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'doubt', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': "VW's software fix for dieselgate cars causing fuel economy problems: drivers", 'sentiment': {'neg': 0.213, 'neu': 0.787, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'problems', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Barry Manilow feared disappointing fans by coming out as gay', 'sentiment': {'neg': 0.444, 'neu': 0.556, 'pos': 0.0, 'compound': -0.7506}, 'v_neg': [], 's_neg': [{'word': 'feared', 'score': -2.2}, {'word': 'disappointing', 'score': -2.2}], 'v_pos': [], 's_pos': []}, {'headline': "Crown-of-thorns starfish DNA reveals coral killer's weakness ", 'sentiment': {'neg': 0.318, 'neu': 0.682, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'weakness', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': 'Police pull over driver, find more than $2m in truck', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Controversial Pilliga gas project provokes debate over NSW energy future', 'sentiment': {'neg': 0.311, 'neu': 0.53, 'pos': 0.159, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'Controversial', 'score': -0.8}, {'word': 'provokes', 'score': -1.3}], 'v_pos': [], 's_pos': [{'word': 'energy', 'score': 1.1}]}, {'headline': "DFAT chief says lack of women in senior roles 'not good enough'", 'sentiment': {'neg': 0.32, 'neu': 0.68, 'pos': 0.0, 'compound': -0.5727}, 'v_neg': [], 's_neg': [{'word': 'lack', 'score': -1.3}], 'v_pos': [], 's_pos': [{'word': 'good', 'score': 1.9}]}, {'headline': "Why are this weekend's NSW by-elections so important?", 'sentiment': {'neg': 0.0, 'neu': 0.747, 'pos': 0.253, 'compound': 0.3327}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'important', 'score': 0.8}]}, {'headline': "EU legislators adopt 'red lines' on Brexit negotiations", 'sentiment': {'neg': 0.0, 'neu': 0.805, 'pos': 0.195, 'compound': 0.1779}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'We're all getting robbed': Victorian tourism hit by credit card scam", 'sentiment': {'neg': 0.242, 'neu': 0.588, 'pos': 0.17, 'compound': -0.2732}, 'v_neg': [{'word': 'scam', 'score': -2.7}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'credit', 'score': 1.6}]}, {'headline': "Turtles 'keeping Murray River clean' in danger of extinction", 'sentiment': {'neg': 0.26, 'neu': 0.534, 'pos': 0.206, 'compound': -0.1779}, 'v_neg': [{'word': 'danger', 'score': -2.4}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'clean', 'score': 1.7}]}, {'headline': 'Mansfield skateboarder takes on the world', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Selfie conscious: Lens people went to for the perfect picture', 'sentiment': {'neg': 0.0, 'neu': 0.709, 'pos': 0.291, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'perfect', 'score': 2.7}], 's_pos': []}, {'headline': 'Strangled by deficit, drowning in debt — what can WA Labor do?', 'sentiment': {'neg': 0.521, 'neu': 0.479, 'pos': 0.0, 'compound': -0.8271}, 'v_neg': [{'word': 'Strangled', 'score': -2.5}], 's_neg': [{'word': 'deficit', 'score': -1.7}, {'word': 'debt', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Heavy fog shrouds Perth, sparks warning for drivers', 'sentiment': {'neg': 0.255, 'neu': 0.745, 'pos': 0.0, 'compound': -0.34}, 'v_neg': [], 's_neg': [{'word': 'warning', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': "Gibson's lawyer 'under pressure' to act on manslaughter plea deal", 'sentiment': {'neg': 0.196, 'neu': 0.804, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'pressure', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Fair Work considers widening probe into United Petroleum underpayment', 'sentiment': {'neg': 0.0, 'neu': 0.579, 'pos': 0.421, 'compound': 0.6249}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Fair', 'score': 1.3}, {'word': 'United', 'score': 1.8}]}, {'headline': 'NT producer sells cattle properties to buy mixed-farming country in SA', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Pat Lane wants to start a conversation about the lost art of communication', 'sentiment': {'neg': 0.173, 'neu': 0.827, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'lost', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "'Bulldoze it': Xenophon urges Oakden nursing home be closed", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Surgeries, appointments cancelled after fire at Canberra Hospital', 'sentiment': {'neg': 0.423, 'neu': 0.577, 'pos': 0.0, 'compound': -0.5267}, 'v_neg': [], 's_neg': [{'word': 'cancelled', 'score': -1.0}, {'word': 'fire', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Paralympian excluded from Canberra running festival event', 'sentiment': {'neg': 0.226, 'neu': 0.472, 'pos': 0.302, 'compound': 0.2023}, 'v_neg': [], 's_neg': [{'word': 'excluded', 'score': -1.4}], 'v_pos': [], 's_pos': [{'word': 'festival', 'score': 2.2}]}, {'headline': 'Canberra zoo releases first pictures of baby siamang gibbon', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Parents warned of fee hikes unless schools funding strategy developed', 'sentiment': {'neg': 0.189, 'neu': 0.811, 'pos': 0.0, 'compound': -0.2732}, 'v_neg': [], 's_neg': [{'word': 'warned', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': "Bunnings won't stock Tasmanian timber from contentious area", 'sentiment': {'neg': 0.239, 'neu': 0.761, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'contentious', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Tasmania Fire Service urges patience during burn-offs', 'sentiment': {'neg': 0.286, 'neu': 0.714, 'pos': 0.0, 'compound': -0.34}, 'v_neg': [], 's_neg': [{'word': 'Fire', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Macquarie Harbour clean-up aims to change habits', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Young offenders to face victims in new remote NT program', 'sentiment': {'neg': 0.375, 'neu': 0.625, 'pos': 0.0, 'compound': -0.5859}, 'v_neg': [], 's_neg': [{'word': 'offenders', 'score': -1.5}, {'word': 'victims', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'NT Government struggles to detail remote housing funding', 'sentiment': {'neg': 0.263, 'neu': 0.737, 'pos': 0.0, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'struggles', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Nicole Kidman sparks crucial conversation about domestic violence', 'sentiment': {'neg': 0.369, 'neu': 0.631, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [{'word': 'violence', 'score': -3.1}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Can a four-year-old be sexist?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Trump's tough trade talk to be put to the test during Xi meeting", 'sentiment': {'neg': 0.111, 'neu': 0.889, 'pos': 0.0, 'compound': -0.128}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Bible stories told through Indigenous art', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Natural sleep aids: Tackling insomnia without drugs', 'sentiment': {'neg': 0.0, 'neu': 0.706, 'pos': 0.294, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Natural', 'score': 1.5}]}, {'headline': "Heath Ledger documentary to detail actor's passions and struggles", 'sentiment': {'neg': 0.197, 'neu': 0.551, 'pos': 0.252, 'compound': 0.1779}, 'v_neg': [], 's_neg': [{'word': 'struggles', 'score': -1.5}], 'v_pos': [], 's_pos': [{'word': 'passions', 'score': 2.2}]}, {'headline': "Why isn't there more outrage about the unimaginable terror in Syria?", 'sentiment': {'neg': 0.222, 'neu': 0.588, 'pos': 0.191, 'compound': -0.1233}, 'v_neg': [{'word': 'terror', 'score': -2.4}], 's_neg': [{'word': 'outrage', 'score': -2.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Sanitising your social media: A guide for job hunters', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Blooming cherry blossoms help Tokyo shake off winter blues', 'sentiment': {'neg': 0.149, 'neu': 0.614, 'pos': 0.237, 'compound': 0.25}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'help', 'score': 1.7}]}, {'headline': 'About to reach your 30s and not sure if you need private health insurance? This is for you', 'sentiment': {'neg': 0.103, 'neu': 0.839, 'pos': 0.058, 'compound': -0.2173}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'sure', 'score': 1.3}]}, {'headline': 'Can you spot the emu in the sky?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'In Australian politics, turning down a sausage sandwich will cost you', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "What is the 'nuclear option' for Republicans with the Supreme Court?", 'sentiment': {'neg': 0.0, 'neu': 0.735, 'pos': 0.265, 'compound': 0.5574}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Supreme', 'score': 2.6}], 's_pos': []}, {'headline': "What it's like to parent with a mental illness", 'sentiment': {'neg': 0.241, 'neu': 0.536, 'pos': 0.223, 'compound': -0.0516}, 'v_neg': [], 's_neg': [{'word': 'illness', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}]}, {'headline': "Buddy's career comes full circle for 250th AFL match", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'What the changing food habits of Australians tell us', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Will people return to the Moon?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Australia's household debt crisis is worse than ever", 'sentiment': {'neg': 0.66, 'neu': 0.34, 'pos': 0.0, 'compound': -0.8658}, 'v_neg': [{'word': 'crisis', 'score': -3.1}], 's_neg': [{'word': 'debt', 'score': -1.5}, {'word': 'worse', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'RBA stuck between rock and a hard place on interest rates', 'sentiment': {'neg': 0.254, 'neu': 0.522, 'pos': 0.224, 'compound': 0.1531}, 'v_neg': [], 's_neg': [{'word': 'stuck', 'score': -1.0}], 'v_pos': [], 's_pos': [{'word': 'interest', 'score': 2.0}]}, {'headline': "Thompson gaffe unavoidable with golf's archaic rules", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Stargazing citizens join search for Planet Nine', 'sentiment': {'neg': 0.0, 'neu': 0.732, 'pos': 0.268, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'join', 'score': 1.2}]}, {'headline': "Could a single question have saved Adriana Donato's life?", 'sentiment': {'neg': 0.0, 'neu': 0.714, 'pos': 0.286, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'saved', 'score': 1.8}]}, {'headline': "Kids can't get to school after 'biblical' landslide cuts off Sarina Range", 'sentiment': {'neg': 0.167, 'neu': 0.833, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'cuts', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Bumpy ride ahead as new WA Government faces big challenges', 'sentiment': {'neg': 0.0, 'neu': 0.874, 'pos': 0.126, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Australians share their view of the sky', 'sentiment': {'neg': 0.0, 'neu': 0.732, 'pos': 0.268, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'share', 'score': 1.2}]}, {'headline': "What are your rights when you're pulled over by police?", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Port Adelaide's historic ships poised to get new home", 'sentiment': {'neg': 0.0, 'neu': 0.8, 'pos': 0.2, 'compound': 0.25}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'poised', 'score': 1.0}]}, {'headline': "Come to the dark side: Mid-Murray could be SA's first dark sky reserve", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The outback sheep station coming back from the dead', 'sentiment': {'neg': 0.35, 'neu': 0.65, 'pos': 0.0, 'compound': -0.6486}, 'v_neg': [{'word': 'dead', 'score': -3.3}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Massive carp clean-up underway in Canberra's south", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'How Federal Hotels monopolised pokies in Tasmania', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Small, smart and supportive: Do ferrets make good service animals?', 'sentiment': {'neg': 0.0, 'neu': 0.473, 'pos': 0.527, 'compound': 0.7783}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'smart', 'score': 1.7}, {'word': 'supportive', 'score': 1.2}, {'word': 'good', 'score': 1.9}]}, {'headline': 'Why is Hobart in knots about having a cable car running up Mt Wellington?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Trump's policies providing a prime business opportunity for Australia", 'sentiment': {'neg': 0.0, 'neu': 0.714, 'pos': 0.286, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'opportunity', 'score': 1.8}]}, {'headline': "What the world can learn from Australia's restaurant scene", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Who bombed St Petersburg?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Busting the angry AFL fan's free kick myths", 'sentiment': {'neg': 0.262, 'neu': 0.476, 'pos': 0.262, 'compound': 0.0}, 'v_neg': [], 's_neg': [{'word': 'angry', 'score': -2.3}], 'v_pos': [], 's_pos': [{'word': 'free', 'score': 2.3}]}, {'headline': 'Rock and a hard place', 'sentiment': {'neg': 0.318, 'neu': 0.682, 'pos': 0.0, 'compound': -0.1027}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Beijing sends blunt warning', 'sentiment': {'neg': 0.444, 'neu': 0.556, 'pos': 0.0, 'compound': -0.34}, 'v_neg': [], 's_neg': [{'word': 'warning', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Pepsi pulls controversial ad', 'sentiment': {'neg': 0.375, 'neu': 0.625, 'pos': 0.0, 'compound': -0.2023}, 'v_neg': [], 's_neg': [{'word': 'controversial', 'score': -0.8}], 'v_pos': [], 's_pos': []}, {'headline': 'EU sets Brexit red lines', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'More Syria strikes', 'sentiment': {'neg': 0.581, 'neu': 0.419, 'pos': 0.0, 'compound': -0.4173}, 'v_neg': [], 's_neg': [{'word': 'strikes', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump and Xi meet for first time', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Tokyo's cherry blossoms emerge", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'North fires another missile', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Lawyers, accountants join list of workers who could lose their jobs to AI, warns report ', 'sentiment': {'neg': 0.224, 'neu': 0.656, 'pos': 0.12, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'lose', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'join', 'score': 1.2}]}, {'headline': 'Apple warranty dispute', 'sentiment': {'neg': 0.574, 'neu': 0.426, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'dispute', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Wall Street slides', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Junior miners under pressure', 'sentiment': {'neg': 0.423, 'neu': 0.577, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'pressure', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Woods and Tedesco the priority, say Tigers as Moses deal is off the table', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The pressure stays on as Chelsea, Spurs, Arsenal win', 'sentiment': {'neg': 0.169, 'neu': 0.538, 'pos': 0.292, 'compound': 0.3818}, 'v_neg': [], 's_neg': [{'word': 'pressure', 'score': -1.2}], 'v_pos': [{'word': 'win', 'score': 2.8}], 's_pos': []}, {'headline': "Kids steal the show before Masters' par-three contest stopped for first time ever", 'sentiment': {'neg': 0.317, 'neu': 0.683, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [], 's_neg': [{'word': 'steal', 'score': -2.2}, {'word': 'stopped', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': "Ian McKellen reveals why he didn't play Dumbledore", 'sentiment': {'neg': 0.225, 'neu': 0.775, 'pos': 0.0, 'compound': -0.2584}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'play', 'score': 1.4}]}, {'headline': 'Tracey Moffatt defies labels, adds to story of Aboriginal art in Venice', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Pregnant cow survives three days in floodwater, ends up 70km downstream', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Baked Relief helps feed flood-affected areas', 'sentiment': {'neg': 0.0, 'neu': 0.412, 'pos': 0.588, 'compound': 0.6908}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Relief', 'score': 2.1}, {'word': 'helps', 'score': 1.6}]}, {'headline': 'Ringbalin shares Indigenous concern for environment', 'sentiment': {'neg': 0.0, 'neu': 0.694, 'pos': 0.306, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'shares', 'score': 1.2}]}, {'headline': 'Is it worth it?', 'sentiment': {'neg': 0.0, 'neu': 0.612, 'pos': 0.388, 'compound': 0.2263}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'worth', 'score': 0.9}]}, {'headline': 'Parenting with a mental illness', 'sentiment': {'neg': 0.474, 'neu': 0.526, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'illness', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Kids spend school holidays on horseback keeping cattle safe from flood', 'sentiment': {'neg': 0.0, 'neu': 0.621, 'pos': 0.379, 'compound': 0.6705}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'holidays', 'score': 1.6}, {'word': 'safe', 'score': 1.9}]}, {'headline': 'Carbon neutral livestock', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Biosecurity changes bite WA growers ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Ag tech looking to boost yield', 'sentiment': {'neg': 0.0, 'neu': 0.649, 'pos': 0.351, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'boost', 'score': 1.7}]}, {'headline': 'Your best photos celebrating life in Australia', 'sentiment': {'neg': 0.0, 'neu': 0.388, 'pos': 0.612, 'compound': 0.836}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'best', 'score': 3.2}, {'word': 'celebrating', 'score': 2.7}], 's_pos': []}, {'headline': 'In photos: Debbie devastation and flooding fallout', 'sentiment': {'neg': 0.318, 'neu': 0.682, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'devastation', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': 'But where is the green sheep? 9 old maps put the art in cartography', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Do you want the good news or the bad news?', 'sentiment': {'neg': 0.238, 'neu': 0.476, 'pos': 0.286, 'compound': -0.0772}, 'v_neg': [{'word': 'bad', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'good', 'score': 1.9}]}, {'headline': 'Fewer women run top Australian companies than men named John', 'sentiment': {'neg': 0.0, 'neu': 0.833, 'pos': 0.167, 'compound': 0.2023}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'top', 'score': 0.8}]}, {'headline': 'Pride, prejudice and punishment: Gay rights around the world', 'sentiment': {'neg': 0.436, 'neu': 0.403, 'pos': 0.161, 'compound': -0.6249}, 'v_neg': [], 's_neg': [{'word': 'prejudice', 'score': -2.3}, {'word': 'punishment', 'score': -2.2}], 'v_pos': [], 's_pos': [{'word': 'Pride', 'score': 1.4}]}, {'headline': 'Calculator: How will penalty rates cut affect workers?', 'sentiment': {'neg': 0.459, 'neu': 0.541, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [], 's_neg': [{'word': 'penalty', 'score': -2.0}, {'word': 'cut', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'This is what life is like when your children never grow up', 'sentiment': {'neg': 0.0, 'neu': 0.815, 'pos': 0.185, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}]}, {'headline': 'Who donates money to political parties?', 'sentiment': {'neg': 0.0, 'neu': 0.649, 'pos': 0.351, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'parties', 'score': 1.7}]}, {'headline': "What does Cory Bernardi's defection mean for the Senate?", 'sentiment': {'neg': 0.231, 'neu': 0.769, 'pos': 0.0, 'compound': -0.34}, 'v_neg': [], 's_neg': [{'word': 'defection', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'This is how Donald Trump won the presidency', 'sentiment': {'neg': 0.0, 'neu': 0.654, 'pos': 0.346, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'won', 'score': 2.7}], 's_pos': []}, {'headline': "You probably don't know what Islamic State really wants", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Do you even know how much sugar you're eating?", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'When Jessica was taken from her family, it was meant to stop abuse', 'sentiment': {'neg': 0.368, 'neu': 0.632, 'pos': 0.0, 'compound': -0.7506}, 'v_neg': [{'word': 'abuse', 'score': -3.2}], 's_neg': [{'word': 'stop', 'score': -1.2}], 'v_pos': [], 's_pos': []}]
[{'headline': "Donald Trump Syria chemical attack 'has changed my view of Assad' ", 'sentiment': {'neg': 0.237, 'neu': 0.763, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "Tinned spaghetti pizza New Zealand's prime minister shocks with 'monstrous' recipe ", 'sentiment': {'neg': 0.206, 'neu': 0.794, 'pos': 0.0, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'shocks', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "Centrelink scandal Welfare advocates say 'income averaging' creating incorrect debts ", 'sentiment': {'neg': 0.221, 'neu': 0.611, 'pos': 0.168, 'compound': -0.1779}, 'v_neg': [], 's_neg': [{'word': 'scandal', 'score': -1.9}], 'v_pos': [], 's_pos': [{'word': 'creating', 'score': 1.2}]}, {'headline': 'Qantas Non-stop Sydney-to-London flights could happen by 2022 ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Transgender and homeless The young people who can't get the support they need ", 'sentiment': {'neg': 0.158, 'neu': 0.842, 'pos': 0.0, 'compound': -0.3089}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'support', 'score': 1.7}]}, {'headline': 'US Steve Bannon stripped of national security council role ', 'sentiment': {'neg': 0.0, 'neu': 0.769, 'pos': 0.231, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'security', 'score': 1.4}]}, {'headline': 'Tobacco Smoking causes one in 10 deaths globally, major new study reveals ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Adani coalmine $1bn railway loan would breach government's policy, says legal group ", 'sentiment': {'neg': 0.0, 'neu': 0.88, 'pos': 0.12, 'compound': 0.128}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Travel Melbourne gets serious in bid for Australia's sporting capital title ", 'sentiment': {'neg': 0.115, 'neu': 0.885, 'pos': 0.0, 'compound': -0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'She saw no way out' Nikki Gemmell and the turmoil of losing her mother to suicide ", 'sentiment': {'neg': 0.496, 'neu': 0.504, 'pos': 0.0, 'compound': -0.8957}, 'v_neg': [{'word': 'suicide', 'score': -3.5}], 's_neg': [{'word': 'no', 'score': -1.2}, {'word': 'turmoil', 'score': -1.5}, {'word': 'losing', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "'Missed the mark' Pepsi pulls Kendall Jenner ad ridiculed for co-opting resistance movements ", 'sentiment': {'neg': 0.299, 'neu': 0.701, 'pos': 0.0, 'compound': -0.5719}, 'v_neg': [], 's_neg': [{'word': 'Missed', 'score': -1.2}, {'word': 'ridiculed', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Barry Manilow Singer-songwriter reveals he is gay ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Energy Salt, silicon or graphite: storage goes beyond lithium ion batteries ', 'sentiment': {'neg': 0.0, 'neu': 0.826, 'pos': 0.174, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Energy', 'score': 1.1}]}, {'headline': "Late-night hosts on Jared Kushner 'If anyone could drive Isis crazy, it’s a New York landlord' ", 'sentiment': {'neg': 0.146, 'neu': 0.854, 'pos': 0.0, 'compound': -0.34}, 'v_neg': [], 's_neg': [{'word': 'crazy', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': "Mind the fake news Spring breakers in Mexico chanting 'build the wall'? ", 'sentiment': {'neg': 0.22, 'neu': 0.78, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'fake', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Chelsea 2-1 Man City Hazard outwits City to strengthen title grip ', 'sentiment': {'neg': 0.0, 'neu': 0.813, 'pos': 0.187, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'strengthen', 'score': 1.3}]}, {'headline': "'No club should go under' The battle to save the Frankston Dolphins ", 'sentiment': {'neg': 0.282, 'neu': 0.529, 'pos': 0.188, 'compound': -0.1531}, 'v_neg': [], 's_neg': [{'word': 'No', 'score': -1.2}, {'word': 'battle', 'score': -1.6}], 'v_pos': [], 's_pos': [{'word': 'save', 'score': 2.2}]}, {'headline': 'Arsenal 3-0 West Ham Özil sparks win over Hammers to boost Wenger’s cause ', 'sentiment': {'neg': 0.0, 'neu': 0.629, 'pos': 0.371, 'compound': 0.7579}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'win', 'score': 2.8}], 's_pos': [{'word': 'boost', 'score': 1.7}]}, {'headline': 'David Squires on ... The introduction of video assistant referees ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Tennis One careful owner: Nick Kyrgios uses Facebook to sell his old car ', 'sentiment': {'neg': 0.0, 'neu': 0.882, 'pos': 0.118, 'compound': 0.1531}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Masters Favourite Johnson a doubt after injuring back in fall on stairs ', 'sentiment': {'neg': 0.2, 'neu': 0.8, 'pos': 0.0, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'doubt', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Masters A hole-by-hole virtual guide to the Augusta National course ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Street scenes from Cuba Culture and the boxing club ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Sydney To bring a city together, WestConnex tears suburbs apart ', 'sentiment': {'neg': 0.192, 'neu': 0.808, 'pos': 0.0, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'tears', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': "'I feel so guilty' Muslim women discuss removing their hijab at work ", 'sentiment': {'neg': 0.247, 'neu': 0.753, 'pos': 0.0, 'compound': -0.5598}, 'v_neg': [], 's_neg': [{'word': 'guilty', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': 'The many faces of Angela Merkel 26 years of photographing the German chancellor ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Public debut Rare red panda triplets born near Sydney ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'David Attenborough Broadcaster and BBC take us to Hotel Armadillo ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "David Ettridge One Nation twice refuses co-founder's demands for $150,000 for legal debt ", 'sentiment': {'neg': 0.167, 'neu': 0.733, 'pos': 0.1, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'debt', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Indigenous suicide Elders develop app in bid to reduce number of young deaths ', 'sentiment': {'neg': 0.268, 'neu': 0.655, 'pos': 0.077, 'compound': -0.6369}, 'v_neg': [{'word': 'suicide', 'score': -3.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Free-trade deal UK tells Australian MPs it wants to accelerate process ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'It is time' Tony Nutt resigns as Liberal party's federal director ", 'sentiment': {'neg': 0.187, 'neu': 0.813, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'resigns', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Western Australia Bushfire threatens homes in Goldfields-Esperance region ', 'sentiment': {'neg': 0.271, 'neu': 0.729, 'pos': 0.0, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'threatens', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "Cambridge Analytica Trump's data-mining advisers to meet Liberal MPs ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Bob Day Former senator's election invalid due to 'indirect pecuniary interest', high court rules ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Spider bite' Double amputation likely to be mistaken identity, experts say ", 'sentiment': {'neg': 0.2, 'neu': 0.8, 'pos': 0.0, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'mistaken', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': "Aung San Suu Kyi 'I don't think there is ethnic cleansing' of Rohingya Muslims in Myanmar ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'US climate change policy Coalition of 17 states challenges Trump ', 'sentiment': {'neg': 0.0, 'neu': 0.874, 'pos': 0.126, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'China Ships patrolling Malaysian reefs ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'French presidential election Factory worker Poutou emerges as star of TV debate ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'A good person' Trump defends Bill O'Reilly amid sexual harassment claims ", 'sentiment': {'neg': 0.227, 'neu': 0.584, 'pos': 0.188, 'compound': -0.1531}, 'v_neg': [{'word': 'harassment', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'good', 'score': 1.9}]}, {'headline': 'UK Ken Livingstone faces fresh inquiry over Hitler Zionism remarks ', 'sentiment': {'neg': 0.0, 'neu': 0.796, 'pos': 0.204, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'fresh', 'score': 1.3}]}, {'headline': "India Muslim man dies after attack by Hindu 'cow protectors' ", 'sentiment': {'neg': 0.256, 'neu': 0.744, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump golf course Activist loses case over urination photographs ', 'sentiment': {'neg': 0.223, 'neu': 0.777, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'loses', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "Demographics Muslim population on course to become world's largest in 20 years ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'From Coke’s flower power to Kendall Jenner’s Pepsi ad The power of protest chic ', 'sentiment': {'neg': 0.124, 'neu': 0.745, 'pos': 0.13, 'compound': 0.0258}, 'v_neg': [], 's_neg': [{'word': 'protest', 'score': -1.0}], 'v_pos': [], 's_pos': [{'word': 'chic', 'score': 1.1}]}, {'headline': 'Mockumentaries Not dead yet ', 'sentiment': {'neg': 0.589, 'neu': 0.411, 'pos': 0.0, 'compound': -0.6486}, 'v_neg': [{'word': 'dead', 'score': -3.3}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Technology Can any good come from engaging with internet trolls? ', 'sentiment': {'neg': 0.0, 'neu': 0.602, 'pos': 0.398, 'compound': 0.6486}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'good', 'score': 1.9}, {'word': 'engaging', 'score': 1.4}]}, {'headline': 'Science Skin condition? You must be the baddie ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'My Crocs rock Why the fashion world has finally come round to them ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Animals Apes 'can distinguish between true and false beliefs in others' ", 'sentiment': {'neg': 0.0, 'neu': 0.781, 'pos': 0.219, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'true', 'score': 1.8}]}, {'headline': 'Power Kara Walker, Karon Davis and the black female artists retelling US history ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Britney Spears Gig forces Israel's Labour party to delay leadership contest ", 'sentiment': {'neg': 0.164, 'neu': 0.643, 'pos': 0.193, 'compound': 0.1027}, 'v_neg': [], 's_neg': [{'word': 'delay', 'score': -1.3}], 'v_pos': [], 's_pos': [{'word': 'party', 'score': 1.7}]}, {'headline': 'Naomi Klein Writer to rush out new book taking on Trump administration ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Maggie Alderson The skincare line that has been 'life-changingly brilliant' ", 'sentiment': {'neg': 0.0, 'neu': 0.703, 'pos': 0.297, 'compound': 0.5859}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'brilliant', 'score': 2.8}], 's_pos': []}, {'headline': "Ivanka Trump Policy 'moderator' or wolf in sheep's clothing? ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Photo highlights Colourful homes and a tired monk ', 'sentiment': {'neg': 0.326, 'neu': 0.674, 'pos': 0.0, 'compound': -0.4404}, 'v_neg': [], 's_neg': [{'word': 'tired', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': "Trump's chief strategist Steve Bannon stripped of national security council role ", 'sentiment': {'neg': 0.0, 'neu': 0.806, 'pos': 0.194, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'security', 'score': 1.4}]}, {'headline': 'Donald Trump says Syria chemical attack has changed his view of Assad ', 'sentiment': {'neg': 0.22, 'neu': 0.78, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Barry Manilow reveals he is gay ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Centrelink inquiry told 'income averaging' creating incorrect welfare debts ", 'sentiment': {'neg': 0.0, 'neu': 0.784, 'pos': 0.216, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'creating', 'score': 1.2}]}, {'headline': 'Pepsi pulls Kendall Jenner ad ridiculed for co-opting resistance movements ', 'sentiment': {'neg': 0.217, 'neu': 0.783, 'pos': 0.0, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'ridiculed', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': "One Nation twice refuses co-founder's demands for $150,000 for legal debt ", 'sentiment': {'neg': 0.192, 'neu': 0.692, 'pos': 0.115, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'debt', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': "'Spider bite' double amputation likely to be mistaken identity, experts say ", 'sentiment': {'neg': 0.2, 'neu': 0.8, 'pos': 0.0, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'mistaken', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Nikki Gemmell tells of the turmoil of losing her mother to suicide ', 'sentiment': {'neg': 0.516, 'neu': 0.484, 'pos': 0.0, 'compound': -0.8625}, 'v_neg': [{'word': 'suicide', 'score': -3.5}], 's_neg': [{'word': 'turmoil', 'score': -1.5}, {'word': 'losing', 'score': -1.6}], 'v_pos': [], 's_pos': []}]
[{'headline': 'The rise of Bannon hits a wall amid rising anxiety ', 'sentiment': {'neg': 0.175, 'neu': 0.825, 'pos': 0.0, 'compound': -0.1779}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Minister went to 16 GWS games before link became clear ', 'sentiment': {'neg': 0.0, 'neu': 0.776, 'pos': 0.224, 'compound': 0.3818}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'clear', 'score': 1.6}]}, {'headline': 'My boss saved my life when I spoke up about my domestic abuse ', 'sentiment': {'neg': 0.247, 'neu': 0.588, 'pos': 0.165, 'compound': -0.34}, 'v_neg': [{'word': 'abuse', 'score': -3.2}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'saved', 'score': 1.8}]}, {'headline': 'US high school journos land a scoop, and the principal resigns ', 'sentiment': {'neg': 0.193, 'neu': 0.672, 'pos': 0.134, 'compound': -0.1779}, 'v_neg': [], 's_neg': [{'word': 'resigns', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "'Shave your beards off': A plea from anxious parents to their sons ", 'sentiment': {'neg': 0.167, 'neu': 0.833, 'pos': 0.0, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'anxious', 'score': -1.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Woman allegedly sexually assaulted in Surry Hills laneway ', 'sentiment': {'neg': 0.327, 'neu': 0.673, 'pos': 0.0, 'compound': -0.5267}, 'v_neg': [{'word': 'assaulted', 'score': -2.4}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Kyrgios posts car ad on Facebook, is hit with slew of sarcastic replies ', 'sentiment': {'neg': 0.143, 'neu': 0.857, 'pos': 0.0, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'sarcastic', 'score': -1.0}], 'v_pos': [], 's_pos': []}, {'headline': "'Something else going on': Deadly flu pandemic likely ", 'sentiment': {'neg': 0.271, 'neu': 0.729, 'pos': 0.0, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'flu', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': 'He rushed home after gas attack. The next day he buried 19 relatives ', 'sentiment': {'neg': 0.205, 'neu': 0.795, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "Why the 'ambition gap' is a myth when applied to working women ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'What China wants from Xi and Trump meeting ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Surfers shaken after close encounters with 'the other Paul Gallen' at Cronulla ", 'sentiment': {'neg': 0.106, 'neu': 0.894, 'pos': 0.0, 'compound': -0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "The ultimate plane seat? Airline's new A350 design a world first ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'How could you be so stupid?': No holds barred in ABC's surprise hit ", 'sentiment': {'neg': 0.159, 'neu': 0.706, 'pos': 0.135, 'compound': -0.0972}, 'v_neg': [], 's_neg': [{'word': 'No', 'score': -1.2}], 'v_pos': [], 's_pos': [{'word': 'surprise', 'score': 1.1}]}, {'headline': 'Things to do by the age of 30 to create a better life after 60 ', 'sentiment': {'neg': 0.0, 'neu': 0.706, 'pos': 0.294, 'compound': 0.6124}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'create', 'score': 1.1}, {'word': 'better', 'score': 1.9}]}, {'headline': 'No gluten, dairy or sugar: How to make healthy raw granola ', 'sentiment': {'neg': 0.158, 'neu': 0.647, 'pos': 0.194, 'compound': 0.128}, 'v_neg': [], 's_neg': [{'word': 'No', 'score': -1.2}], 'v_pos': [], 's_pos': [{'word': 'healthy', 'score': 1.7}]}, {'headline': 'Rockhampton set for peak flood ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Clearly we missed the mark': Pepsi dumps Jenner ad ", 'sentiment': {'neg': 0.36, 'neu': 0.441, 'pos': 0.199, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'missed', 'score': -1.2}, {'word': 'dumps', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'Clearly', 'score': 1.7}]}, {'headline': "Ablett took Suns' money, but won't stay the course ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Why more people are studying online ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'World No.1 injured in freak accident on eve of the Masters ', 'sentiment': {'neg': 0.521, 'neu': 0.479, 'pos': 0.0, 'compound': -0.8271}, 'v_neg': [], 's_neg': [{'word': 'injured', 'score': -1.7}, {'word': 'freak', 'score': -1.9}, {'word': 'accident', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Barry Manilow comes out at 73, speaks of partner of 39 years ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Fiddletown, Gilead: Sydney's strangest suburb names ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Why residents are happy to live in these poorly-connected suburbs ', 'sentiment': {'neg': 0.0, 'neu': 0.709, 'pos': 0.291, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'happy', 'score': 2.7}], 's_pos': []}, {'headline': "Sydney real estate 'cheap', says global property expert ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The popular design trends that can affect the resale of your home ', 'sentiment': {'neg': 0.0, 'neu': 0.797, 'pos': 0.203, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'popular', 'score': 1.8}]}, {'headline': "'When it's quiet there's nobody': Running a motel in a town of 100 ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Unanswered questions after Felicity's selfie with John Howard ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Sports fields and Sydney park to be turned into $20m 'cultural centre' ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Nightclub owner's son 'someone we'd go to for help', rape trial told ", 'sentiment': {'neg': 0.299, 'neu': 0.701, 'pos': 0.0, 'compound': -0.6908}, 'v_neg': [{'word': 'rape', 'score': -3.7}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Over-the-phone abortion service safe and effective, review finds ', 'sentiment': {'neg': 0.0, 'neu': 0.5, 'pos': 0.5, 'compound': 0.7184}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'safe', 'score': 1.9}, {'word': 'effective', 'score': 2.1}]}, {'headline': "Liberal identity's firm pushed for rezoning of MP's property ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'New cases in measles outbreak spark warning after trip to hospital ', 'sentiment': {'neg': 0.18, 'neu': 0.677, 'pos': 0.143, 'compound': -0.128}, 'v_neg': [], 's_neg': [{'word': 'warning', 'score': -1.4}], 'v_pos': [], 's_pos': [{'word': 'spark', 'score': 0.9}]}, {'headline': "Murder suspect 'blamed herself for son's death' ", 'sentiment': {'neg': 0.822, 'neu': 0.178, 'pos': 0.0, 'compound': -0.9313}, 'v_neg': [{'word': 'Murder', 'score': -3.7}, {'word': 'death', 'score': -2.9}], 's_neg': [{'word': 'suspect', 'score': -1.2}, {'word': 'blamed', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "'High and dry': Adani seeks additional water to feed giant coal mine ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Hospital board member forced to quit over 'offensive' tweets ", 'sentiment': {'neg': 0.273, 'neu': 0.727, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'forced', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Two-hour train between Canberra and Sydney on the cards ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Venom not to blame for spider-bite victim losing legs, experts say ', 'sentiment': {'neg': 0.319, 'neu': 0.543, 'pos': 0.138, 'compound': -0.3948}, 'v_neg': [], 's_neg': [{'word': 'blame', 'score': -1.4}, {'word': 'victim', 'score': -1.1}, {'word': 'losing', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "Finally, a pair of jeans that's good for the planet is coming ", 'sentiment': {'neg': 0.0, 'neu': 0.775, 'pos': 0.225, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'good', 'score': 1.9}]}, {'headline': "Forget work-life balance and try 'blending' instead ", 'sentiment': {'neg': 0.241, 'neu': 0.759, 'pos': 0.0, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'Forget', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Australian unis commit to releasing sexual assault data ', 'sentiment': {'neg': 0.317, 'neu': 0.5, 'pos': 0.183, 'compound': -0.3818}, 'v_neg': [{'word': 'assault', 'score': -2.8}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'commit', 'score': 1.2}]}, {'headline': 'Morrison eyes $4b resources budget bonus ', 'sentiment': {'neg': 0.0, 'neu': 0.588, 'pos': 0.412, 'compound': 0.5423}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'bonus', 'score': 2.5}], 's_pos': []}, {'headline': "'It is time': Tony Nutt resigns as Liberal Party director ", 'sentiment': {'neg': 0.177, 'neu': 0.615, 'pos': 0.208, 'compound': 0.1027}, 'v_neg': [], 's_neg': [{'word': 'resigns', 'score': -1.3}], 'v_pos': [], 's_pos': [{'word': 'Party', 'score': 1.7}]}, {'headline': 'Pressure on Russia and Iran key to Syria conflict: Julie Bishop ', 'sentiment': {'neg': 0.333, 'neu': 0.667, 'pos': 0.0, 'compound': -0.5423}, 'v_neg': [], 's_neg': [{'word': 'Pressure', 'score': -1.2}, {'word': 'conflict', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Universities pledge to release sexual assault data ', 'sentiment': {'neg': 0.388, 'neu': 0.612, 'pos': 0.0, 'compound': -0.5859}, 'v_neg': [{'word': 'assault', 'score': -2.8}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Tony Abbott takes the pub test and does one better than Kevin ', 'sentiment': {'neg': 0.0, 'neu': 0.791, 'pos': 0.209, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'better', 'score': 1.9}]}, {'headline': 'Family First candidate in box seat after Day election ruled invalid ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Cyclone Debbie: Behind the scenes of a disaster response ', 'sentiment': {'neg': 0.369, 'neu': 0.631, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [{'word': 'disaster', 'score': -3.1}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Trump: Syria gas attack 'crossed a lot of lines' ", 'sentiment': {'neg': 0.307, 'neu': 0.693, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Father buries twins killed in Syria gas attack ', 'sentiment': {'neg': 0.559, 'neu': 0.441, 'pos': 0.0, 'compound': -0.8225}, 'v_neg': [{'word': 'killed', 'score': -3.5}], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Prehistoric jewellery challenges view early humans less advanced ', 'sentiment': {'neg': 0.0, 'neu': 0.666, 'pos': 0.334, 'compound': 0.2516}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'advanced', 'score': 1.0}]}, {'headline': "The domestic terror attacks Trump won't talk about ", 'sentiment': {'neg': 0.512, 'neu': 0.488, 'pos': 0.0, 'compound': -0.743}, 'v_neg': [{'word': 'terror', 'score': -2.4}], 's_neg': [{'word': 'attacks', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'How to walk back from the housing abyss ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'A woman’s wage has nothing to do with what her husband earns ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Airbus, Boeing close in on Qantas' Holy Grail ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Markets Live: Fed spooks traders ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Origin Energy in hot water with regulator over data breaches ', 'sentiment': {'neg': 0.0, 'neu': 0.811, 'pos': 0.189, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Energy', 'score': 1.1}]}, {'headline': 'Former JB Hi-Fi boss takes reins at Good Guys ', 'sentiment': {'neg': 0.0, 'neu': 0.734, 'pos': 0.266, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Good', 'score': 1.9}]}, {'headline': 'Rio Tinto hit with $447m tax bill ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Adani's mega mine is wrong in so many ways ", 'sentiment': {'neg': 0.279, 'neu': 0.721, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'wrong', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Raids uncover rampant underpaying of vulnerable staff ', 'sentiment': {'neg': 0.241, 'neu': 0.759, 'pos': 0.0, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'vulnerable', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': "Female 'ambition gap' is a myth ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The one thing everyone is secretly judging you on ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Boys toys: 25 gadgets you probably don't need, but you'll really want ", 'sentiment': {'neg': 0.0, 'neu': 0.853, 'pos': 0.147, 'compound': 0.2238}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '15 things to do by 30 to create a better life after 60 ', 'sentiment': {'neg': 0.0, 'neu': 0.667, 'pos': 0.333, 'compound': 0.6124}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'create', 'score': 1.1}, {'word': 'better', 'score': 1.9}]}, {'headline': 'What women want from the budget ', 'sentiment': {'neg': 0.0, 'neu': 0.794, 'pos': 0.206, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'How we fared over the long hot summer ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Working from home trend must be part of urbanisation policy ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Steve Bannon demoted ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Australians among World's 50 Best Restaurants ", 'sentiment': {'neg': 0.0, 'neu': 0.543, 'pos': 0.457, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Best', 'score': 3.2}], 's_pos': []}, {'headline': "Turnbull won't budge on housing affordability ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Ivanka Trump 'not silent' ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Best of Fairfax cartoons, April 6 ', 'sentiment': {'neg': 0.0, 'neu': 0.488, 'pos': 0.512, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Best', 'score': 3.2}], 's_pos': []}, {'headline': 'Criminal. Lawyer. Better Call Saul returns April 11 on Stan ', 'sentiment': {'neg': 0.238, 'neu': 0.559, 'pos': 0.203, 'compound': -0.128}, 'v_neg': [{'word': 'Criminal', 'score': -2.4}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Better', 'score': 1.9}]}, {'headline': 'Brand new season of Billions - now streaming. Only on Stan. ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The difference between fine and gross motor skills ', 'sentiment': {'neg': 0.284, 'neu': 0.55, 'pos': 0.165, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'gross', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'fine', 'score': 0.8}]}, {'headline': 'Hit the road and escape the city ', 'sentiment': {'neg': 0.0, 'neu': 0.779, 'pos': 0.221, 'compound': 0.1779}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Ten activities to aid toddler development ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Fred Nile hopes to replace Mark Latham on Sky News ', 'sentiment': {'neg': 0.0, 'neu': 0.763, 'pos': 0.237, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'hopes', 'score': 1.8}]}, {'headline': 'Is this the most pretentious humblebrag ever? ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Court and Duncan pulled aside by 'uncomfortable' Manu on MKR ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Johansson blockbuster flops amid casting controversy ', 'sentiment': {'neg': 0.233, 'neu': 0.388, 'pos': 0.379, 'compound': 0.3612}, 'v_neg': [], 's_neg': [{'word': 'flops', 'score': -1.4}], 'v_pos': [{'word': 'blockbuster', 'score': 2.9}], 's_pos': []}, {'headline': 'One star: Lazy, ugly attempts at humour make for wretched Chips ', 'sentiment': {'neg': 0.343, 'neu': 0.473, 'pos': 0.183, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'Lazy', 'score': -1.5}, {'word': 'ugly', 'score': -2.3}], 'v_pos': [], 's_pos': [{'word': 'humour', 'score': 2.1}]}, {'headline': 'Beyonce drops surprise song clip for Jay Z on ninth anniversary ', 'sentiment': {'neg': 0.0, 'neu': 0.811, 'pos': 0.189, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'surprise', 'score': 1.1}]}, {'headline': "'Always a director': Ledger doco to air rare home footage ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'What fun! Like a brilliantly drunken family wedding ', 'sentiment': {'neg': 0.0, 'neu': 0.284, 'pos': 0.716, 'compound': 0.8777}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'brilliantly', 'score': 3.0}], 's_pos': [{'word': 'fun', 'score': 2.3}, {'word': 'Like', 'score': 1.5}]}, {'headline': 'Exploring the smell of a unicorn and other oddities ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'A spectre calls: The big name lurking under this sheet ', 'sentiment': {'neg': 0.158, 'neu': 0.842, 'pos': 0.0, 'compound': -0.128}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Pepsi pulls tone-deaf ad, apologises to Kendall Jenner ', 'sentiment': {'neg': 0.0, 'neu': 0.795, 'pos': 0.205, 'compound': 0.2023}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'apologises', 'score': 0.8}]}, {'headline': 'Straight men are holding hands in solidarity after gay attack ', 'sentiment': {'neg': 0.218, 'neu': 0.493, 'pos': 0.289, 'compound': 0.0}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'Straight', 'score': 0.9}, {'word': 'solidarity', 'score': 1.2}]}, {'headline': "Topshop criticised for 'famine victim' mannequins ", 'sentiment': {'neg': 0.551, 'neu': 0.449, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [], 's_neg': [{'word': 'criticised', 'score': -1.8}, {'word': 'victim', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': "What Melania's 'glamour shot' official photo is really telling us ", 'sentiment': {'neg': 0.0, 'neu': 0.726, 'pos': 0.274, 'compound': 0.5267}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'glamour', 'score': 2.4}], 's_pos': []}, {'headline': 'Why I refuse to feel guilty for sending my kids to childcare ', 'sentiment': {'neg': 0.357, 'neu': 0.643, 'pos': 0.0, 'compound': -0.6124}, 'v_neg': [], 's_neg': [{'word': 'refuse', 'score': -1.2}, {'word': 'guilty', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': "So this is what Kate was up to when William was 'dad dancing' ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Ivanka Trump: 'I don't know what it means to be complicit' ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Barry Manilow comes out as gay at 73, reveals husband Garry ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Walk, stretch or dance? Dancing may be best for the brain ', 'sentiment': {'neg': 0.0, 'neu': 0.704, 'pos': 0.296, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'best', 'score': 3.2}], 's_pos': []}, {'headline': 'The nutrition report card that Australians are failing ', 'sentiment': {'neg': 0.32, 'neu': 0.68, 'pos': 0.0, 'compound': -0.5106}, 'v_neg': [], 's_neg': [{'word': 'failing', 'score': -2.3}], 'v_pos': [], 's_pos': []}, {'headline': "Two Australian restaurants crack world's top 50 as winners revealed ", 'sentiment': {'neg': 0.0, 'neu': 0.62, 'pos': 0.38, 'compound': 0.5994}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'top', 'score': 0.8}, {'word': 'winners', 'score': 2.1}]}, {'headline': 'Hot out the oven: 35 easy, cheesy pasta bake and lasagna recipes ', 'sentiment': {'neg': 0.0, 'neu': 0.791, 'pos': 0.209, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'easy', 'score': 1.9}]}, {'headline': "Concrete Jungle adds 'green' dining to Chippendale ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'We couldn't believe it was this': toddler's Alzheimer's diagnosis ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "The photo that shattered Sally Faulkner's heart ", 'sentiment': {'neg': 0.341, 'neu': 0.659, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'shattered', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Meet the 15-year-old voice of Peppa Pig ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Ten unpopular European cities with a single incredible attraction ', 'sentiment': {'neg': 0.0, 'neu': 0.7, 'pos': 0.3, 'compound': 0.4588}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'attraction', 'score': 2.0}]}, {'headline': 'Photos: Japan turns pink for its most magical time of year ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Facebook takes new steps to stop 'revenge porn' ", 'sentiment': {'neg': 0.483, 'neu': 0.517, 'pos': 0.0, 'compound': -0.6808}, 'v_neg': [{'word': 'revenge', 'score': -2.4}], 's_neg': [{'word': 'stop', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'McAfee rebranding creates pure-play cyber security company ', 'sentiment': {'neg': 0.0, 'neu': 0.526, 'pos': 0.474, 'compound': 0.5423}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'creates', 'score': 1.1}, {'word': 'security', 'score': 1.4}]}, {'headline': 'Six questions we have about Amazon in Australia ', 'sentiment': {'neg': 0.0, 'neu': 0.805, 'pos': 0.195, 'compound': 0.1779}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The internet has fun with new name for AOL-Yahoo tie-up ', 'sentiment': {'neg': 0.0, 'neu': 0.732, 'pos': 0.268, 'compound': 0.5106}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'fun', 'score': 2.3}]}, {'headline': "'Stormy weather in Shortville': Musk mocks investors as Tesla soars ", 'sentiment': {'neg': 0.25, 'neu': 0.75, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'mocks', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Audi TTS Coupe v Porsche 718 Cayman ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Holden unveils Subaru Outback rival ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Mercedes reveals price for new high-riding wagon ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Toyota customers hit again by airbag recall ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'No decision on Mustang in V8 Supercars: Prodrive ', 'sentiment': {'neg': 0.239, 'neu': 0.761, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'No', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Mercedes-Benz reveals two new hot SUVs ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Moses wants immediate release as Parramatta sign Tigers star ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'World No.1 in freak accident on eve of the Masters ', 'sentiment': {'neg': 0.429, 'neu': 0.571, 'pos': 0.0, 'compound': -0.7184}, 'v_neg': [], 's_neg': [{'word': 'freak', 'score': -1.9}, {'word': 'accident', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Cleary wasting no time: one playmaker signed and one gone ', 'sentiment': {'neg': 0.38, 'neu': 0.62, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [], 's_neg': [{'word': 'wasting', 'score': -1.7}, {'word': 'no', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "Want more Ellas? Then here's two rugby laws that must change ", 'sentiment': {'neg': 0.0, 'neu': 0.885, 'pos': 0.115, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Taylor warns Woods, Tedesco it would be 'disrespectful' to leave ", 'sentiment': {'neg': 0.245, 'neu': 0.755, 'pos': 0.0, 'compound': -0.1531}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Winx's gear change doesn't scare punters ", 'sentiment': {'neg': 0.0, 'neu': 0.655, 'pos': 0.345, 'compound': 0.3875}, 'v_neg': [], 's_neg': [{'word': 'scare', 'score': -2.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Buddy desperate for a win to mark his 250th ', 'sentiment': {'neg': 0.19, 'neu': 0.496, 'pos': 0.314, 'compound': 0.3612}, 'v_neg': [], 's_neg': [{'word': 'desperate', 'score': -1.3}], 'v_pos': [{'word': 'win', 'score': 2.8}], 's_pos': []}, {'headline': 'Skelton realistic over Wallabies future ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Cleary keen to settle future of key pair quickly ', 'sentiment': {'neg': 0.0, 'neu': 0.762, 'pos': 0.238, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'keen', 'score': 1.5}]}, {'headline': 'Bookies changed markets two hours before players dropped ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Foran set to be Storm target to replace Cronk ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Divorced couple locked in legal spat over $93m share market bonanza ', 'sentiment': {'neg': 0.0, 'neu': 0.709, 'pos': 0.291, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'share', 'score': 1.2}]}, {'headline': "Kendall Jenner's Pepsi ad proof that being 'woke' has jumped the shark ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Repeat of Spanish flu pandemic 'very possible' as new strains emerge ", 'sentiment': {'neg': 0.348, 'neu': 0.652, 'pos': 0.0, 'compound': -0.5859}, 'v_neg': [], 's_neg': [{'word': 'flu', 'score': -1.6}, {'word': 'strains', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "Chemical attack in Syria poses profound questions for Trump's leadership ", 'sentiment': {'neg': 0.256, 'neu': 0.744, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'High Court delivers blow to Andrews ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Poor form: Ablett's TV spot says it all really ", 'sentiment': {'neg': 0.279, 'neu': 0.721, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'Poor', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Crime syndicate sells Sydney Harbour Bridge to Chinese tourists ', 'sentiment': {'neg': 0.304, 'neu': 0.696, 'pos': 0.0, 'compound': -0.5423}, 'v_neg': [{'word': 'Crime', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Queen Street bus station closed due to flooding ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'All my energy has gone': Brisbane man laid low by bird droppings ", 'sentiment': {'neg': 0.148, 'neu': 0.704, 'pos': 0.148, 'compound': 0.0}, 'v_neg': [], 's_neg': [{'word': 'low', 'score': -1.1}], 'v_pos': [], 's_pos': [{'word': 'energy', 'score': 1.1}]}, {'headline': 'Ex-Cyclone Debbie wreaks havoc in New Zealand ', 'sentiment': {'neg': 0.394, 'neu': 0.606, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [{'word': 'havoc', 'score': -2.9}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Political skulduggery': the inside story of how Wivenhoe became a substandard dam ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "LNP staffer 'strongly counselled' for speaking to James Ashby ", 'sentiment': {'neg': 0.0, 'neu': 0.792, 'pos': 0.208, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'strongly', 'score': 1.1}]}, {'headline': 'Surgeries cancelled at Canberra Hospital after switchboard fire ', 'sentiment': {'neg': 0.423, 'neu': 0.577, 'pos': 0.0, 'compound': -0.5267}, 'v_neg': [], 's_neg': [{'word': 'cancelled', 'score': -1.0}, {'word': 'fire', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': "'You start to get twitchy': Julia's battle after being hit by a car ", 'sentiment': {'neg': 0.191, 'neu': 0.809, 'pos': 0.0, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'battle', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': 'Brumbies legend banned from exhibition match for incident from five years ago ', 'sentiment': {'neg': 0.214, 'neu': 0.786, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'banned', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'TURC star witness company collapses owing $4 million ', 'sentiment': {'neg': 0.239, 'neu': 0.761, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'collapses', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "Perth soccer club players invent $5 fine for bringing 'ugly girls' to games ", 'sentiment': {'neg': 0.205, 'neu': 0.683, 'pos': 0.112, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'ugly', 'score': -2.3}], 'v_pos': [], 's_pos': [{'word': 'fine', 'score': 0.8}]}, {'headline': 'Why Perth councils are playing a new verge collection game ', 'sentiment': {'neg': 0.0, 'neu': 0.816, 'pos': 0.184, 'compound': 0.2023}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'playing', 'score': 0.8}]}, {'headline': 'Perth pauses for plane flying slightly lower than usual ', 'sentiment': {'neg': 0.192, 'neu': 0.808, 'pos': 0.0, 'compound': -0.228}, 'v_neg': [], 's_neg': [{'word': 'lower', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'WA teacher who indecently recorded dozens of kids revealed ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Liberal powerbrokers take aim at 'Canberra Six' leader Christian Porter ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}]
[{'headline': 'SHOCK ACCUSATION: Hotel staff mistake dad for paedophile', 'sentiment': {'neg': 0.629, 'neu': 0.371, 'pos': 0.0, 'compound': -0.8159}, 'v_neg': [], 's_neg': [{'word': 'SHOCK', 'score': -1.6}, {'word': 'ACCUSATION', 'score': -1.0}, {'word': 'mistake', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Police raid A Current Affair office', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Where are they now: Saxon', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '‘Ungrateful’ teenager roasted', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Radio signals are ‘extraterrestrial’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Kyrgios mocked over Facebook car sale', 'sentiment': {'neg': 0.315, 'neu': 0.685, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'mocked', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'America’s blunt threat after ‘heinous’ attack', 'sentiment': {'neg': 0.619, 'neu': 0.381, 'pos': 0.0, 'compound': -0.7579}, 'v_neg': [{'word': 'threat', 'score': -2.4}], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'What on earth has happened to Steve Price?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'NRL player market burning out of control', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '‘Error 53’ comes back to bite Apple', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Radical changes coming to your bank', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Ten times celebs had real sex in movies', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'This is every celeb’s worst nightmare', 'sentiment': {'neg': 0.451, 'neu': 0.549, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [{'word': 'worst', 'score': -3.1}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Sophie Monk mercilessly mocked', 'sentiment': {'neg': 0.434, 'neu': 0.566, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'mocked', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Dunst on sex: ‘Let’s get this over with’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'How Katy Perry boosts her confidence', 'sentiment': {'neg': 0.0, 'neu': 0.417, 'pos': 0.583, 'compound': 0.6808}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'boosts', 'score': 1.3}, {'word': 'confidence', 'score': 2.3}]}, {'headline': '‘Just leave me the f**k alone’', 'sentiment': {'neg': 0.194, 'neu': 0.806, 'pos': 0.0, 'compound': -0.0516}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Barry Manilow comes out at 73', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Demand for truth in Tweed River tragedy', 'sentiment': {'neg': 0.484, 'neu': 0.328, 'pos': 0.189, 'compound': -0.5574}, 'v_neg': [{'word': 'tragedy', 'score': -3.4}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'truth', 'score': 1.3}]}, {'headline': 'Boy, 4, in Melb abduction scare', 'sentiment': {'neg': 0.636, 'neu': 0.364, 'pos': 0.0, 'compound': -0.7906}, 'v_neg': [{'word': 'abduction', 'score': -2.8}], 's_neg': [{'word': 'scare', 'score': -2.2}], 'v_pos': [], 's_pos': []}, {'headline': 'AFL Confidential: Hawks fans jump off bandwagon', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Roo escaping floods dies in arms of onlookers', 'sentiment': {'neg': 0.0, 'neu': 0.854, 'pos': 0.146, 'compound': 0.0516}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'And the nation’s top wedding venue is ...', 'sentiment': {'neg': 0.0, 'neu': 0.795, 'pos': 0.205, 'compound': 0.2023}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'top', 'score': 0.8}]}, {'headline': 'Plan to cut inmates after new jail shelved', 'sentiment': {'neg': 0.231, 'neu': 0.769, 'pos': 0.0, 'compound': -0.2732}, 'v_neg': [], 's_neg': [{'word': 'cut', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Mum’s eerie warning before flood disaster', 'sentiment': {'neg': 0.75, 'neu': 0.25, 'pos': 0.0, 'compound': -0.8402}, 'v_neg': [{'word': 'disaster', 'score': -3.1}], 's_neg': [{'word': 'eerie', 'score': -1.5}, {'word': 'warning', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': '‘No-brainer’: Karl grills Premier', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Muslim cleric goes into hiding', 'sentiment': {'neg': 0.355, 'neu': 0.645, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'hiding', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Salim’s allegedly incriminating texts', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Ex-private schoolgirl turned addict', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The crazy plans for Donald Trump’s wall', 'sentiment': {'neg': 0.286, 'neu': 0.714, 'pos': 0.0, 'compound': -0.34}, 'v_neg': [], 's_neg': [{'word': 'crazy', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Man jokes as he gives away $1.3 billion', 'sentiment': {'neg': 0.0, 'neu': 0.778, 'pos': 0.222, 'compound': 0.25}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'jokes', 'score': 1.0}]}, {'headline': 'How teen cracked missing jersey case', 'sentiment': {'neg': 0.306, 'neu': 0.694, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'missing', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'The photo breaking everyone’s heart', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trump dumps Bannon from top job', 'sentiment': {'neg': 0.318, 'neu': 0.471, 'pos': 0.212, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'dumps', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'top', 'score': 0.8}]}, {'headline': 'Aussies make ‘World’s 50 Best Restaurants’ list', 'sentiment': {'neg': 0.0, 'neu': 0.588, 'pos': 0.412, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Best', 'score': 3.2}], 's_pos': []}, {'headline': 'The day I became an ‘ugly stepmother’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Mysterious illness that can eat away limbs', 'sentiment': {'neg': 0.31, 'neu': 0.69, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'illness', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Hilarious sign in luxury home’s kitchen', 'sentiment': {'neg': 0.0, 'neu': 0.649, 'pos': 0.351, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Hilarious', 'score': 1.7}]}, {'headline': '$13 foundation, 25,000-person waitlist', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '‘You don’t do this kind of thing on a plane’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'kind', 'score': 2.4}], 's_pos': []}, {'headline': 'Pilot confesses near-death experience', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '‘Dear Debbie’: Qld’s heartbreaking note', 'sentiment': {'neg': 0.429, 'neu': 0.571, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'heartbreaking', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Inside Japan’s annual penis festival', 'sentiment': {'neg': 0.0, 'neu': 0.556, 'pos': 0.444, 'compound': 0.4939}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'festival', 'score': 2.2}]}, {'headline': '10 reasons we need to move on from Bali', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Teen’s epic prom invite for Emma Stone', 'sentiment': {'neg': 0.0, 'neu': 0.789, 'pos': 0.211, 'compound': 0.1531}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Baldwin ‘lied’ about underage sex scene', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Friends star ‘takes a break from wife’', 'sentiment': {'neg': 0.0, 'neu': 0.617, 'pos': 0.383, 'compound': 0.4767}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Friends', 'score': 2.1}]}, {'headline': 'Why Mel B finally asked for a divorce', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Comedians reveal their most awks gigs', 'sentiment': {'neg': 0.0, 'neu': 0.694, 'pos': 0.306, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Comedians', 'score': 1.2}]}, {'headline': 'NASA’s suicide mission into Saturn', 'sentiment': {'neg': 0.529, 'neu': 0.471, 'pos': 0.0, 'compound': -0.6705}, 'v_neg': [{'word': 'suicide', 'score': -3.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'New laptops thinner than pencils', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'NBN’s biggest design flaw exposed', 'sentiment': {'neg': 0.245, 'neu': 0.755, 'pos': 0.0, 'compound': -0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Get paid $22,000 for doing nothing', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Facebook fix to combat ‘revenge porn’', 'sentiment': {'neg': 0.324, 'neu': 0.676, 'pos': 0.0, 'compound': -0.34}, 'v_neg': [], 's_neg': [{'word': 'combat', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Chinese Gen Ys join the ‘smashed avo’ debate', 'sentiment': {'neg': 0.0, 'neu': 0.761, 'pos': 0.239, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'join', 'score': 1.2}]}, {'headline': 'Why Australia fell out of love with Sizzler', 'sentiment': {'neg': 0.0, 'neu': 0.625, 'pos': 0.375, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'love', 'score': 3.2}], 's_pos': []}, {'headline': 'Pepsi pulls ‘tone-deaf’ ad amid backlash', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Waging war against ‘Uber of lotto’', 'sentiment': {'neg': 0.438, 'neu': 0.562, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [{'word': 'war', 'score': -2.9}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Aldi is running out of steam', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Rodman tears strips off LeBron', 'sentiment': {'neg': 0.322, 'neu': 0.678, 'pos': 0.0, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'tears', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': '‘Scapegoat’ Taylor reveals brutal remark', 'sentiment': {'neg': 0.506, 'neu': 0.494, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [{'word': 'brutal', 'score': -3.1}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Calamity strikes after freak accident', 'sentiment': {'neg': 0.81, 'neu': 0.19, 'pos': 0.0, 'compound': -0.8176}, 'v_neg': [], 's_neg': [{'word': 'strikes', 'score': -1.5}, {'word': 'freak', 'score': -1.9}, {'word': 'accident', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Pacquiao’s massive shot at Horn', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Ablett knew flak was coming his way', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}]
[{'headline': "Trump opens the door to military action in Syria after branding sarin gas massacre an 'affront to humanity' that 'crossed a lot of lines' and warns: 'My attitude toward Assad has changed' ", 'sentiment': {'neg': 0.045, 'neu': 0.955, 'pos': 0.0, 'compound': -0.1027}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "BREAKING NEWS: A Current Affair's Sydney offices raided by police over a 'personal matter' as eight officers descend on Nine headquarters ", 'sentiment': {'neg': 0.0, 'neu': 0.942, 'pos': 0.058, 'compound': 0.0258}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'New influenza strains found in BIRDS could lead to deadly pandemic on the scale of the Spanish Flu that killed more than 50 million people ', 'sentiment': {'neg': 0.297, 'neu': 0.703, 'pos': 0.0, 'compound': -0.8519}, 'v_neg': [{'word': 'killed', 'score': -3.5}], 's_neg': [{'word': 'strains', 'score': -1.2}, {'word': 'Flu', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "The ONE thing the world's most successful people credit with getting them to where they are today (and the millions of pounds they made in the process) ", 'sentiment': {'neg': 0.0, 'neu': 0.782, 'pos': 0.218, 'compound': 0.788}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'successful', 'score': 2.8}], 's_pos': [{'word': 'credit', 'score': 1.6}]}, {'headline': 'Muslim births to overtake Christian births globally within two decades as Islamic population is expected to grow by 70% in the next 40 years ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The Nazi death gas so horrific even Hitler feared using it: How Sarin was accidentally created in 1938... and can lead to death in less than 10 seconds ', 'sentiment': {'neg': 0.43, 'neu': 0.523, 'pos': 0.048, 'compound': -0.9524}, 'v_neg': [{'word': 'death', 'score': -2.9}, {'word': 'horrific', 'score': -3.4}, {'word': 'death', 'score': -2.9}], 's_neg': [{'word': 'feared', 'score': -2.2}, {'word': 'accidentally', 'score': -1.4}], 'v_pos': [], 's_pos': [{'word': 'created', 'score': 1.0}]}, {'headline': "Now the PC bores ban FAIRYTALES: Plan to stop kids reading Snow White and Cinderella because they give boys a 'sense of entitlement and girls poor self esteem' ", 'sentiment': {'neg': 0.327, 'neu': 0.673, 'pos': 0.0, 'compound': -0.8807}, 'v_neg': [{'word': 'ban', 'score': -2.6}], 's_neg': [{'word': 'bores', 'score': -1.3}, {'word': 'stop', 'score': -1.2}, {'word': 'poor', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "Eating for two 'harms the health of mum and baby': Consuming sugary foods may disrupt crucial processes leading to heart disease and diabetes ", 'sentiment': {'neg': 0.127, 'neu': 0.873, 'pos': 0.0, 'compound': -0.4939}, 'v_neg': [], 's_neg': [{'word': 'harms', 'score': -2.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Its a real-life apostrophe catastrophe! CRAIG BROWN praises the anonymous crusader correcting rogue grammar on signs ', 'sentiment': {'neg': 0.222, 'neu': 0.616, 'pos': 0.161, 'compound': -0.3164}, 'v_neg': [{'word': 'catastrophe', 'score': -3.4}], 's_neg': [], 'v_pos': [{'word': 'praises', 'score': 2.4}], 's_pos': []}, {'headline': "Prominent Imam in hiding after backing Ayaan Hirsi Ali's call for ALL Muslim schools to be banned - as she says Islamic extremists should be treated like 'remnants of the Nazi party' ", 'sentiment': {'neg': 0.134, 'neu': 0.644, 'pos': 0.222, 'compound': 0.34}, 'v_neg': [], 's_neg': [{'word': 'hiding', 'score': -1.2}, {'word': 'banned', 'score': -2.0}], 'v_pos': [], 's_pos': [{'word': 'Prominent', 'score': 1.3}, {'word': 'like', 'score': 1.5}, {'word': 'party', 'score': 1.7}]}, {'headline': "'I just want a pain pill': Lebanese asylum seeker films plea from inside Manus detention cell with blood on the walls claiming he 'cracked his chest' while trying to 'self-harm' ", 'sentiment': {'neg': 0.175, 'neu': 0.785, 'pos': 0.039, 'compound': -0.6705}, 'v_neg': [], 's_neg': [{'word': 'pain', 'score': -2.3}, {'word': 'detention', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': "'Sydney looks CHEAP': Global property boss says there's 'no bubble' in Australia's housing market - despite prices skyrocketing 20% in one year ", 'sentiment': {'neg': 0.099, 'neu': 0.901, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'no', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "PICTURED: Stunning German nanny who Mel B claims fell pregnant by her 'abusive' husband Stephen Belafonte and was paid $300,000 after she had an abortion ", 'sentiment': {'neg': 0.0, 'neu': 0.898, 'pos': 0.102, 'compound': 0.3818}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Stunning', 'score': 1.6}]}, {'headline': "Mel B is seen for the FIRST time since filing a restraining order against Stephen Belafonte... amid claims he 'hounded' her for threesomes with Hugh Hefner's Playboy Bunnies ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Stephen Belafonte calls Mel B's abuse allegations 'a smear campaign' and claims 'real victims and survivors of domestic violence will be offended when the truth comes out in court' ", 'sentiment': {'neg': 0.374, 'neu': 0.569, 'pos': 0.057, 'compound': -0.9153}, 'v_neg': [{'word': 'abuse', 'score': -3.2}, {'word': 'violence', 'score': -3.1}], 's_neg': [{'word': 'smear', 'score': -1.5}, {'word': 'victims', 'score': -1.3}, {'word': 'offended', 'score': -1.0}], 'v_pos': [], 's_pos': [{'word': 'truth', 'score': 1.3}]}, {'headline': "'I've never seen anything like it': Astonishing footage shows truck drivers passing through NSW floodwaters as abandoned cars and caravans float past ", 'sentiment': {'neg': 0.204, 'neu': 0.796, 'pos': 0.0, 'compound': -0.6261}, 'v_neg': [], 's_neg': [{'word': 'abandoned', 'score': -2.0}], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}]}, {'headline': "'Looks like Venice... only different': Disaster on the doorstep for thousands of homes in Rockhampton as floods rage - and Karl Stefanovic travels the city's streets by tinnie ", 'sentiment': {'neg': 0.225, 'neu': 0.702, 'pos': 0.073, 'compound': -0.7351}, 'v_neg': [{'word': 'Disaster', 'score': -3.1}, {'word': 'rage', 'score': -2.6}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}]}, {'headline': "'Surely it's a no brainer': Karl Stefanovic grills Queensland Premier Annastascia Palaszczuk over Rockhampton's lack of flood levees - as the town braces for record peak ", 'sentiment': {'neg': 0.158, 'neu': 0.739, 'pos': 0.102, 'compound': -0.1531}, 'v_neg': [], 's_neg': [{'word': 'no', 'score': -1.2}, {'word': 'lack', 'score': -1.3}], 'v_pos': [], 's_pos': [{'word': 'Surely', 'score': 1.9}]}, {'headline': "Sunrise crew left terrified after spotting a huge 'crocodile' lurking in the Rockhampton floodwaters - but can you tell what it REALLY is? ", 'sentiment': {'neg': 0.16, 'neu': 0.769, 'pos': 0.071, 'compound': -0.2732}, 'v_neg': [{'word': 'terrified', 'score': -3.0}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'huge', 'score': 1.3}]}, {'headline': "'I used to sleep on those bean bags!' Couple filmed in the middle of a sex act at a NSW university as stunned crowds watch on ", 'sentiment': {'neg': 0.069, 'neu': 0.931, 'pos': 0.0, 'compound': -0.1759}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Should you be having LESS sex? Expert says couples should be taking regular breaks to 'reconnect' on an emotional level ", 'sentiment': {'neg': 0.0, 'neu': 0.922, 'pos': 0.078, 'compound': 0.1531}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Why can Josh call a lady a sl**, but Court can't have a meltdown?' MKR viewers slam Manu over his 'double standards' for grilling Courtney after she loses it at the table... while ignoring male contestant's sexism ", 'sentiment': {'neg': 0.242, 'neu': 0.758, 'pos': 0.0, 'compound': -0.872}, 'v_neg': [], 's_neg': [{'word': 'slam', 'score': -1.6}, {'word': 'loses', 'score': -1.3}, {'word': 'ignoring', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': "Our mothers were frugal to a fault. So why can't women today stop splurging on credit cards? ", 'sentiment': {'neg': 0.134, 'neu': 0.644, 'pos': 0.222, 'compound': 0.1994}, 'v_neg': [], 's_neg': [{'word': 'fault', 'score': -1.7}, {'word': 'stop', 'score': -1.2}], 'v_pos': [], 's_pos': [{'word': 'credit', 'score': 1.6}]}, {'headline': "'Mums and dads pay tax, they can't avoid it': Google, Apple and Microsoft hit with massive $3 BILLION bill for unpaid taxes ", 'sentiment': {'neg': 0.06, 'neu': 0.859, 'pos': 0.081, 'compound': 0.125}, 'v_neg': [], 's_neg': [{'word': 'avoid', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'PICTURE EXCLUSIVE: Now Lindsay Lohan wears a BURKINI: Mean Girls star hits the beach in modest swimwear in Thailand while studying Islam ', 'sentiment': {'neg': 0.0, 'neu': 0.9, 'pos': 0.1, 'compound': 0.3034}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "At last! A young woman who doesn't go sobbing to the lawyers just because a man's said something daft ", 'sentiment': {'neg': 0.0, 'neu': 0.866, 'pos': 0.134, 'compound': 0.3561}, 'v_neg': [], 's_neg': [{'word': 'sobbing', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "'What happened to working?!' Internet rages at man who created GoFundMe page asking for $15,000 so he could buy an ENGAGEMENT RING ", 'sentiment': {'neg': 0.11, 'neu': 0.676, 'pos': 0.214, 'compound': 0.4451}, 'v_neg': [], 's_neg': [{'word': 'rages', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'created', 'score': 1.0}, {'word': 'ENGAGEMENT', 'score': 2.0}]}, {'headline': 'There may be trouble ahead! Photographs capture the hilarious expressions of big brothers and sisters who are FAR from impressed by their new baby siblings ', 'sentiment': {'neg': 0.088, 'neu': 0.714, 'pos': 0.198, 'compound': 0.5255}, 'v_neg': [], 's_neg': [{'word': 'trouble', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'hilarious', 'score': 1.7}, {'word': 'impressed', 'score': 2.1}]}, {'headline': 'Nomads bikie clubhouse shut down in dawn raid after gang violence erupted - with police seizing alcohol, a bar and colours ', 'sentiment': {'neg': 0.186, 'neu': 0.814, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [{'word': 'violence', 'score': -3.1}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Do YOU have the 'sleep gene': Study reveals some people are made to snooze more soundly than others thanks to their DNA ", 'sentiment': {'neg': 0.0, 'neu': 0.879, 'pos': 0.121, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'thanks', 'score': 1.9}]}, {'headline': "'She would have never risked her children's safety': Fury at police claims that mother who plunged car into the flooded Tweed River killing two of her children was driving on a 'closed' road ", 'sentiment': {'neg': 0.209, 'neu': 0.748, 'pos': 0.043, 'compound': -0.8143}, 'v_neg': [{'word': 'Fury', 'score': -2.7}, {'word': 'killing', 'score': -3.4}], 's_neg': [{'word': 'risked', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': "Are YOU always late? Researchers say it could be because you are 'too self-involved and wrapped up in your own life' ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Great apes can 'READ MINDS' to help humans complete puzzles ", 'sentiment': {'neg': 0.0, 'neu': 0.541, 'pos': 0.459, 'compound': 0.7783}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Great', 'score': 3.1}], 's_pos': [{'word': 'help', 'score': 1.7}]}, {'headline': 'Want to know where the other half honeymoons? Inside the lavish $18,000-a-night Fiji resort where newlyweds Peter Stefanovic and Sylvia Jeffreys will spend their first days as husband and wife ', 'sentiment': {'neg': 0.0, 'neu': 0.957, 'pos': 0.043, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Everything I worked for was a lie': Heartbreaking suicide note left by an Australian soldier, 22, before she tried to take her life in her base after accusing colleagues of bullying ", 'sentiment': {'neg': 0.344, 'neu': 0.656, 'pos': 0.0, 'compound': -0.9201}, 'v_neg': [{'word': 'suicide', 'score': -3.5}, {'word': 'bullying', 'score': -2.9}], 's_neg': [{'word': 'Heartbreaking', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': "Are YOU convinced your ex still loves you? Expert reveals the nine signs you're kidding yourself (and the ONLY way to tell if there's hope for a reunion) ", 'sentiment': {'neg': 0.0, 'neu': 0.682, 'pos': 0.318, 'compound': 0.8658}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'loves', 'score': 2.7}], 's_pos': [{'word': 'convinced', 'score': 1.7}, {'word': 'hope', 'score': 1.9}]}, {'headline': "Kendall Jenner hides her face at the airport after Pepsi pulls her 'offensive' Black Lives Matter ad amid mounting outrage - including even Martin Luther King's daughter ", 'sentiment': {'neg': 0.172, 'neu': 0.79, 'pos': 0.038, 'compound': -0.5994}, 'v_neg': [], 's_neg': [{'word': 'outrage', 'score': -2.3}], 'v_pos': [], 's_pos': []}, {'headline': "Uber contract 'written in gibberish to baffle drivers': Taxi firm also accused of forcing staff to sign clause that means they will not challenge their self-employed status ", 'sentiment': {'neg': 0.12, 'neu': 0.88, 'pos': 0.0, 'compound': -0.3447}, 'v_neg': [], 's_neg': [{'word': 'accused', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Voila! The languages children should learn if they want the best chances of success in life revealed ', 'sentiment': {'neg': 0.0, 'neu': 0.535, 'pos': 0.465, 'compound': 0.8832}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'best', 'score': 3.2}, {'word': 'success', 'score': 2.7}], 's_pos': [{'word': 'chances', 'score': 0.8}]}, {'headline': "Ni hao, Theodore: Ivanka Trump's youngest son learning Mandarin Chinese with building blocks just like big sister Arabella ", 'sentiment': {'neg': 0.093, 'neu': 0.784, 'pos': 0.123, 'compound': 0.1531}, 'v_neg': [], 's_neg': [{'word': 'blocks', 'score': -0.9}], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}]}, {'headline': "The billionaire who bought the 'world's most expensive jewel': Hong Kong tycoon splashes out world record $120m to buy 'Pink Star' diamond in memory of his late father ", 'sentiment': {'neg': 0.0, 'neu': 0.918, 'pos': 0.082, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'diamond', 'score': 1.4}]}, {'headline': "Toddler who was attacked by a pitbull-cross in a children's playground was SCALPED but medics say she will survive her wounds ", 'sentiment': {'neg': 0.1, 'neu': 0.9, 'pos': 0.0, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'attacked', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Would you pay $7 million for this? Humble two-bedroom suburban home in Melbourne is on the market for 30 TIMES more than what it sold for in 1999 ', 'sentiment': {'neg': 0.049, 'neu': 0.951, 'pos': 0.0, 'compound': -0.1027}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Android owners warned of 'most sophisticated and targeted mobile attack ever seen' that can take over phones and even uninstall itself if it thinks it has been spotted ", 'sentiment': {'neg': 0.153, 'neu': 0.733, 'pos': 0.114, 'compound': -0.079}, 'v_neg': [], 's_neg': [{'word': 'warned', 'score': -1.1}, {'word': 'attack', 'score': -2.1}], 'v_pos': [{'word': 'sophisticated', 'score': 2.6}], 's_pos': []}, {'headline': 'Why YOU should sleep naked: snoozing in the nude could boost male fertility, prevent thrush and even help you to lose weight ', 'sentiment': {'neg': 0.099, 'neu': 0.662, 'pos': 0.239, 'compound': 0.4215}, 'v_neg': [], 's_neg': [{'word': 'lose', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'boost', 'score': 1.7}, {'word': 'help', 'score': 1.7}]}, {'headline': "Assad's innocent victims: Father shows off twin boy and girl killed in Syria's 'sarin gas massacre', as death toll reaches 72. But what will the world actually DO? ", 'sentiment': {'neg': 0.287, 'neu': 0.617, 'pos': 0.097, 'compound': -0.8442}, 'v_neg': [{'word': 'killed', 'score': -3.5}, {'word': 'death', 'score': -2.9}], 's_neg': [{'word': 'victims', 'score': -1.3}], 'v_pos': [], 's_pos': [{'word': 'innocent', 'score': 1.4}]}, {'headline': "'The long distance has been hard!': MAFS star Alene reveals she IS moving to Ipswich to be with her TV husband Simon for a 'trial' ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Being dumped by a friend can be MORE painful than losing a lover... but don't expect sympathy from anyone, warned SARAH IVENS ", 'sentiment': {'neg': 0.425, 'neu': 0.5, 'pos': 0.075, 'compound': -0.8312}, 'v_neg': [], 's_neg': [{'word': 'dumped', 'score': -1.7}, {'word': 'painful', 'score': -1.9}, {'word': 'losing', 'score': -1.6}, {'word': 'warned', 'score': -1.1}], 'v_pos': [], 's_pos': [{'word': 'friend', 'score': 2.2}, {'word': 'sympathy', 'score': 1.5}]}, {'headline': 'Are these shadowy figures filmed by ghost-hunters in a former pub the troubled spirits of monks who were burnt alive in the 16th century? ', 'sentiment': {'neg': 0.113, 'neu': 0.789, 'pos': 0.098, 'compound': -0.1027}, 'v_neg': [], 's_neg': [{'word': 'troubled', 'score': -2.0}], 'v_pos': [], 's_pos': [{'word': 'alive', 'score': 1.6}]}, {'headline': 'Worst is yet to come: Rockhampton residents told to brace for the most severe flooding since 2011 as water levels are set to peak at nine metres ', 'sentiment': {'neg': 0.219, 'neu': 0.781, 'pos': 0.0, 'compound': -0.7902}, 'v_neg': [{'word': 'Worst', 'score': -3.1}], 's_neg': [{'word': 'severe', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "You've been cooking it wrong! Chefs say this is how to make the PERFECT steak (but their controversial method takes more than 45 minutes and requires a VERY pricey gadget) ", 'sentiment': {'neg': 0.146, 'neu': 0.73, 'pos': 0.124, 'compound': 0.2083}, 'v_neg': [], 's_neg': [{'word': 'wrong', 'score': -2.1}, {'word': 'controversial', 'score': -0.8}], 'v_pos': [{'word': 'PERFECT', 'score': 2.7}], 's_pos': []}, {'headline': "Terrifying moment a stranger attempts to kidnap a baby from his pram in Dunkin' Donuts before his US father leaps to the rescue ", 'sentiment': {'neg': 0.142, 'neu': 0.731, 'pos': 0.127, 'compound': -0.1027}, 'v_neg': [{'word': 'Terrifying', 'score': -2.7}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'rescue', 'score': 2.3}]}, {'headline': "Apple's iPhone 'smart bumper': Patent reveals smart shock absorbers that pop out when the device is dropped ", 'sentiment': {'neg': 0.118, 'neu': 0.636, 'pos': 0.245, 'compound': 0.4215}, 'v_neg': [], 's_neg': [{'word': 'shock', 'score': -1.6}], 'v_pos': [], 's_pos': [{'word': 'smart', 'score': 1.7}, {'word': 'smart', 'score': 1.7}]}, {'headline': "Stinky cooking is made a criminal offence in Italy after long-running legal battle between neighbours over 'smelly fritti misti' ", 'sentiment': {'neg': 0.425, 'neu': 0.516, 'pos': 0.06, 'compound': -0.8481}, 'v_neg': [{'word': 'criminal', 'score': -2.4}], 's_neg': [{'word': 'Stinky', 'score': -1.5}, {'word': 'offence', 'score': -1.2}, {'word': 'battle', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "'I'm just like any other parent': Super-fit mum hits back at critics who accuse her of LYING about giving birth to five kids in six years due to her envy-inducing physique ", 'sentiment': {'neg': 0.208, 'neu': 0.666, 'pos': 0.126, 'compound': -0.4995}, 'v_neg': [{'word': 'LYING', 'score': -2.4}], 's_neg': [{'word': 'critics', 'score': -1.2}, {'word': 'accuse', 'score': -0.8}], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}, {'word': 'giving', 'score': 1.4}]}, {'headline': "'Kids are standing here and you're supporting someone who drives like that': Internet hails policeman a hero for his scathing response after locals beg him NOT to fine speeding driver ", 'sentiment': {'neg': 0.0, 'neu': 0.698, 'pos': 0.302, 'compound': 0.8689}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'hero', 'score': 2.6}], 's_pos': [{'word': 'supporting', 'score': 1.9}, {'word': 'like', 'score': 1.5}, {'word': 'fine', 'score': 0.8}]}, {'headline': "'Winston doesn't muck around': Town mayor praises no-nonsense cop who interrupted press briefing to arrest swearing, beer-drinking thug - and says Australia needs more like him ", 'sentiment': {'neg': 0.201, 'neu': 0.61, 'pos': 0.189, 'compound': 0.1513}, 'v_neg': [], 's_neg': [{'word': 'interrupted', 'score': -1.2}, {'word': 'arrest', 'score': -1.4}, {'word': 'swearing', 'score': -1.0}], 'v_pos': [{'word': 'praises', 'score': 2.4}], 's_pos': [{'word': 'like', 'score': 1.5}]}, {'headline': "UFO enthusiast mysteriously vanishes leaving behind a den filled with secret codes, 14 encrypted books and a statue of 16th Century philosopher who predicted aliens' existence ", 'sentiment': {'neg': 0.0, 'neu': 0.902, 'pos': 0.098, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'enthusiast', 'score': 1.5}]}, {'headline': "Muslim refugee and expert halal butcher accused of murdering and decapitating his fishing buddy 'could kill animals with one cut to the neck' ", 'sentiment': {'neg': 0.412, 'neu': 0.588, 'pos': 0.0, 'compound': -0.9231}, 'v_neg': [{'word': 'murdering', 'score': -3.3}, {'word': 'kill', 'score': -3.7}], 's_neg': [{'word': 'accused', 'score': -1.2}, {'word': 'cut', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': "Even HEALTHY weight gain in the years before conceiving increases a woman's risk of diabetes during pregnancy, study finds ", 'sentiment': {'neg': 0.088, 'neu': 0.627, 'pos': 0.286, 'compound': 0.694}, 'v_neg': [], 's_neg': [{'word': 'risk', 'score': -1.1}], 'v_pos': [{'word': 'gain', 'score': 2.4}], 's_pos': [{'word': 'HEALTHY', 'score': 1.7}]}, {'headline': 'Wooden accents, shades of white and a distinct LACK of clutter: The rooms shortlisted for the Australian Interior Design Awards... so would you want to live there? ', 'sentiment': {'neg': 0.106, 'neu': 0.839, 'pos': 0.055, 'compound': -0.3547}, 'v_neg': [], 's_neg': [{'word': 'LACK', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Mitchell Moses agrees to $700,000 deal with Parramatta Eels as he seeks immediate move from West Tigers ', 'sentiment': {'neg': 0.0, 'neu': 0.899, 'pos': 0.101, 'compound': 0.2023}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'agrees', 'score': 0.8}]}, {'headline': "The leader's lager! Former prime minister Bob Hawke, 87, has beer named in his honour ", 'sentiment': {'neg': 0.0, 'neu': 0.778, 'pos': 0.222, 'compound': 0.6114}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'honour', 'score': 2.7}], 's_pos': []}, {'headline': 'Looking for the perfect pair of pants? FEMAIL finds out which knicker styles will flatter your figure ', 'sentiment': {'neg': 0.0, 'neu': 0.746, 'pos': 0.254, 'compound': 0.6249}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'perfect', 'score': 2.7}], 's_pos': []}, {'headline': 'Father, 47, kills his 14-month-old daughter and leaves son injured after veering off the road while high on meth ', 'sentiment': {'neg': 0.267, 'neu': 0.733, 'pos': 0.0, 'compound': -0.7351}, 'v_neg': [{'word': 'kills', 'score': -2.5}], 's_neg': [{'word': 'injured', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': "The surprising foods that you DON'T have to keep in the fridge, from eggplant and apples to avocados and JAM ", 'sentiment': {'neg': 0.0, 'neu': 0.9, 'pos': 0.1, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'surprising', 'score': 1.1}]}, {'headline': "'There's such great competition for people to swipe right': Expert reveals how to take a Tinder picture that will help you find love ", 'sentiment': {'neg': 0.0, 'neu': 0.633, 'pos': 0.367, 'compound': 0.9001}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'great', 'score': 3.1}, {'word': 'love', 'score': 3.2}], 's_pos': [{'word': 'help', 'score': 1.7}]}, {'headline': 'Mother held her baby daughter for final time before the infant died after horror crash that also killed her husband and nine-year-old son ', 'sentiment': {'neg': 0.433, 'neu': 0.567, 'pos': 0.0, 'compound': -0.9382}, 'v_neg': [{'word': 'died', 'score': -2.6}, {'word': 'horror', 'score': -2.7}, {'word': 'killed', 'score': -3.5}], 's_neg': [{'word': 'crash', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': "Glamorous party girl, 26, who attended elite Moriah College before she was 'busted with meth in her BRA' struts into court wearing towering stilettos and puffs on a cigarette ", 'sentiment': {'neg': 0.0, 'neu': 0.812, 'pos': 0.188, 'compound': 0.7184}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Glamorous', 'score': 2.3}, {'word': 'party', 'score': 1.7}]}, {'headline': "Haunting faces of the Bedlam ladies: Portraits show patients at asylum where 'problem' women were dumped by families even if they were sane.. and paying punters watched their cruel 'treatment' ", 'sentiment': {'neg': 0.242, 'neu': 0.758, 'pos': 0.0, 'compound': -0.8225}, 'v_neg': [{'word': 'cruel', 'score': -2.8}], 's_neg': [{'word': 'Haunting', 'score': -1.1}, {'word': 'dumped', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': "'I don't think he did anything wrong': Trump backs 'good person' Bill O'Reilly and says he shouldn't have settled sexual harassment claims as the Fox News anchor loses MORE THAN HALF his 80 advertisers ", 'sentiment': {'neg': 0.175, 'neu': 0.752, 'pos': 0.073, 'compound': -0.4767}, 'v_neg': [{'word': 'harassment', 'score': -2.5}], 's_neg': [{'word': 'loses', 'score': -1.3}], 'v_pos': [], 's_pos': [{'word': 'good', 'score': 1.9}]}, {'headline': "Beauty's new secret weapon: magnets! ALICE SMELLIE puts high-tech treatments to the test... ", 'sentiment': {'neg': 0.172, 'neu': 0.828, 'pos': 0.0, 'compound': -0.3595}, 'v_neg': [], 's_neg': [{'word': 'weapon', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "Caught red handed: Stranger attempts to kidnap a baby from his stroller inside a Dunkin' Donuts before his dad leaps to the rescue ", 'sentiment': {'neg': 0.0, 'neu': 0.858, 'pos': 0.142, 'compound': 0.5106}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'rescue', 'score': 2.3}]}, {'headline': 'The VERY clever uses for old tea bags (including banishing shoe odour, cleaning floors and even making pasta taste better) ', 'sentiment': {'neg': 0.0, 'neu': 0.825, 'pos': 0.175, 'compound': 0.6157}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'clever', 'score': 2.0}]}, {'headline': 'Be authentic, show personality and have fun: Entrepreneur behind global fashion brand P.E Nation shares tips to growing success from Instagram ', 'sentiment': {'neg': 0.0, 'neu': 0.609, 'pos': 0.391, 'compound': 0.872}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'success', 'score': 2.7}], 's_pos': [{'word': 'fun', 'score': 2.3}, {'word': 'shares', 'score': 1.2}]}, {'headline': "St Petersburg train massacre survivors 'had their faces ripped off' in blast as it's revealed Muslim suicide bomber was radicalised two months ago on a trip to his native Kyrgyzstan ", 'sentiment': {'neg': 0.138, 'neu': 0.862, 'pos': 0.0, 'compound': -0.6705}, 'v_neg': [{'word': 'suicide', 'score': -3.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "How YOU can get Scarlett Johansson's body: Actress's personal trainer reveals the secrets to her enviable figure ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "The robot sex experiment that let machines EVOLVE by passing 'genetic material' across several generations ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "From 'cashless' canteens to sushi and a personal chef: The changing face of school meals revealed... as study shows there's a move away from meat ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Mother avoids jail after she failed to call 000 when she found her seven-week-old baby daughter 'pale, limp and unresponsive' - because her abusive partner feared paramedics would find his cannabis plants ", 'sentiment': {'neg': 0.315, 'neu': 0.685, 'pos': 0.0, 'compound': -0.9081}, 'v_neg': [{'word': 'abusive', 'score': -3.2}], 's_neg': [{'word': 'failed', 'score': -2.3}, {'word': 'feared', 'score': -2.2}], 'v_pos': [], 's_pos': []}, {'headline': "'She was crying hysterically': Friend tells of the moment she found woman hunched over and unable to stand after man 'raped her in laneway behind his father's Kings Cross nightclub' ", 'sentiment': {'neg': 0.203, 'neu': 0.712, 'pos': 0.084, 'compound': -0.6705}, 'v_neg': [{'word': 'raped', 'score': -3.6}], 's_neg': [{'word': 'crying', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'Friend', 'score': 2.2}]}, {'headline': 'Soldier, 27, who stabbed his girlfriend to death with a 20cm kitchen knife then told his daughter the blood spattered on the walls was sauce is found guilty of murder ', 'sentiment': {'neg': 0.364, 'neu': 0.636, 'pos': 0.0, 'compound': -0.936}, 'v_neg': [{'word': 'death', 'score': -2.9}, {'word': 'murder', 'score': -3.7}], 's_neg': [{'word': 'stabbed', 'score': -1.9}, {'word': 'guilty', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': "Australia's top banker warns the economy is under threat from banks handing out 'too many home loans' ", 'sentiment': {'neg': 0.233, 'neu': 0.68, 'pos': 0.087, 'compound': -0.4588}, 'v_neg': [{'word': 'threat', 'score': -2.4}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'top', 'score': 0.8}]}, {'headline': 'Spotted: Red Bull heir who refuses to return to Thailand to face charges of killing a cop in Ferrari hit-and-run five years ago is seen at exclusive London address ', 'sentiment': {'neg': 0.197, 'neu': 0.758, 'pos': 0.045, 'compound': -0.7184}, 'v_neg': [{'word': 'killing', 'score': -3.4}], 's_neg': [{'word': 'charges', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'EPHRAIM HARDCASTLE: Charles and Camilla visit Pope Francis but no state visit invite for His Holiness ', 'sentiment': {'neg': 0.15, 'neu': 0.749, 'pos': 0.102, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'no', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Vegan mother is forced to vaccinate her two children after High Court judge overrules her objections ', 'sentiment': {'neg': 0.167, 'neu': 0.833, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'forced', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': "A first-class home! Engineer transforms huge Boeing 727 plane into his very own 'castle' in the middle of the woods ", 'sentiment': {'neg': 0.0, 'neu': 0.874, 'pos': 0.126, 'compound': 0.3802}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'huge', 'score': 1.3}]}, {'headline': "Female motorcyclist dies after a crash with a truck on Sydney's M4 Motorway ", 'sentiment': {'neg': 0.213, 'neu': 0.787, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'crash', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Would YOU eat the POOP of young people to live longer? Study finds older fish boost their lifespan by 41% by consuming microbes in the feces of younger animals ', 'sentiment': {'neg': 0.0, 'neu': 0.912, 'pos': 0.088, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'boost', 'score': 1.7}]}, {'headline': "A glass of Merlot can give your brain a work out: Drinking wine engages the organ more than 'any other human behaviour' ", 'sentiment': {'neg': 0.0, 'neu': 0.905, 'pos': 0.095, 'compound': 0.25}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'engages', 'score': 1.0}]}, {'headline': 'Say goodbye to cheesy toast and the salad bar! Sizzler will close two more of its buffet restaurants this weekend - leaving just ONE in Sydney ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Divorced couple continues to reunite for an annual family portrait with their son in order to show the four-year-old that it is 'possible to fall out of love but never fall apart' ", 'sentiment': {'neg': 0.0, 'neu': 0.923, 'pos': 0.077, 'compound': 0.3818}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'love', 'score': 3.2}], 's_pos': []}, {'headline': "Meet the 'Spiderman' snail: Bizarre new species that shoots webs is discovered on Florida shipwreck ", 'sentiment': {'neg': 0.141, 'neu': 0.859, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Bizarre', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "The strange SCALY EYE of Mars: NASA image reveals bizarre looking crater on the red planet's surface ", 'sentiment': {'neg': 0.215, 'neu': 0.785, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'strange', 'score': -0.8}, {'word': 'bizarre', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'The birth of intelligent machines? Scientists create an artificial brain connection that LEARNS like the human mind ', 'sentiment': {'neg': 0.0, 'neu': 0.648, 'pos': 0.352, 'compound': 0.765}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'intelligent', 'score': 2.0}, {'word': 'create', 'score': 1.1}, {'word': 'like', 'score': 1.5}]}, {'headline': "A Slovakian man with a deformed bulbous nose that covered nearly HALF of his face has finally had surgery after years of being made to feel like 'a clown' ", 'sentiment': {'neg': 0.0, 'neu': 0.912, 'pos': 0.088, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}]}, {'headline': "Restaurant that banned tipping is named best in the world: New York's Eleven Madison Park - where lunch takes more than three hours - takes crown from Italy ", 'sentiment': {'neg': 0.096, 'neu': 0.769, 'pos': 0.135, 'compound': 0.296}, 'v_neg': [], 's_neg': [{'word': 'banned', 'score': -2.0}], 'v_pos': [{'word': 'best', 'score': 3.2}], 's_pos': []}, {'headline': "Are these the most hilarious beauty blunders ever? Terrible tan lines, Oompa Loompa-worthy foundation and toenail talons prove it DOESN'T pay to skip the salon ", 'sentiment': {'neg': 0.138, 'neu': 0.645, 'pos': 0.217, 'compound': 0.5531}, 'v_neg': [], 's_neg': [{'word': 'Terrible', 'score': -2.1}], 'v_pos': [{'word': 'beauty', 'score': 2.8}], 's_pos': [{'word': 'hilarious', 'score': 1.7}]}, {'headline': 'A red dress for the red carpet! Duchess of Cambridge stuns in a crimson gown at the West End opening night of Broadway musical ', 'sentiment': {'neg': 0.0, 'neu': 0.938, 'pos': 0.062, 'compound': 0.1007}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Terrifying moment masked thugs wielding hammers launch a smash-and-grab raid on a Melbourne jewellery store in broad daylight - just three months after it was last robbed ', 'sentiment': {'neg': 0.139, 'neu': 0.861, 'pos': 0.0, 'compound': -0.5719}, 'v_neg': [{'word': 'Terrifying', 'score': -2.7}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Doctor, 68, suspended from his job for two months after he slapped a young boy with ADHD when he refused to swallow a capsule ', 'sentiment': {'neg': 0.209, 'neu': 0.791, 'pos': 0.0, 'compound': -0.6486}, 'v_neg': [], 's_neg': [{'word': 'suspended', 'score': -2.1}, {'word': 'refused', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "Russian mother 'stuffed anorexic model daughter's dead body in a suitcase and threw it into the sea' because she couldn't cope with her loss ", 'sentiment': {'neg': 0.239, 'neu': 0.761, 'pos': 0.0, 'compound': -0.765}, 'v_neg': [{'word': 'dead', 'score': -3.3}], 's_neg': [{'word': 'loss', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "Can the new trend for 'whole body vibration' REALLY help you lose weight? Expert says you're better off 'going for a walk' ", 'sentiment': {'neg': 0.128, 'neu': 0.637, 'pos': 0.235, 'compound': 0.4593}, 'v_neg': [], 's_neg': [{'word': 'lose', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'help', 'score': 1.7}, {'word': 'better', 'score': 1.9}]}, {'headline': "'I have been crying so much lately': Jules Sebastian on getting emotional about her firstborn starting school ", 'sentiment': {'neg': 0.157, 'neu': 0.761, 'pos': 0.081, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'crying', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Baaack off! Terrified man tries to protect himself with a pink bucket as angry sheep charges at him and headbutts him in the legs ', 'sentiment': {'neg': 0.31, 'neu': 0.607, 'pos': 0.083, 'compound': -0.7959}, 'v_neg': [{'word': 'Terrified', 'score': -3.0}], 's_neg': [{'word': 'angry', 'score': -2.3}, {'word': 'charges', 'score': -1.1}], 'v_pos': [], 's_pos': [{'word': 'protect', 'score': 1.6}]}, {'headline': 'The hilarious moment a cheeky bird unloads on a TV reporter twice - and tradies working nearby cannot contain their amusement ', 'sentiment': {'neg': 0.101, 'neu': 0.769, 'pos': 0.13, 'compound': 0.1506}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'hilarious', 'score': 1.7}, {'word': 'amusement', 'score': 1.5}]}, {'headline': 'Inside the stylish BLACK kitchens that will put you right off white - as interiors experts reveal how to recreate the chic new trend in your own home ', 'sentiment': {'neg': 0.0, 'neu': 0.925, 'pos': 0.075, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'chic', 'score': 1.1}]}, {'headline': "'Not talking about them allows them to expand': Islam critic Ayaan Hirsi Ali criticises The Project's Waleed Aly for calling Islamic State 'weak' in editorial widely-praised by the Left ", 'sentiment': {'neg': 0.14, 'neu': 0.86, 'pos': 0.0, 'compound': -0.5267}, 'v_neg': [], 's_neg': [{'word': 'critic', 'score': -1.1}, {'word': 'criticises', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "Shocked swimmers find 'human bones' washed up on Sydney's Bondi Beach - with police combing the sand for more clues ", 'sentiment': {'neg': 0.113, 'neu': 0.887, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Shocked', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "'Exhausting, isolating, painful': Former MAFS bride Zoe Hendrix shares her ongoing breastfeeding struggle... as hundreds of mothers weigh in with their cures for mastitis ", 'sentiment': {'neg': 0.0, 'neu': 0.913, 'pos': 0.087, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'shares', 'score': 1.2}]}, {'headline': 'Does the way you EAT reflect how you SPEND? From the passionate foodie to the mindless grazer, financial expert reveals what meal times say about you ', 'sentiment': {'neg': 0.096, 'neu': 0.792, 'pos': 0.112, 'compound': 0.128}, 'v_neg': [], 's_neg': [{'word': 'mindless', 'score': -1.9}], 'v_pos': [{'word': 'passionate', 'score': 2.4}], 's_pos': []}, {'headline': 'Do you REALLY want to know what Coke does to you? Disgusting experiment shows what happens when the soft drink mixes with your stomach acid ', 'sentiment': {'neg': 0.118, 'neu': 0.801, 'pos': 0.081, 'compound': -0.2672}, 'v_neg': [{'word': 'Disgusting', 'score': -2.4}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Could doing more LAUNDRY improve your love life? Survey reveals 71 per cent of people are turned off sex if a partner has dirty sheets on the bed ', 'sentiment': {'neg': 0.085, 'neu': 0.7, 'pos': 0.215, 'compound': 0.6682}, 'v_neg': [], 's_neg': [{'word': 'dirty', 'score': -1.9}], 'v_pos': [{'word': 'love', 'score': 3.2}], 's_pos': [{'word': 'improve', 'score': 1.9}]}, {'headline': 'The schoolboy who has to run TRIATHLONS to stay alive: Eight-year-old suffers from a deadly illness that causes him to keep gaining weight and forces him to undergo extreme exercise ', 'sentiment': {'neg': 0.16, 'neu': 0.691, 'pos': 0.149, 'compound': -0.1027}, 'v_neg': [], 's_neg': [{'word': 'suffers', 'score': -2.1}, {'word': 'illness', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'alive', 'score': 1.6}, {'word': 'gaining', 'score': 1.8}]}, {'headline': 'Global warming killed off the Mayans by locking leaders in violent power struggle ', 'sentiment': {'neg': 0.502, 'neu': 0.423, 'pos': 0.075, 'compound': -0.8779}, 'v_neg': [{'word': 'killed', 'score': -3.5}, {'word': 'violent', 'score': -2.9}], 's_neg': [{'word': 'struggle', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "Boy, three, loses his arm after being mauled by 'WOLF hybrids' his family have been breeding ", 'sentiment': {'neg': 0.133, 'neu': 0.867, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'loses', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "'Mostly naked' woman with webbed toes and wet hair who claims she is a MERMAID is found by cops in California ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Shocking footage shows 'Zombies' trembling in a catatonic state after taking Spice on the streets of Manchester ", 'sentiment': {'neg': 0.271, 'neu': 0.729, 'pos': 0.0, 'compound': -0.6369}, 'v_neg': [], 's_neg': [{'word': 'Shocking', 'score': -1.7}, {'word': 'trembling', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': "Canada is on the brink of making its national anthem 'gender-neutral' with 'clunky' politically-correct lyrics ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Benvenuto! Charles and Camilla are welcomed by the Italian Prime Minister in Rome as their bridge-building tour of Europe continues ', 'sentiment': {'neg': 0.0, 'neu': 0.876, 'pos': 0.124, 'compound': 0.4003}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'welcomed', 'score': 1.4}]}, {'headline': "Veteran DJ Brian Matthew ISN'T dead: BBC mistakenly announce Sounds of the 60s presenter's passing ", 'sentiment': {'neg': 0.333, 'neu': 0.667, 'pos': 0.0, 'compound': -0.7579}, 'v_neg': [{'word': 'dead', 'score': -3.3}], 's_neg': [{'word': 'mistakenly', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "'Good Lord, that's a big baby!' Moment a mother gives birth to a son weighing over 11 POUNDS without pain relief at her home is captured on camera ", 'sentiment': {'neg': 0.084, 'neu': 0.723, 'pos': 0.194, 'compound': 0.5171}, 'v_neg': [], 's_neg': [{'word': 'pain', 'score': -2.3}], 'v_pos': [], 's_pos': [{'word': 'Good', 'score': 1.9}, {'word': 'relief', 'score': 2.1}]}, {'headline': "Queen Letizia of Spain stuns in a fairytale gown as she joins King Felipe VI for a glittering state banquet at Tokyo's Imperial Palace ", 'sentiment': {'neg': 0.0, 'neu': 0.95, 'pos': 0.05, 'compound': 0.0258}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Is Instagram GOOD for teenagers? Social media site can strengthen the closeness of their friendships ', 'sentiment': {'neg': 0.0, 'neu': 0.584, 'pos': 0.416, 'compound': 0.8192}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'GOOD', 'score': 1.9}, {'word': 'strengthen', 'score': 1.3}, {'word': 'friendships', 'score': 1.6}]}, {'headline': 'Frissssky male snakes live shorter lives than females - because they wear themselves out during an annual THREE-WEEK frenzied mating orgy ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Harry's all yours, Meghan! Prince Abdul Mateen of Brunei sets pulses racing with smouldering Instagram snaps showing him cuddling his pet TIGER cubs ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Bailiffs seize Hitler's 'Wolf's Lair' where the Fuhrer spent much of WWII plotting his sick world domination after the current owners fail to pay their rent ", 'sentiment': {'neg': 0.299, 'neu': 0.701, 'pos': 0.0, 'compound': -0.8126}, 'v_neg': [{'word': 'fail', 'score': -2.5}], 's_neg': [{'word': 'sick', 'score': -2.3}], 'v_pos': [], 's_pos': []}, {'headline': "The incredible transformation of a baby whose port-wine stain was so bad her parents feared a lifetime of bullying - but thanks to laser treatment now say she'll be a model ", 'sentiment': {'neg': 0.214, 'neu': 0.674, 'pos': 0.113, 'compound': -0.3497}, 'v_neg': [{'word': 'bad', 'score': -2.5}, {'word': 'bullying', 'score': -2.9}], 's_neg': [{'word': 'feared', 'score': -2.2}], 'v_pos': [], 's_pos': [{'word': 'thanks', 'score': 1.9}]}, {'headline': "'A monstrosity': New Zealand Prime Minister proudly shows off his tinned spaghetti and pineapple pizza - but would you eat it? ", 'sentiment': {'neg': 0.0, 'neu': 0.892, 'pos': 0.108, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'proudly', 'score': 2.6}], 's_pos': []}, {'headline': 'Can YOU see the animals hiding in the picture? Farmer has far more than his flock of sheep to contend with in this countryside scene ', 'sentiment': {'neg': 0.083, 'neu': 0.871, 'pos': 0.045, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'hiding', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "Orbiting 'Mars base camp' planned for 2028 will carry six crew members and use virtual reality and artificial intelligence to search for alien life ", 'sentiment': {'neg': 0.0, 'neu': 0.881, 'pos': 0.119, 'compound': 0.4767}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'intelligence', 'score': 2.1}]}, {'headline': "Thai 'ladyboys' forced to stand in line for army conscription in dresses and skirts as some 100,000 21-year-old men are drafted into the military for up two years ", 'sentiment': {'neg': 0.1, 'neu': 0.9, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'forced', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Could THIS stop your partner snoring? New chin implant that sends electrical impulses to the tongue stops airway blockage ', 'sentiment': {'neg': 0.183, 'neu': 0.817, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'stop', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "Think your bathroom is clean? As many as 3.2 million bacteria per square inch may be lurking on your toothbrush, that's at least 200,000 more than a toilet seat! ", 'sentiment': {'neg': 0.049, 'neu': 0.853, 'pos': 0.098, 'compound': 0.3595}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'clean', 'score': 1.7}]}, {'headline': 'Billionaire New York developer, 79, offers to pay his estranged wife, 78, $1BILLION if she will sign divorce papers and allow him to marry so a younger French woman... but so far she has refused ', 'sentiment': {'neg': 0.11, 'neu': 0.85, 'pos': 0.04, 'compound': -0.3716}, 'v_neg': [], 's_neg': [{'word': 'refused', 'score': -1.2}], 'v_pos': [], 's_pos': [{'word': 'allow', 'score': 0.9}]}, {'headline': 'Little girl is rushed to hospital with life-threatening injuries after being savaged by a pittbull in a park - before police shoot the animal dead ', 'sentiment': {'neg': 0.338, 'neu': 0.662, 'pos': 0.0, 'compound': -0.8658}, 'v_neg': [{'word': 'dead', 'score': -3.3}], 's_neg': [{'word': 'savaged', 'score': -2.0}, {'word': 'shoot', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'The cutest cuddle buddies: Adorable video shows litter of 10 newborn cheetah cubs from two mothers huddled together just days after they came into the world ', 'sentiment': {'neg': 0.0, 'neu': 0.774, 'pos': 0.226, 'compound': 0.7906}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'cutest', 'score': 2.8}], 's_pos': [{'word': 'Adorable', 'score': 2.2}]}, {'headline': "Bertha breaks through: World's largest tunnel-boring machine which is building a $3.1billion underground highway beneath Seattle completes mission three years late ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Build that wall! First designs for Trump's border wall with Mexico are unveiled - with bombproof concrete, solar panels and decorative features all on offer ", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'So THIS is how it feels to be Spider-Man: Drone captures mesmerising aerial footage of New York ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'I started out just practicing at home': 'Twerking' instructor, 27, who shows off VERY raunchy moves in video admits 'I really had to work myself up to it' ", 'sentiment': {'neg': 0.0, 'neu': 0.925, 'pos': 0.075, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'admits', 'score': 1.2}]}, {'headline': 'Could THIS be the answer to lulling your baby to sleep? Cot uses vibrations, lights and sounds to get small children to nod off as if they are on a long car journey ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Couple BLOW their $14,000 life-savings on inflatable Easter wonderland that took 800 hours to build from 20,000 BALLOONS ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Luxurious life aboard RMS Titanic where passengers could relax in the swimming baths and stroll the promenade deck revealed as rare glossy brochures advertising the 'unsinkable' ship head to auction ", 'sentiment': {'neg': 0.0, 'neu': 0.875, 'pos': 0.125, 'compound': 0.4588}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'relax', 'score': 1.9}]}, {'headline': 'Former kung fu champion saves builder with BARE HANDS after the worker fell from the third floor ', 'sentiment': {'neg': 0.199, 'neu': 0.636, 'pos': 0.165, 'compound': -0.2023}, 'v_neg': [{'word': 'fu', 'score': -3.7}], 's_neg': [], 'v_pos': [{'word': 'champion', 'score': 2.9}], 's_pos': []}, {'headline': 'River of blood: Ravenous crocodiles attack helpless migrating zebras as they cross treacherous waters in Kenya ', 'sentiment': {'neg': 0.303, 'neu': 0.697, 'pos': 0.0, 'compound': -0.7269}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}, {'word': 'helpless', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': "The 'fiery alien landscape' of Alaska: Incredible infrared images reveal landscape in a whole new light ", 'sentiment': {'neg': 0.146, 'neu': 0.854, 'pos': 0.0, 'compound': -0.34}, 'v_neg': [], 's_neg': [{'word': 'fiery', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': "That's gotta hurt! The embarrassing moment a college softball player lands flat on her face in awkward slide into second base ", 'sentiment': {'neg': 0.317, 'neu': 0.683, 'pos': 0.0, 'compound': -0.784}, 'v_neg': [{'word': 'hurt', 'score': -2.4}], 's_neg': [{'word': 'embarrassing', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': 'Beware of the moggy! Crazed cat terrorises postie every time she makes a delivery ', 'sentiment': {'neg': 0.356, 'neu': 0.644, 'pos': 0.0, 'compound': -0.7263}, 'v_neg': [{'word': 'terrorises', 'score': -3.3}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Bangladeshi boy, 8, who was slowly turning into stone makes a miraculous recovery - despite his condition having NO CURE ', 'sentiment': {'neg': 0.147, 'neu': 0.853, 'pos': 0.0, 'compound': -0.4466}, 'v_neg': [], 's_neg': [{'word': 'NO', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Music streaming has killed the classic 80s ballad: Fickle millennial attention spans mean modern-day pop intros are four times shorter ', 'sentiment': {'neg': 0.191, 'neu': 0.809, 'pos': 0.0, 'compound': -0.6705}, 'v_neg': [{'word': 'killed', 'score': -3.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Bring your trunks! Photographer submerges himself in a watering hole to capture elephants at bath time ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Talk about stating the obvious! Online gallery showcases utterly pointless signs from around the world ', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Read it and weep! Library signs warning against eating spaghetti, chewing headphones and allowing bats in are funnier than anything you'll find on the shelves ", 'sentiment': {'neg': 0.206, 'neu': 0.708, 'pos': 0.087, 'compound': -0.5707}, 'v_neg': [{'word': 'weep', 'score': -2.7}], 's_neg': [{'word': 'warning', 'score': -1.4}], 'v_pos': [], 's_pos': [{'word': 'funnier', 'score': 1.7}]}, {'headline': 'Horrific video shows teenager who walked a quarter of a mile with his head nearly decapitated after fighting off murderous thugs ', 'sentiment': {'neg': 0.41, 'neu': 0.59, 'pos': 0.0, 'compound': -0.9022}, 'v_neg': [{'word': 'Horrific', 'score': -3.4}, {'word': 'murderous', 'score': -3.2}], 's_neg': [{'word': 'fighting', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Friendship goals! Golden retriever and dolphin become viral sensations after adorably chasing each other in the shallows at a Western Australia beach ', 'sentiment': {'neg': 0.0, 'neu': 0.751, 'pos': 0.249, 'compound': 0.7424}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Friendship', 'score': 1.9}, {'word': 'adorably', 'score': 2.1}]}, {'headline': "Loud and proud! Brand releases sets of $9.99 plastic stick-on NIPPLES that are sold in two sizes - 'cold' and 'freezing' ", 'sentiment': {'neg': 0.0, 'neu': 0.849, 'pos': 0.151, 'compound': 0.5255}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'proud', 'score': 2.1}]}, {'headline': 'Wheelie bad! Motorcyclist is left embarrassed when his stunt goes terribly wrong in front of a huge group of bikers ', 'sentiment': {'neg': 0.444, 'neu': 0.478, 'pos': 0.079, 'compound': -0.8932}, 'v_neg': [{'word': 'bad', 'score': -2.5}, {'word': 'terribly', 'score': -2.6}], 's_neg': [{'word': 'embarrassed', 'score': -1.5}, {'word': 'wrong', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'huge', 'score': 1.3}]}]
['au/2017-04-06.json', 'au/last7.json', 'au/2017-04-05.json', 'au/2017-04-07.json']
[{'headline': 'Trump Says Toxic Attack Changed His View of Syria', 'sentiment': {'neg': 0.279, 'neu': 0.721, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Haley Says U.S. May ‘Take Our Own Action’ in Syria', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Assad’s History of Chemical Attacks, and Other Atrocities', 'sentiment': {'neg': 0.293, 'neu': 0.707, 'pos': 0.0, 'compound': -0.4404}, 'v_neg': [], 's_neg': [{'word': 'Attacks', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'The Holes in Russia’s Account of the Attack 4:23 PM ET', 'sentiment': {'neg': 0.237, 'neu': 0.763, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump: ‘My Attitude Has Changed’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trump Removes Bannon From Role on Security Council', 'sentiment': {'neg': 0.0, 'neu': 0.745, 'pos': 0.255, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'Trump Suggests Rice Committed Crime, Citing No Evidence', 'sentiment': {'neg': 0.445, 'neu': 0.391, 'pos': 0.164, 'compound': -0.5574}, 'v_neg': [{'word': 'Crime', 'score': -2.5}], 's_neg': [{'word': 'No', 'score': -1.2}], 'v_pos': [], 's_pos': [{'word': 'Committed', 'score': 1.1}]}, {'headline': 'As New Health Plan Dies, G.O.P. Can’t Agree on the Culprit', 'sentiment': {'neg': 0.0, 'neu': 0.8, 'pos': 0.2, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Agree', 'score': 1.5}]}, {'headline': 'Senators United on Court Split: It’s Bad for the Country', 'sentiment': {'neg': 0.245, 'neu': 0.559, 'pos': 0.196, 'compound': -0.1779}, 'v_neg': [{'word': 'Bad', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'United', 'score': 1.8}]}, {'headline': 'What if Senate Goes Beyond Filibuster ‘Nuclear Option’?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'A Highly Scripted Chinese Leader Gets Ready for Trump', 'sentiment': {'neg': 0.0, 'neu': 0.737, 'pos': 0.263, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Ready', 'score': 1.5}]}, {'headline': 'Ivanka Trump Is Adored by Young Professionals in China 3:36 PM ET', 'sentiment': {'neg': 0.0, 'neu': 0.797, 'pos': 0.203, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Adored', 'score': 1.8}]}, {'headline': 'Life on Mars: Get to Know the Crew', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Tracking the President’s Visits to Trump Properties', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '', 'sentiment': {'neg': 0.0, 'neu': 0.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Listen to ‘The Daily’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Worried About Online Privacy? The Pros and Cons of VPNs', 'sentiment': {'neg': 0.196, 'neu': 0.804, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'Worried', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'A Positive Outlook May Be Good for Your Health', 'sentiment': {'neg': 0.0, 'neu': 0.48, 'pos': 0.52, 'compound': 0.7579}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Positive', 'score': 2.6}], 's_pos': [{'word': 'Good', 'score': 1.9}]}, {'headline': 'The Diva Departs: Renée Fleming’s Farewell to Opera', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'O’Reilly Sexual Harassment Furor Intensifies for Fox News', 'sentiment': {'neg': 0.333, 'neu': 0.667, 'pos': 0.0, 'compound': -0.5423}, 'v_neg': [{'word': 'Harassment', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trump Calls Bill O’Reilly a ‘Good Person’ 3:39 PM ET', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'A New Hashtag and Stories of Workplace Harassment 6:39 PM ET', 'sentiment': {'neg': 0.28, 'neu': 0.72, 'pos': 0.0, 'compound': -0.5423}, 'v_neg': [{'word': 'Harassment', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Here’s The Times’s Reporting on the Fox Settlements', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Pepsi Pulls Ad Accused of Trivializing Black Lives Matter', 'sentiment': {'neg': 0.349, 'neu': 0.55, 'pos': 0.101, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'Accused', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'What One Town Is Doing to Battle Student Stress', 'sentiment': {'neg': 0.435, 'neu': 0.565, 'pos': 0.0, 'compound': -0.6597}, 'v_neg': [], 's_neg': [{'word': 'Battle', 'score': -1.6}, {'word': 'Stress', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': '4 Well-Being Workouts to Help You Get Happy', 'sentiment': {'neg': 0.0, 'neu': 0.439, 'pos': 0.561, 'compound': 0.7506}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Happy', 'score': 2.7}], 's_pos': [{'word': 'Help', 'score': 1.7}]}, {'headline': 'Canadian Group Stirs Fears of a ‘Slowly Invading’ Islam', 'sentiment': {'neg': 0.286, 'neu': 0.714, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'Fears', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': 'Los Angeles Raids Target Investor Green Card Fraud 7:06 PM ET', 'sentiment': {'neg': 0.275, 'neu': 0.725, 'pos': 0.0, 'compound': -0.5859}, 'v_neg': [{'word': 'Fraud', 'score': -2.8}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'China Moves Forward in Its Quest for Food Security 52 minutes ago', 'sentiment': {'neg': 0.0, 'neu': 0.821, 'pos': 0.179, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'U.S. Women’s Soccer Ratifies New Labor Agreement 3:57 PM ET', 'sentiment': {'neg': 0.0, 'neu': 0.738, 'pos': 0.262, 'compound': 0.4939}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Agreement', 'score': 2.2}]}, {'headline': 'St. Petersburg Attack Included Many Students Among Victims', 'sentiment': {'neg': 0.474, 'neu': 0.526, 'pos': 0.0, 'compound': -0.6597}, 'v_neg': [], 's_neg': [{'word': 'Attack', 'score': -2.1}, {'word': 'Victims', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Civil Rights Act Protects Gay Workers, Court Rules', 'sentiment': {'neg': 0.0, 'neu': 0.753, 'pos': 0.247, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Protects', 'score': 1.3}]}, {'headline': 'The Interpreter', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Off Belize, a Hunt for Fly-Fishing’s Top Prizes', 'sentiment': {'neg': 0.0, 'neu': 0.51, 'pos': 0.49, 'compound': 0.5859}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Top', 'score': 0.8}, {'word': 'Prizes', 'score': 2.0}]}, {'headline': 'Melania Trump Meets Queen Rania of Jordan', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Films Like ‘The Boss Baby’ Can Be Painful', 'sentiment': {'neg': 0.254, 'neu': 0.526, 'pos': 0.219, 'compound': -0.1027}, 'v_neg': [], 's_neg': [{'word': 'Painful', 'score': -1.9}], 'v_pos': [], 's_pos': [{'word': 'Like', 'score': 1.5}]}, {'headline': 'President Trump’s Most Important Meeting', 'sentiment': {'neg': 0.0, 'neu': 0.656, 'pos': 0.344, 'compound': 0.2716}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Important', 'score': 0.8}]}, {'headline': 'Bruni: Kushner, a Man of Steel', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Douthat: A Good Emperor', 'sentiment': {'neg': 0.0, 'neu': 0.408, 'pos': 0.592, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Good', 'score': 1.9}]}, {'headline': 'Friedman: President Trump’s Real-World Syria Lesson', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Don’t Let Jeff Sessions Undermine Police Reform', 'sentiment': {'neg': 0.268, 'neu': 0.732, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'Undermine', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Should I Run for My Life or Stay With My Patients?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Bannon’s Out. But Did H.R. McMaster Win?', 'sentiment': {'neg': 0.0, 'neu': 0.612, 'pos': 0.388, 'compound': 0.5859}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Win', 'score': 2.8}], 's_pos': []}, {'headline': 'Learning to Love the Nuclear Option', 'sentiment': {'neg': 0.0, 'neu': 0.543, 'pos': 0.457, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Love', 'score': 3.2}], 's_pos': []}, {'headline': 'Live Chat: What’s in Store for Baseball Fans in 2017?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Play Today’s Puzzle', 'sentiment': {'neg': 0.0, 'neu': 0.455, 'pos': 0.545, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Play', 'score': 1.4}]}, {'headline': '4 New Books From Restaurant Chefs', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Check This Box if You’re a Good Person', 'sentiment': {'neg': 0.0, 'neu': 0.674, 'pos': 0.326, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Good', 'score': 1.9}]}, {'headline': 'Bringing Owls Into the Light', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'What We’re Reading', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The American Dream Meets a Central American Nightmare', 'sentiment': {'neg': 0.0, 'neu': 0.75, 'pos': 0.25, 'compound': 0.25}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Dream', 'score': 1.0}]}, {'headline': 'Future Islands in ‘The Far Field’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'We Witnessed South Sudan’s Anguish', 'sentiment': {'neg': 0.494, 'neu': 0.506, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [{'word': 'Anguish', 'score': -2.9}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The Interpreter: France’s Far Right, Once Known for Anti-Semitism, Courts Jews', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Fed Is Expected to Pare Investment Holdings, Officials Signal', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'State of the Art: The Online Ad Industry Is Undergoing Self-Reflection. That’s Good News.', 'sentiment': {'neg': 0.0, 'neu': 0.818, 'pos': 0.182, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Good', 'score': 1.9}]}, {'headline': 'Trump, Asked About Accusations Against Bill O’Reilly, Calls Him a ‘Good Person’', 'sentiment': {'neg': 0.187, 'neu': 0.813, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Accusations', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Op-Ed Contributor: Learning to Love the Nuclear Option', 'sentiment': {'neg': 0.0, 'neu': 0.625, 'pos': 0.375, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Love', 'score': 3.2}], 's_pos': []}, {'headline': 'Editorial: President Trump’s Most Important Meeting', 'sentiment': {'neg': 0.0, 'neu': 0.705, 'pos': 0.295, 'compound': 0.2716}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Important', 'score': 0.8}]}, {'headline': 'Frank Bruni: Jared Kushner, Man of Steel', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'In Georgia, Anti-Trump Activism Stirs Democratic Hopes', 'sentiment': {'neg': 0.0, 'neu': 0.682, 'pos': 0.318, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Hopes', 'score': 1.8}]}, {'headline': 'Police Unions Hail Trump’s Easing of Scrutiny. Local Officials Worry.', 'sentiment': {'neg': 0.22, 'neu': 0.53, 'pos': 0.25, 'compound': -0.1531}, 'v_neg': [], 's_neg': [{'word': 'Worry', 'score': -1.9}], 'v_pos': [], 's_pos': [{'word': 'Easing', 'score': 1.0}]}, {'headline': 'U.S. Appetite for Mexico’s Drugs Fuels Illegal Immigration', 'sentiment': {'neg': 0.34, 'neu': 0.66, 'pos': 0.0, 'compound': -0.5574}, 'v_neg': [{'word': 'Illegal', 'score': -2.6}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Tech Fix: For Internet Privacy, VPNs Are an Imperfect Shield', 'sentiment': {'neg': 0.204, 'neu': 0.796, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Imperfect', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Facebook Loses Appeal to Block Bulk Search Warrants', 'sentiment': {'neg': 0.464, 'neu': 0.536, 'pos': 0.0, 'compound': -0.6369}, 'v_neg': [], 's_neg': [{'word': 'Loses', 'score': -1.3}, {'word': 'Block', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Art, Politics and Misery Tourism: A German Art Fair Expands Into Athens', 'sentiment': {'neg': 0.24, 'neu': 0.519, 'pos': 0.24, 'compound': -0.25}, 'v_neg': [{'word': 'Misery', 'score': -2.7}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Fair', 'score': 1.3}]}, {'headline': 'Feist Wants to Ask You Some Questions About Sadness', 'sentiment': {'neg': 0.266, 'neu': 0.734, 'pos': 0.0, 'compound': -0.4404}, 'v_neg': [], 's_neg': [{'word': 'Sadness', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'A Taste of Trump Family Biographies for Young Readers', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Telling Trump’s Story to Children: For Book Publishers, It’s Tricky', 'sentiment': {'neg': 0.151, 'neu': 0.849, 'pos': 0.0, 'compound': -0.1531}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'As Latest Health Plan Dies, Republicans Can’t Agree on a Culprit', 'sentiment': {'neg': 0.0, 'neu': 0.783, 'pos': 0.217, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Agree', 'score': 1.5}]}, {'headline': 'Add Festival Season to the Fashion Calendar', 'sentiment': {'neg': 0.0, 'neu': 0.652, 'pos': 0.348, 'compound': 0.4939}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Festival', 'score': 2.2}]}, {'headline': 'Refugee Designer Shines a Light on Global Issues', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Field Notes: Gifts for the Wedding Party', 'sentiment': {'neg': 0.0, 'neu': 0.69, 'pos': 0.31, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Party', 'score': 1.7}]}, {'headline': 'Films Like ‘The Boss Baby’ Can Be Painful for Adoptees and Foster Kids', 'sentiment': {'neg': 0.177, 'neu': 0.671, 'pos': 0.152, 'compound': -0.1027}, 'v_neg': [], 's_neg': [{'word': 'Painful', 'score': -1.9}], 'v_pos': [], 's_pos': [{'word': 'Like', 'score': 1.5}]}, {'headline': 'Styles Q. and A.: The Vin Diesel Formula: Brains, Brawn and Heart', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Review: Seeking Revenge for ‘The Assignment’ She Didn’t Want', 'sentiment': {'neg': 0.291, 'neu': 0.598, 'pos': 0.111, 'compound': -0.4767}, 'v_neg': [{'word': 'Revenge', 'score': -2.4}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Track Flaws Are Focus of Penn Station Derailment Inquiry, Official Says', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Christie Stays Far From Transit Woes, Though Not in Commuters’ Eyes', 'sentiment': {'neg': 0.225, 'neu': 0.775, 'pos': 0.0, 'compound': -0.4404}, 'v_neg': [], 's_neg': [{'word': 'Woes', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Commute Made You Late Again? Get a Note From Your Train', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Jason Day Enters Masters ‘a Little Bit Unprepared’ but With a Clearer Head', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'On Baseball: Bartolo Colon Is Back in Town, and the Mets Sure Could Use Him', 'sentiment': {'neg': 0.0, 'neu': 0.859, 'pos': 0.141, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Sure', 'score': 1.3}]}, {'headline': 'On Olympics: A Body Blow the Winter Olympics Didn’t Need', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'From ‘Camp David’ to ‘Oslo,’ Forging Drama from Diplomacy', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The First Time: Amanda Peet: The First Time I (Didn’t) Read a Scathing Review', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Review: ‘Amélie’ Is Easy to Listen To, but Never Really Sings', 'sentiment': {'neg': 0.0, 'neu': 0.837, 'pos': 0.163, 'compound': 0.2382}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Easy', 'score': 1.9}]}, {'headline': 'Matter: Antarctic Ice Reveals Earth’s Accelerating Plant Growth', 'sentiment': {'neg': 0.0, 'neu': 0.619, 'pos': 0.381, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Growth', 'score': 1.6}]}, {'headline': 'Trilobites: A Dolphin’s Recipe for Octopus', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'When Britain Split From Europe, in a Big Way', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Arthur Bisguier, Brash, Self-Taught Bronx Chess Champion, Dies at 87', 'sentiment': {'neg': 0.0, 'neu': 0.698, 'pos': 0.302, 'compound': 0.5994}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Champion', 'score': 2.9}], 's_pos': []}, {'headline': 'Lolis Elie, Lawyer Who Helped Desegregate New Orleans, Dies at 87', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Roy Sievers, Slugging Washington Senator in the ’50s, Dies at 90', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Feature: CNN Had a Problem. Donald Trump Solved It.', 'sentiment': {'neg': 0.25, 'neu': 0.556, 'pos': 0.194, 'compound': -0.1531}, 'v_neg': [], 's_neg': [{'word': 'Problem', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'Solved', 'score': 1.1}]}, {'headline': 'Review: IFC’s Bawdy ‘Brockmire’ Cures the Baseball Yawn', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Watching: The Best TV Shows and Movies New to Netflix, Amazon and More in April', 'sentiment': {'neg': 0.0, 'neu': 0.688, 'pos': 0.312, 'compound': 0.7096}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Best', 'score': 3.2}], 's_pos': []}, {'headline': 'Global Health: The Campaign to Lead the World Health Organization', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Phys Ed: Why Deep Breathing May Keep Us Calm', 'sentiment': {'neg': 0.0, 'neu': 0.777, 'pos': 0.223, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Calm', 'score': 1.3}]}, {'headline': 'One in 10 Pregnant Women With Zika in U.S. Have Babies With Birth Defects', 'sentiment': {'neg': 0.172, 'neu': 0.828, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'Defects', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Pursuits: Off Belize, a Hunt for Saltwater Fly-Fishing’s Top Prizes', 'sentiment': {'neg': 0.0, 'neu': 0.593, 'pos': 0.407, 'compound': 0.5859}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Top', 'score': 0.8}, {'word': 'Prizes', 'score': 2.0}]}, {'headline': 'Past and Present: In France, a Monument Honors the American Flyers of World War I', 'sentiment': {'neg': 0.214, 'neu': 0.604, 'pos': 0.181, 'compound': -0.1531}, 'v_neg': [{'word': 'War', 'score': -2.9}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Honors', 'score': 2.3}]}, {'headline': 'Explorer: Along the Mekong River, a Timeless Place Where Time Marches On', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Books of The Times: ‘Unwanted Advances’ Tackles Sexual Politics in Academia', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Books of The Times: Mary Gaitskill Looks Unhappiness Straight in the Eye', 'sentiment': {'neg': 0.222, 'neu': 0.654, 'pos': 0.124, 'compound': -0.3612}, 'v_neg': [{'word': 'Unhappiness', 'score': -2.4}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Straight', 'score': 0.9}]}, {'headline': 'Books of The Times: Stories of Wonder, Fear and Kindness From the Moth', 'sentiment': {'neg': 0.186, 'neu': 0.64, 'pos': 0.174, 'compound': -0.0516}, 'v_neg': [], 's_neg': [{'word': 'Fear', 'score': -2.2}], 'v_pos': [], 's_pos': [{'word': 'Kindness', 'score': 2.0}]}, {'headline': 'It Takes a Suburb: A Town Unites to Tackle Student Stress', 'sentiment': {'neg': 0.259, 'neu': 0.741, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'Stress', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': 'Education Life: Learning to Think Like a Computer', 'sentiment': {'neg': 0.0, 'neu': 0.706, 'pos': 0.294, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Like', 'score': 1.5}]}, {'headline': 'Where Non-Techies Can Get With the Programming', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'How Melbourne Landed the World’s 50 Best Restaurants Awards', 'sentiment': {'neg': 0.0, 'neu': 0.493, 'pos': 0.507, 'compound': 0.802}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Best', 'score': 3.2}], 's_pos': [{'word': 'Awards', 'score': 2.0}]}, {'headline': 'Eleven Madison Park Tops List of World’s 50 Best Restaurants', 'sentiment': {'neg': 0.0, 'neu': 0.516, 'pos': 0.484, 'compound': 0.8176}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Best', 'score': 3.2}], 's_pos': [{'word': 'Tops', 'score': 2.3}]}, {'headline': 'The Hippies Have Won', 'sentiment': {'neg': 0.0, 'neu': 0.448, 'pos': 0.552, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Won', 'score': 2.7}], 's_pos': []}, {'headline': 'Opinion: How Scared Should People on the Border Be?', 'sentiment': {'neg': 0.266, 'neu': 0.734, 'pos': 0.0, 'compound': -0.4404}, 'v_neg': [], 's_neg': [{'word': 'Scared', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Editorial: Pick Your Favorite Ethics Offender in Trumpland', 'sentiment': {'neg': 0.217, 'neu': 0.522, 'pos': 0.261, 'compound': 0.128}, 'v_neg': [], 's_neg': [{'word': 'Offender', 'score': -1.5}], 'v_pos': [], 's_pos': [{'word': 'Favorite', 'score': 2.0}]}, {'headline': 'Frank Bruni: Manhood in the Age of Trump', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'What You Get: $2 Million Homes in California, Massachusetts and Texas', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'International Real Estate: House Hunting in ... Belgium', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Living In: Tuxedo Park, N.Y.: A Time Warp Beyond the Stone Gates', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Political Calculus: Democrats Are Bad at Midterm Turnout. That Seems Ready to Change.', 'sentiment': {'neg': 0.206, 'neu': 0.647, 'pos': 0.147, 'compound': -0.25}, 'v_neg': [{'word': 'Bad', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Ready', 'score': 1.5}]}, {'headline': 'Cost of Carbon: What Financial Markets Can Teach Us About Managing Climate Risks', 'sentiment': {'neg': 0.149, 'neu': 0.851, 'pos': 0.0, 'compound': -0.2732}, 'v_neg': [], 's_neg': [{'word': 'Risks', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Peer Pressure: How Gorsuch Could Pull the Eight Other Justices Rightward', 'sentiment': {'neg': 0.18, 'neu': 0.82, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'Pressure', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Feature: The Professor and the Jihadi', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Notebook: Is There Really a Security Rationale for Banning Laptops on Planes?', 'sentiment': {'neg': 0.0, 'neu': 0.788, 'pos': 0.212, 'compound': 0.4005}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'Talk: Ben Sasse Thinks Biden Would Have Won', 'sentiment': {'neg': 0.0, 'neu': 0.654, 'pos': 0.346, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Won', 'score': 2.7}], 's_pos': []}, {'headline': 'Volkswagen Share Sale Keeps the Automaker a Family Affair', 'sentiment': {'neg': 0.0, 'neu': 0.761, 'pos': 0.239, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Share', 'score': 1.2}]}, {'headline': 'Driven: Video Review: Acura NSX, a Supercar in Almost All Ways', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Wheels: As Auto Prices Rise, Used Cars Are Looking Shinier', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Perfect Strangers: When Father John Misty Met Patton Oswalt', 'sentiment': {'neg': 0.0, 'neu': 0.684, 'pos': 0.316, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Perfect', 'score': 2.7}], 's_pos': []}, {'headline': 'A Brisk Swim Across Martha’s Vineyard', 'sentiment': {'neg': 0.0, 'neu': 0.714, 'pos': 0.286, 'compound': 0.1531}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Massimo Bottura, the Chef Behind One of the World’s Best Restaurants', 'sentiment': {'neg': 0.0, 'neu': 0.704, 'pos': 0.296, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Best', 'score': 3.2}], 's_pos': []}, {'headline': '‘He,’ ‘She,’ ‘They’ and Us', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Seeking the Truths Locked Inside a Child Soldier', 'sentiment': {'neg': 0.0, 'neu': 0.682, 'pos': 0.318, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Truths', 'score': 1.8}]}, {'headline': 'Live Chat: Live Chat: What’s in Store for Baseball Fans in 2017?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Tuxedo Park, N.Y.: A Time Warp Beyond the Stone Gates', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Search for Homes for Sale or Rent', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Sell Your Home', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}]
[{'headline': "INFO BEYOND RUSSIA: Reports in unmasking controversy were detailed, had information about 'everyday lives'", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'VIDEO: Lawmakers consider asking Susan Rice to testify', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "OPINION: Rice's track record makes it tough to believe her", 'sentiment': {'neg': 0.143, 'neu': 0.857, 'pos': 0.0, 'compound': -0.128}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'NEWT GINGRICH: For Team Trump the rule must be no immunity, no testimony', 'sentiment': {'neg': 0.286, 'neu': 0.714, 'pos': 0.0, 'compound': -0.5267}, 'v_neg': [], 's_neg': [{'word': 'no', 'score': -1.2}, {'word': 'no', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "'THE O'REILLY FACTOR': 'Huge scandal' if Susan Rice helped Dem party during election", 'sentiment': {'neg': 0.162, 'neu': 0.559, 'pos': 0.279, 'compound': 0.2732}, 'v_neg': [], 's_neg': [{'word': 'scandal', 'score': -1.9}], 'v_pos': [], 's_pos': [{'word': 'Huge', 'score': 1.3}, {'word': 'party', 'score': 1.7}]}, {'headline': "Krauthammer: 'We don't know a damn thing' about Susan Rice's misconduct", 'sentiment': {'neg': 0.0, 'neu': 0.799, 'pos': 0.201, 'compound': 0.3089}, 'v_neg': [], 's_neg': [{'word': 'damn', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': "'THE O'REILLY FACTOR': Graham says 'easy to figure out' if Susan Rice broke the law", 'sentiment': {'neg': 0.15, 'neu': 0.695, 'pos': 0.155, 'compound': 0.0258}, 'v_neg': [], 's_neg': [{'word': 'broke', 'score': -1.8}], 'v_pos': [], 's_pos': [{'word': 'easy', 'score': 1.9}]}, {'headline': 'PERINO & STIREWALT: Will the real Trump administration please step forward', 'sentiment': {'neg': 0.0, 'neu': 0.796, 'pos': 0.204, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'please', 'score': 1.3}]}, {'headline': 'SEAN HANNITY: Connecting the dots in the Rice saga', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'OBAMA ORDER BLOCKED WH revokes decree halting controversial water project', 'sentiment': {'neg': 0.367, 'neu': 0.633, 'pos': 0.0, 'compound': -0.5622}, 'v_neg': [], 's_neg': [{'word': 'BLOCKED', 'score': -1.1}, {'word': 'controversial', 'score': -0.8}], 'v_pos': [], 's_pos': []}, {'headline': 'President Trump as a university commencement speaker? Not so much', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'He IS a mutt': De Niro says Trump 'sullied and debased the presidency'", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Number of Democrats 'proud' to be American dives under Trump, poll finds", 'sentiment': {'neg': 0.0, 'neu': 0.894, 'pos': 0.106, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'NOT COOPERATING? Pols: Intel agencies stalling on surveillance probe', 'sentiment': {'neg': 0.184, 'neu': 0.816, 'pos': 0.0, 'compound': -0.2023}, 'v_neg': [], 's_neg': [{'word': 'stalling', 'score': -0.8}], 'v_pos': [], 's_pos': []}, {'headline': 'OPINION: Susan Rice unmasking scandal cries out for a grand jury', 'sentiment': {'neg': 0.359, 'neu': 0.449, 'pos': 0.192, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'scandal', 'score': -1.9}, {'word': 'cries', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'grand', 'score': 2.0}]}, {'headline': "'FIRST 100 DAYS': Martha battles Dem over Susan Rice probe", 'sentiment': {'neg': 0.224, 'neu': 0.776, 'pos': 0.0, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'battles', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': "'A REAL JOURNEY' Gerri Willis tosses wig, shares breast cancer battle", 'sentiment': {'neg': 0.407, 'neu': 0.465, 'pos': 0.128, 'compound': -0.7003}, 'v_neg': [{'word': 'cancer', 'score': -3.4}], 's_neg': [{'word': 'battle', 'score': -1.6}], 'v_pos': [], 's_pos': [{'word': 'shares', 'score': 1.2}]}, {'headline': 'VIDEO: Gerri Willis on defeating breast cancer', 'sentiment': {'neg': 0.583, 'neu': 0.417, 'pos': 0.0, 'compound': -0.7906}, 'v_neg': [{'word': 'cancer', 'score': -3.4}], 's_neg': [{'word': 'defeating', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': 'Gerri Willis: Surprised by joy on the last day of my cancer treatment', 'sentiment': {'neg': 0.219, 'neu': 0.498, 'pos': 0.284, 'compound': 0.0772}, 'v_neg': [{'word': 'cancer', 'score': -3.4}], 's_neg': [], 'v_pos': [{'word': 'joy', 'score': 2.8}], 's_pos': [{'word': 'Surprised', 'score': 0.9}]}, {'headline': "Pro-ISIS hackers release 'kill list' with 8,786 targets in US, UK", 'sentiment': {'neg': 0.32, 'neu': 0.68, 'pos': 0.0, 'compound': -0.6908}, 'v_neg': [{'word': 'kill', 'score': -3.7}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Risk of homegrown Islamist extremism rising - House report', 'sentiment': {'neg': 0.231, 'neu': 0.769, 'pos': 0.0, 'compound': -0.2732}, 'v_neg': [], 's_neg': [{'word': 'Risk', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'ISIS turns Mosul museum into tax office', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Secret Service agent arrested, suspended after hotel meeting with prostitute', 'sentiment': {'neg': 0.437, 'neu': 0.563, 'pos': 0.0, 'compound': -0.7351}, 'v_neg': [], 's_neg': [{'word': 'arrested', 'score': -2.1}, {'word': 'suspended', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "Black woman 'sick of fancy white people' allegedly attacks couple at Virginia gas station", 'sentiment': {'neg': 0.341, 'neu': 0.659, 'pos': 0.0, 'compound': -0.7351}, 'v_neg': [], 's_neg': [{'word': 'sick', 'score': -2.3}, {'word': 'attacks', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Jeter, Jeb Bush among billion-dollar bidders for battered Miami Marlins', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Kansas principal resigns after student journalists look into her credentials', 'sentiment': {'neg': 0.204, 'neu': 0.796, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'resigns', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': "'FIRST 100 DAYS': Pence — Republicans have made 'good progress' in new ObamaCare repeal bid", 'sentiment': {'neg': 0.0, 'neu': 0.678, 'pos': 0.322, 'compound': 0.6908}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'good', 'score': 1.9}, {'word': 'progress', 'score': 1.8}]}, {'headline': 'EXCLUSIVE: Doctors, civilians recall children suffocating, dying on streets, sarin gas suspected', 'sentiment': {'neg': 0.134, 'neu': 0.708, 'pos': 0.158, 'compound': 0.0857}, 'v_neg': [], 's_neg': [{'word': 'suspected', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': 'What is Sarin? In Syria, potent gas believed to be behind fatal attack', 'sentiment': {'neg': 0.375, 'neu': 0.625, 'pos': 0.0, 'compound': -0.765}, 'v_neg': [{'word': 'fatal', 'score': -2.5}], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "McCain says Obama 'took a hike,' let Syria's Assad commit further war crimes", 'sentiment': {'neg': 0.242, 'neu': 0.621, 'pos': 0.137, 'compound': -0.4019}, 'v_neg': [{'word': 'war', 'score': -2.9}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'commit', 'score': 1.2}]}, {'headline': 'Ohio quadruplet brothers accepted at Ivy League universities', 'sentiment': {'neg': 0.0, 'neu': 0.769, 'pos': 0.231, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'accepted', 'score': 1.1}]}, {'headline': "World's No. 1 player Dustin Johnson injures back falling down stairs on the eve of the Masters", 'sentiment': {'neg': 0.213, 'neu': 0.787, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'No', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "BELLWETHER: In the Queen's English: Farage fires a barrage", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Women in Elizabeth Warren's office make less than men: report", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "VIDEO: Julie Roginsky 'claps back' at unequal pay in the workplace", 'sentiment': {'neg': 0.297, 'neu': 0.703, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'unequal', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'What state is the most stressed?', 'sentiment': {'neg': 0.35, 'neu': 0.65, 'pos': 0.0, 'compound': -0.4005}, 'v_neg': [], 's_neg': [{'word': 'stressed', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Drug cartel allegedly aided by top Mexican police commander, now in US custody', 'sentiment': {'neg': 0.0, 'neu': 0.87, 'pos': 0.13, 'compound': 0.2023}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'top', 'score': 0.8}]}, {'headline': 'Missing boy found hiding under bed after three-hour police search', 'sentiment': {'neg': 0.355, 'neu': 0.645, 'pos': 0.0, 'compound': -0.5267}, 'v_neg': [], 's_neg': [{'word': 'Missing', 'score': -1.2}, {'word': 'hiding', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "'SPECIAL REPORT' EXCLUSIVE: Egypt's president: Trump has 'true understanding' of terrorism", 'sentiment': {'neg': 0.229, 'neu': 0.349, 'pos': 0.422, 'compound': 0.434}, 'v_neg': [{'word': 'terrorism', 'score': -3.6}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'SPECIAL', 'score': 1.7}, {'word': 'true', 'score': 1.8}]}, {'headline': 'Villanova student shaves her head to confront ‘hair privilege’', 'sentiment': {'neg': 0.175, 'neu': 0.825, 'pos': 0.0, 'compound': -0.1779}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Military strike on North Korea may be only option, Gen. Keane says', 'sentiment': {'neg': 0.12, 'neu': 0.88, 'pos': 0.0, 'compound': -0.128}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trump, Xi meeting to set tone for future relationship between US and China', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Tennessee Amber Alert: Ex-student describes similar 'friendship' with wanted teacher", 'sentiment': {'neg': 0.0, 'neu': 0.804, 'pos': 0.196, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Alert', 'score': 1.2}]}, {'headline': 'Texas Amber Alert: Teen likely kidnapped by mom, two men', 'sentiment': {'neg': 0.0, 'neu': 0.804, 'pos': 0.196, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Alert', 'score': 1.2}]}, {'headline': "Joe Arpaio's Tent City jail to shut down, new Arizona sheriff announces", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Steve Bannon removed from National Security Council', 'sentiment': {'neg': 0.0, 'neu': 0.714, 'pos': 0.286, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'What is the National Security Council? Bannon off key panel', 'sentiment': {'neg': 0.0, 'neu': 0.789, 'pos': 0.211, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'Video shows woman nearly ripped from home by tornado', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Las Vegas man indicted on terrorism charges', 'sentiment': {'neg': 0.573, 'neu': 0.427, 'pos': 0.0, 'compound': -0.7717}, 'v_neg': [{'word': 'terrorism', 'score': -3.6}], 's_neg': [{'word': 'charges', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': "Kelly: Full-scale border wall 'unlikely,' clarifies position on family detentions", 'sentiment': {'neg': 0.0, 'neu': 0.826, 'pos': 0.174, 'compound': 0.2263}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'clarifies', 'score': 0.9}]}, {'headline': 'The anti-sanctuary city: Arizona county bucks national trend', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Woman says grandson with autism is forced to have recess inside', 'sentiment': {'neg': 0.231, 'neu': 0.769, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'forced', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': "Trump says 'heinous' chemical weapons strike in Syria 'cannot be tolerated'", 'sentiment': {'neg': 0.328, 'neu': 0.672, 'pos': 0.0, 'compound': -0.5267}, 'v_neg': [], 's_neg': [{'word': 'weapons', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump faults Obama for Middle East ‘mess,’ says he’s now responsible', 'sentiment': {'neg': 0.215, 'neu': 0.625, 'pos': 0.16, 'compound': -0.2023}, 'v_neg': [], 's_neg': [{'word': 'faults', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'responsible', 'score': 1.3}]}, {'headline': "Syria, Trump's first national security test, needs more than tough tweets", 'sentiment': {'neg': 0.135, 'neu': 0.683, 'pos': 0.182, 'compound': 0.1585}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'security', 'score': 1.4}]}, {'headline': 'US Navy grounds T-45 training jet fleet following Fox News report', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "You can't outrun THIS law", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Alec knew star was underage', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Hub on Fergie's bikini bod", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Katy posts racy snap', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Friends' star's sad news", 'sentiment': {'neg': 0.508, 'neu': 0.492, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'sad', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'These people die earlier', 'sentiment': {'neg': 0.565, 'neu': 0.435, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [{'word': 'die', 'score': -2.9}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Where is Caligula's orgy boat?", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Amy: Men think I'm pretty", 'sentiment': {'neg': 0.0, 'neu': 0.556, 'pos': 0.444, 'compound': 0.4939}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'pretty', 'score': 2.2}]}, {'headline': 'Manilow: Why I kept secret', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Nivea apologizes for racist ad', 'sentiment': {'neg': 0.421, 'neu': 0.316, 'pos': 0.263, 'compound': -0.3612}, 'v_neg': [{'word': 'racist', 'score': -3.0}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'apologizes', 'score': 1.5}]}, {'headline': 'Demi ready for R-rated film', 'sentiment': {'neg': 0.0, 'neu': 0.615, 'pos': 0.385, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'ready', 'score': 1.5}]}, {'headline': "George Strait's favorite drink", 'sentiment': {'neg': 0.0, 'neu': 0.5, 'pos': 0.5, 'compound': 0.4588}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'favorite', 'score': 2.0}]}, {'headline': 'Gladiator secrets revealed', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Kate's new revelation", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'DJIA', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Nasdaq', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'S&P 500', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Gold', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Cisco's CEO to Join BlackRock's Board", 'sentiment': {'neg': 0.0, 'neu': 0.694, 'pos': 0.306, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Join', 'score': 1.2}]}, {'headline': 'Buick Turns the Regal Into Rugged Station Wagon', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Taking a Bite Out of World Hunger, One Cricket at a Time', 'sentiment': {'neg': 0.182, 'neu': 0.818, 'pos': 0.0, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'Hunger', 'score': -1.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Jeter, Jeb Bush Among Billion-Dollar Bidders for Battered Marlins', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Tucker Carlson Tonight', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Pence on health care reform, surveillance claims and Syria', 'sentiment': {'neg': 0.0, 'neu': 0.714, 'pos': 0.286, 'compound': 0.4939}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'care', 'score': 2.2}]}, {'headline': "Trump inherits Obama's 'red line,' but will he handle Assad?", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Political purposes at play in Susan Rice unmasking?', 'sentiment': {'neg': 0.0, 'neu': 0.745, 'pos': 0.255, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'play', 'score': 1.4}]}, {'headline': 'Senate GOP fights for Gorsuch as House revives health reform', 'sentiment': {'neg': 0.203, 'neu': 0.602, 'pos': 0.195, 'compound': -0.0258}, 'v_neg': [], 's_neg': [{'word': 'fights', 'score': -1.7}], 'v_pos': [], 's_pos': [{'word': 'revives', 'score': 1.6}]}, {'headline': 'How time zones may affect cancer risk', 'sentiment': {'neg': 0.565, 'neu': 0.435, 'pos': 0.0, 'compound': -0.7579}, 'v_neg': [{'word': 'cancer', 'score': -3.4}], 's_neg': [{'word': 'risk', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Baby boxes to prevent SIDS: Does it actually work?', 'sentiment': {'neg': 0.0, 'neu': 0.879, 'pos': 0.121, 'compound': 0.0258}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trump nominee to lead FDA probed on ties to pharmacy industry', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Star Wars' superfan battling brain tumor gets surprise visit ahead of crucial scan", 'sentiment': {'neg': 0.428, 'neu': 0.464, 'pos': 0.108, 'compound': -0.7351}, 'v_neg': [{'word': 'Wars', 'score': -2.6}], 's_neg': [{'word': 'battling', 'score': -1.1}, {'word': 'tumor', 'score': -1.6}], 'v_pos': [], 's_pos': [{'word': 'surprise', 'score': 1.1}]}, {'headline': 'Newt Gingrich: For Team Trump the rule must be no immunity, no testimony', 'sentiment': {'neg': 0.286, 'neu': 0.714, 'pos': 0.0, 'compound': -0.5267}, 'v_neg': [], 's_neg': [{'word': 'no', 'score': -1.2}, {'word': 'no', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': "In the Queen's English: Farage fires a barrage", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Sean Hannity: Connecting the dots in Obama spy scandal', 'sentiment': {'neg': 0.266, 'neu': 0.734, 'pos': 0.0, 'compound': -0.4404}, 'v_neg': [], 's_neg': [{'word': 'scandal', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Road to rebuilding coal country starts with … literally, roads', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Navajo Nation wants Trump to subsidize coal sales to struggling power plant', 'sentiment': {'neg': 0.203, 'neu': 0.797, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'struggling', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump Country: Coal miners on regulation action', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Scott Pruitt on balancing environmental, economic priorities', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '', 'sentiment': {'neg': 0.0, 'neu': 0.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Vacation ideas for turning 6 childhood dreams into reality', 'sentiment': {'neg': 0.0, 'neu': 0.722, 'pos': 0.278, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'dreams', 'score': 1.7}]}, {'headline': "The world's shortest international flight is coming to an end", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Bikepacking' adds a dose of fun to backpacking", 'sentiment': {'neg': 0.0, 'neu': 0.645, 'pos': 0.355, 'compound': 0.5106}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'fun', 'score': 2.3}]}, {'headline': 'How to build a grill from sticks for campsite cooking', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Eleven Madison Park named world's best restaurant of 2017", 'sentiment': {'neg': 0.0, 'neu': 0.656, 'pos': 0.344, 'compound': 0.6369}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'best', 'score': 3.2}], 's_pos': []}, {'headline': 'After the Show Show: Cook with Sandra', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Sally the robot makes perfect salads in 60 seconds', 'sentiment': {'neg': 0.0, 'neu': 0.684, 'pos': 0.316, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'perfect', 'score': 2.7}], 's_pos': []}, {'headline': "Cooking with 'Friends': Sandra Lee's spring baking", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Sheriff: NJ woman attacked man with hammer', 'sentiment': {'neg': 0.333, 'neu': 0.667, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'attacked', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Students spend spring break building urban farm', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "3D-printed 'fin' helps amputees swim", 'sentiment': {'neg': 0.0, 'neu': 0.606, 'pos': 0.394, 'compound': 0.3818}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'helps', 'score': 1.6}]}, {'headline': 'Hard Rock to redo Taj Mahal casino in AC', 'sentiment': {'neg': 0.149, 'neu': 0.851, 'pos': 0.0, 'compound': -0.1027}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'NJ Transit blames Amtrak for Penn Station woes', 'sentiment': {'neg': 0.483, 'neu': 0.517, 'pos': 0.0, 'compound': -0.6808}, 'v_neg': [], 's_neg': [{'word': 'blames', 'score': -1.7}, {'word': 'woes', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': "Gladiator games: Experts harness tech to reveal Roman city's secrets", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'DWTS' Bonner Bolton on accident that left him paralyzed: 'I was saying my last prayer'", 'sentiment': {'neg': 0.181, 'neu': 0.819, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'accident', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "Demi Lovato talks plans for R-rated 'Camp Rock 3'", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Nivea apologizes for 'White Is Purity' ad", 'sentiment': {'neg': 0.0, 'neu': 0.706, 'pos': 0.294, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'apologizes', 'score': 1.5}]}, {'headline': 'Chuck Norris named honorary Texan', 'sentiment': {'neg': 0.0, 'neu': 0.625, 'pos': 0.375, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'honorary', 'score': 1.4}]}, {'headline': 'Celebrities who saved themselves for marriage', 'sentiment': {'neg': 0.0, 'neu': 0.641, 'pos': 0.359, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'saved', 'score': 1.8}]}, {'headline': 'Best and worst celebrity beach bodies (okay mostly best)', 'sentiment': {'neg': 0.268, 'neu': 0.458, 'pos': 0.275, 'compound': 0.0258}, 'v_neg': [{'word': 'worst', 'score': -3.1}], 's_neg': [], 'v_pos': [{'word': 'Best', 'score': 3.2}], 's_pos': []}, {'headline': 'Out of their league: Ugly guys who date bombshells', 'sentiment': {'neg': 0.292, 'neu': 0.708, 'pos': 0.0, 'compound': -0.5106}, 'v_neg': [], 's_neg': [{'word': 'Ugly', 'score': -2.3}], 'v_pos': [], 's_pos': []}, {'headline': "Installing an outdoor shower? Here's 5 things you need to consider", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "McDonald's U.S. Marketing Chief to Leave", 'sentiment': {'neg': 0.194, 'neu': 0.806, 'pos': 0.0, 'compound': -0.0516}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Planet Fitness CEO: If You Work Out a Couple Days a Week, You Deserve Pizza', 'sentiment': {'neg': 0.0, 'neu': 0.851, 'pos': 0.149, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Fitness', 'score': 1.1}]}, {'headline': "Al Gore attacks Trump in 'An Inconvenient Sequel' trailer", 'sentiment': {'neg': 0.431, 'neu': 0.569, 'pos': 0.0, 'compound': -0.6486}, 'v_neg': [], 's_neg': [{'word': 'attacks', 'score': -1.9}, {'word': 'Inconvenient', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Astronaut John Glenn to be interred at Arlington Cemetery on Thursday', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Hunt is on for gray whale entangled in metal frame', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}]
[{'headline': "'My entire family's gone'", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'His wife, his 9-month-old twins and more -- killed in a chemical attack blamed on the Syrian government', 'sentiment': {'neg': 0.44, 'neu': 0.56, 'pos': 0.0, 'compound': -0.8996}, 'v_neg': [{'word': 'killed', 'score': -3.5}], 's_neg': [{'word': 'attack', 'score': -2.1}, {'word': 'blamed', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Survivors saw bombs fall from the sky', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Syria attack survivor's plea to Trump", 'sentiment': {'neg': 0.383, 'neu': 0.617, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump: Chemical attack has changed how I view Syria', 'sentiment': {'neg': 0.307, 'neu': 0.693, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Haley suggests US is open to using military action', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Lawmakers to Trump: Time to act on Syria', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'A world in crisis pounds on WH door. America First, Trump says', 'sentiment': {'neg': 0.291, 'neu': 0.709, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [{'word': 'crisis', 'score': -3.1}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Bergen: With Bannon out, the WH can get serious on national security', 'sentiment': {'neg': 0.095, 'neu': 0.73, 'pos': 0.175, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'security', 'score': 1.4}]}, {'headline': "Why McConnell won't hesitate to go nuclear on Gorsuch", 'sentiment': {'neg': 0.0, 'neu': 0.815, 'pos': 0.185, 'compound': 0.2057}, 'v_neg': [], 's_neg': [{'word': 'hesitate', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Senate Dems filibuster Gorsuch', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Schiff: Trump promised documents, but WH is fighting release', 'sentiment': {'neg': 0.271, 'neu': 0.583, 'pos': 0.146, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'fighting', 'score': -1.5}], 'v_pos': [], 's_pos': [{'word': 'promised', 'score': 1.5}]}, {'headline': 'Cillizza: Trump says Susan Rice broke the law. His evidence? Nothing.', 'sentiment': {'neg': 0.219, 'neu': 0.781, 'pos': 0.0, 'compound': -0.4215}, 'v_neg': [], 's_neg': [{'word': 'broke', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': 'Jones: Trump should give Rice a medal', 'sentiment': {'neg': 0.0, 'neu': 0.617, 'pos': 0.383, 'compound': 0.4767}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'medal', 'score': 2.1}]}, {'headline': 'No repeal deal in sight, GOP to take flight', 'sentiment': {'neg': 0.216, 'neu': 0.784, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'No', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump approval rating drops', 'sentiment': {'neg': 0.0, 'neu': 0.492, 'pos': 0.508, 'compound': 0.4767}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'approval', 'score': 2.1}]}, {'headline': "Trump: O'Reilly did no wrong", 'sentiment': {'neg': 0.639, 'neu': 0.361, 'pos': 0.0, 'compound': -0.6486}, 'v_neg': [], 's_neg': [{'word': 'no', 'score': -1.2}, {'word': 'wrong', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': "Outta here: His sponsors' parting words", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Opinion: Of course Trump defends O'Reilly", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Schwarzenegger accuses Trump of 'robbing (children) blind'", 'sentiment': {'neg': 0.505, 'neu': 0.495, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [], 's_neg': [{'word': 'accuses', 'score': -1.4}, {'word': 'blind', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Navy grounds training jets after protests', 'sentiment': {'neg': 0.275, 'neu': 0.725, 'pos': 0.0, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'protests', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Secret Service agent caught with prostitute', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '60M Americans under tornado warnings', 'sentiment': {'neg': 0.355, 'neu': 0.645, 'pos': 0.0, 'compound': -0.296}, 'v_neg': [], 's_neg': [{'word': 'warnings', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'GOP lawmaker stuns anchor', 'sentiment': {'neg': 0.0, 'neu': 0.732, 'pos': 0.268, 'compound': 0.0258}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Krispy Kreme owner buys Panera', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'F-16 crashes in Maryland', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '8,000+ Uber and Lyft drivers banned', 'sentiment': {'neg': 0.375, 'neu': 0.625, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'banned', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Opinion: Ivanka, what do you do?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'I don't know what it means to be complicit'", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Ivanka's WH job raises ethics questions", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Kushner's crowning real estate deal is in trouble", 'sentiment': {'neg': 0.278, 'neu': 0.722, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'trouble', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': "Ivanka defends husband's WH role", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Melania Trump, Queen Rania go to school', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Barry Manilow opens up about his sexuality', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Rare footage of octopus with hidden arm', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Bash on Trump: 'Don't talk about Bill O'Reilly'", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Model comes out as intersex', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Teen accepted by all 8 Ivy League schools', 'sentiment': {'neg': 0.0, 'neu': 0.741, 'pos': 0.259, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'accepted', 'score': 1.1}]}, {'headline': "Barry Manilow's decades-long secret", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Cashman: Frazier didn't ask for Yankee legend's number", 'sentiment': {'neg': 0.0, 'neu': 0.843, 'pos': 0.157, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Heckler boos Trump during speech', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "The worst pitch by MLBer you'll ever see", 'sentiment': {'neg': 0.369, 'neu': 0.631, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [{'word': 'worst', 'score': -3.1}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Heath Ledger as you've never seen him", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'New footage of Heath Ledger', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Cardinals' player hit by ball 3 times in 1 inning", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Teen helped recover Brady's Super Bowl jerseys", 'sentiment': {'neg': 0.0, 'neu': 0.606, 'pos': 0.394, 'compound': 0.5994}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Super', 'score': 2.9}], 's_pos': []}, {'headline': 'Shia LaBeouf film sells one ticket', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'No.1 golfer injures back ahead of the Masters', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Student gets into Stanford after writing #BlackLivesMatter on application 100 times', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "How to photograph Hanoi like the city's Instagram stars", 'sentiment': {'neg': 0.0, 'neu': 0.762, 'pos': 0.238, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}]}, {'headline': "Engineer builds robot to burn Trump's tweets", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'NASA to crash spacecraft into Saturn', 'sentiment': {'neg': 0.351, 'neu': 0.649, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'crash', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': "Of course Trump defended O'Reilly", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "When a cop's fear means a death sentence", 'sentiment': {'neg': 0.623, 'neu': 0.263, 'pos': 0.114, 'compound': -0.7783}, 'v_neg': [{'word': 'death', 'score': -2.9}], 's_neg': [{'word': 'fear', 'score': -2.2}], 'v_pos': [], 's_pos': []}, {'headline': 'With Bannon out, White House gets serious about national security', 'sentiment': {'neg': 0.111, 'neu': 0.684, 'pos': 0.205, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'security', 'score': 1.4}]}, {'headline': 'Trump and Xi Jinping have a surprising amount in common', 'sentiment': {'neg': 0.0, 'neu': 0.792, 'pos': 0.208, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'surprising', 'score': 1.1}]}, {'headline': 'Rates hit 3.25% APR (15 yr). Are you eligible?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Fastest way to pay off $10,000 in credit card debt', 'sentiment': {'neg': 0.289, 'neu': 0.519, 'pos': 0.193, 'compound': -0.0772}, 'v_neg': [], 's_neg': [{'word': 'debt', 'score': -1.5}], 'v_pos': [], 's_pos': [{'word': 'credit', 'score': 1.6}]}, {'headline': 'The amazing VA benefits not enough vets claim', 'sentiment': {'neg': 0.0, 'neu': 0.484, 'pos': 0.516, 'compound': 0.7506}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'amazing', 'score': 2.8}], 's_pos': [{'word': 'benefits', 'score': 1.6}]}, {'headline': 'Reduce your mortgage by $20,000 with these 5 steps', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '8 spectacular cards for those with excellent credit', 'sentiment': {'neg': 0.0, 'neu': 0.442, 'pos': 0.558, 'compound': 0.743}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'excellent', 'score': 2.7}], 's_pos': [{'word': 'credit', 'score': 1.6}]}, {'headline': 'You should not ignore this insane cash back offer', 'sentiment': {'neg': 0.255, 'neu': 0.572, 'pos': 0.172, 'compound': -0.2535}, 'v_neg': [], 's_neg': [{'word': 'ignore', 'score': -1.5}, {'word': 'insane', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'The 10 best credit cards for 2017', 'sentiment': {'neg': 0.0, 'neu': 0.424, 'pos': 0.576, 'compound': 0.7783}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'best', 'score': 3.2}], 's_pos': [{'word': 'credit', 'score': 1.6}]}, {'headline': 'Legendary tech investor boldly endorses one stock', 'sentiment': {'neg': 0.0, 'neu': 0.505, 'pos': 0.495, 'compound': 0.5994}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'boldly', 'score': 1.5}, {'word': 'endorses', 'score': 1.4}]}, {'headline': 'You can still buy this "millionaire maker" stock', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Trump's plan could make investors very wealthy", 'sentiment': {'neg': 0.0, 'neu': 0.682, 'pos': 0.318, 'compound': 0.4201}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'wealthy', 'score': 1.5}]}, {'headline': 'This stock would be like buying Amazon for $3.19', 'sentiment': {'neg': 0.0, 'neu': 0.625, 'pos': 0.375, 'compound': 0.4939}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'like', 'score': 1.5}]}]
[{'headline': 'DESPERATE: GOP THROWS TERROR SMEAR IN GA. ELECTION', 'sentiment': {'neg': 0.621, 'neu': 0.379, 'pos': 0.0, 'compound': -0.802}, 'v_neg': [{'word': 'TERROR', 'score': -2.4}], 's_neg': [{'word': 'DESPERATE', 'score': -1.3}, {'word': 'SMEAR', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Merriam-Webster Defines ‘Complicit’ So Ivanka Trump Doesn’t Have To', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Pepsi’s Portrayal Of A Muslim Woman Was As Tone-Deaf As The Rest Of The Ad', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Barry Manilow Comes Out As Gay At Age 73', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Divided Nation Takes Moment Off To Hate S**tty Pepsi Ad Together', 'sentiment': {'neg': 0.27, 'neu': 0.73, 'pos': 0.0, 'compound': -0.5719}, 'v_neg': [{'word': 'Hate', 'score': -2.7}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'New York Times Makes A Doozy Of A Slip About Ivanka Trump', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'A Real Protester Gives Mayor A Pepsi. It Didn’t End Well.', 'sentiment': {'neg': 0.0, 'neu': 0.792, 'pos': 0.208, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Well', 'score': 1.1}]}, {'headline': 'The Rich Line Up At The White House ATM Michael Winship Senior writer, BillMoyers.com. Former senior writing fellow, D...', 'sentiment': {'neg': 0.0, 'neu': 0.833, 'pos': 0.167, 'compound': 0.5574}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Rich', 'score': 2.6}], 's_pos': []}, {'headline': 'The Rich Line Up At The White House ATM', 'sentiment': {'neg': 0.0, 'neu': 0.69, 'pos': 0.31, 'compound': 0.5574}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Rich', 'score': 2.6}], 's_pos': []}, {'headline': 'Nivea Ends ‘White Is Purity’ Campaign After Widespread Backlash', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trump’s Incoherent Syria Policy Is About To Be Tested Philip Rotner Attorney', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trump’s Incoherent Syria Policy Is About To Be Tested', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Lindsay Lohan Wears A Burkini In Thailand', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Derek Jeter Reportedly Ready to Make A Life-Changing Move', 'sentiment': {'neg': 0.0, 'neu': 0.737, 'pos': 0.263, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Ready', 'score': 1.5}]}, {'headline': 'Bonnie And The Brilliant Racial Tension Of ‘Big Little Lies’', 'sentiment': {'neg': 0.163, 'neu': 0.567, 'pos': 0.27, 'compound': 0.3612}, 'v_neg': [], 's_neg': [{'word': 'Tension', 'score': -1.3}], 'v_pos': [{'word': 'Brilliant', 'score': 2.8}], 's_pos': []}, {'headline': 'Naomi Klein Is Writing An Anti-Trump Manifesto Very, Very Quickly', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '7 Shockingly Tone-Deaf Ads That Should Have Never Happened', 'sentiment': {'neg': 0.195, 'neu': 0.805, 'pos': 0.0, 'compound': -0.1779}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'MLK’s Daughter Bernice King Blasts Pepsi In Mic-Drop Tweet', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Police Seek Help IDing Woman Found Wet, Claiming To Be Mermaid', 'sentiment': {'neg': 0.0, 'neu': 0.787, 'pos': 0.213, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Help', 'score': 1.7}]}, {'headline': 'I Helped Implement Obamacare. Here’s Some Advice For Trump. Emily Barson Former HHS Director of Intergovernmental and External Affairs', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'I Helped Implement Obamacare. Here’s Some Advice For Trump.', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'This Is Why Narcissists Make Friends With Other Narcissists', 'sentiment': {'neg': 0.0, 'neu': 0.721, 'pos': 0.279, 'compound': 0.4767}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Friends', 'score': 2.1}]}, {'headline': 'David Schwimmer Wants You To Know What Sexual Harassment Looks Like', 'sentiment': {'neg': 0.233, 'neu': 0.6, 'pos': 0.167, 'compound': -0.25}, 'v_neg': [{'word': 'Harassment', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Like', 'score': 1.5}]}, {'headline': 'Watch The ‘Eat Pray Love’-Esque Trailer For ‘Master Of None’ Season 2', 'sentiment': {'neg': 0.0, 'neu': 0.813, 'pos': 0.187, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Pray', 'score': 1.3}]}, {'headline': 'Young People In Chicago Want Chance The Rapper To Run For Mayor', 'sentiment': {'neg': 0.0, 'neu': 0.752, 'pos': 0.248, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Chance', 'score': 1.0}]}, {'headline': 'Girl Had A Perfect Response When Asked Why She Wanted A Black Doll', 'sentiment': {'neg': 0.0, 'neu': 0.73, 'pos': 0.27, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Perfect', 'score': 2.7}], 's_pos': []}, {'headline': 'The Truth About How Much Caffeine Is In Your Decaf Coffee', 'sentiment': {'neg': 0.0, 'neu': 0.813, 'pos': 0.187, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Truth', 'score': 1.3}]}, {'headline': 'A Swimwear Designer Tried To Shame Amy Schumer. It Didn’t Go Well.', 'sentiment': {'neg': 0.218, 'neu': 0.634, 'pos': 0.148, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'Shame', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'Well', 'score': 1.1}]}, {'headline': 'Muslim Women Are Opening A New, Inclusive Mosque In California', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Jimmy Fallon Loses It After On-Air Flub Of ‘Baby Got Back’', 'sentiment': {'neg': 0.187, 'neu': 0.813, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Loses', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': '28 Times Your Roommate Was The Best/Worst Person In Your Life', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'School Principal Resigns After Student Journalists Investigate Her Credentials', 'sentiment': {'neg': 0.223, 'neu': 0.777, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Resigns', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Kendall Jenner And Pepsi Team-Up To Commodify The Struggle Tyler Payton Young black woman with a lot to say', 'sentiment': {'neg': 0.119, 'neu': 0.881, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Struggle', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Kendall Jenner And Pepsi Team-Up To Commodify The Struggle', 'sentiment': {'neg': 0.223, 'neu': 0.777, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Struggle', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'How One Woman Paid Off $68,000 Of Debt In 3 Years', 'sentiment': {'neg': 0.217, 'neu': 0.783, 'pos': 0.0, 'compound': -0.3612}, 'v_neg': [], 's_neg': [{'word': 'Debt', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Mitch McConnell’s Nuclear Decision Sen. Dick Durbin U.S. Senator from Illinois', 'sentiment': {'neg': 0.248, 'neu': 0.752, 'pos': 0.0, 'compound': -0.5106}, 'v_neg': [], 's_neg': [{'word': 'Dick', 'score': -2.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Mitch McConnell’s Nuclear Decision', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'North Carolina’s Debacle Reveals How Easily LGBTQ People Can Be Abandoned By Everyone', 'sentiment': {'neg': 0.183, 'neu': 0.671, 'pos': 0.146, 'compound': -0.1531}, 'v_neg': [], 's_neg': [{'word': 'Abandoned', 'score': -2.0}], 'v_pos': [], 's_pos': [{'word': 'Easily', 'score': 1.4}]}, {'headline': 'This Is Why Our Generation Doesn’t Believe In Settling Down Unwritten The destination for millennials to share their uninhibited tho...', 'sentiment': {'neg': 0.0, 'neu': 0.896, 'pos': 0.104, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'share', 'score': 1.2}]}, {'headline': 'This Is Why Our Generation Doesn’t Believe In Settling Down', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'I Am “Disabled,” And That Label Matters Kathryn Poe Student at Capital University', 'sentiment': {'neg': 0.0, 'neu': 0.909, 'pos': 0.091, 'compound': 0.0258}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'I Am “Disabled,” And That Label Matters', 'sentiment': {'neg': 0.0, 'neu': 0.82, 'pos': 0.18, 'compound': 0.0258}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'O’Reilly Weathered A Sexual Harassment Scandal Before. This Time Is Different. Here Are All The Advertisers Fleeing Bill O’Reilly’s Show', 'sentiment': {'neg': 0.274, 'neu': 0.726, 'pos': 0.0, 'compound': -0.7506}, 'v_neg': [{'word': 'Harassment', 'score': -2.5}], 's_neg': [{'word': 'Scandal', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'O’Reilly Weathered A Sexual Harassment Scandal Before. This Time Is Different.', 'sentiment': {'neg': 0.444, 'neu': 0.556, 'pos': 0.0, 'compound': -0.7506}, 'v_neg': [{'word': 'Harassment', 'score': -2.5}], 's_neg': [{'word': 'Scandal', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Here Are All The Advertisers Fleeing Bill O’Reilly’s Show', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'DRAMA: Bannon Reportedly Threatened To Quit Over NSC Demotion', 'sentiment': {'neg': 0.273, 'neu': 0.727, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'Threatened', 'score': -2.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump Kicks Off Sexual Assault Awareness Month By Defending O’Reilly', 'sentiment': {'neg': 0.297, 'neu': 0.703, 'pos': 0.0, 'compound': -0.5859}, 'v_neg': [{'word': 'Assault', 'score': -2.8}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Pepsi Pulls Kendall Jenner Ad Following Intense Backlash', 'sentiment': {'neg': 0.0, 'neu': 0.843, 'pos': 0.157, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Steve Bannon Removed From National Security Council', 'sentiment': {'neg': 0.0, 'neu': 0.714, 'pos': 0.286, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'Can Donald Trump Fake His Way Through Foreign Crises? We’ll Find Out.', 'sentiment': {'neg': 0.22, 'neu': 0.78, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'Fake', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Losing Employer Won’t Ask Supreme Court To Overturn Landmark Gay Rights Ruling', 'sentiment': {'neg': 0.158, 'neu': 0.545, 'pos': 0.297, 'compound': 0.3182}, 'v_neg': [], 's_neg': [{'word': 'Losing', 'score': -1.6}], 'v_pos': [{'word': 'Supreme', 'score': 2.6}], 's_pos': []}, {'headline': 'DHS Chief Acknowledges Border ‘Wall’ Might Not Be An Actual Wall', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Russia Bans ‘Extremist’ Image Of Putin In Makeup', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Myanmar’s Nobel Peace Prize Winner Denies Ethnic Cleansing Of Rohingya', 'sentiment': {'neg': 0.144, 'neu': 0.309, 'pos': 0.546, 'compound': 0.8316}, 'v_neg': [], 's_neg': [{'word': 'Denies', 'score': -1.8}], 'v_pos': [{'word': 'Peace', 'score': 2.5}, {'word': 'Winner', 'score': 2.8}], 's_pos': [{'word': 'Prize', 'score': 2.3}]}, {'headline': 'Democrats Are Raising Money Hand Over Fist With Trump In The White House', 'sentiment': {'neg': 0.0, 'neu': 0.789, 'pos': 0.211, 'compound': 0.4939}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Hand', 'score': 2.2}]}, {'headline': 'Federal Judge Rules Fair Housing Law Protects Colorado LGBT Couple', 'sentiment': {'neg': 0.0, 'neu': 0.635, 'pos': 0.365, 'compound': 0.5574}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Fair', 'score': 1.3}, {'word': 'Protects', 'score': 1.3}]}, {'headline': 'Americans Persecuted By Egypt Regime Watch As Trump Embraces It', 'sentiment': {'neg': 0.204, 'neu': 0.796, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Persecuted', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Do Republicans Have Amnesia Over How They Treated Merrick Garland?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Why America’s Sick Health Care System Turns British Conservatives Queasy', 'sentiment': {'neg': 0.228, 'neu': 0.552, 'pos': 0.221, 'compound': -0.0258}, 'v_neg': [], 's_neg': [{'word': 'Sick', 'score': -2.3}], 'v_pos': [], 's_pos': [{'word': 'Care', 'score': 2.2}]}, {'headline': 'House Democrats Introduce New Social Security Expansion Bill', 'sentiment': {'neg': 0.0, 'neu': 0.745, 'pos': 0.255, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'Kansas City Votes To Eliminate Jail Time For Marijuana Possession', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Nikki Haley Asks Russia ‘How Many More Children Have To Die’ After Syria Gas Attack', 'sentiment': {'neg': 0.181, 'neu': 0.819, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Russia Moves To Label Jehovah’s Witnesses As ‘Extremists’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Man Arrested After Shooting At Fiancee’s Attempted Abductors', 'sentiment': {'neg': 0.307, 'neu': 0.693, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'Arrested', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump Casually Accuses Susan Rice Of Committing A Crime, Offers No Evidence', 'sentiment': {'neg': 0.474, 'neu': 0.351, 'pos': 0.175, 'compound': -0.7269}, 'v_neg': [{'word': 'Crime', 'score': -2.5}], 's_neg': [{'word': 'Accuses', 'score': -1.4}, {'word': 'No', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Congressman Used A Wealthy Conservative’s Money To Spread Fake News Across Texas, Prosecutors Say', 'sentiment': {'neg': 0.187, 'neu': 0.663, 'pos': 0.151, 'compound': -0.1531}, 'v_neg': [], 's_neg': [{'word': 'Fake', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'Wealthy', 'score': 1.5}]}, {'headline': 'Trump Says His Attitude Toward Syria Changed With Chemical Attack', 'sentiment': {'neg': 0.256, 'neu': 0.744, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'A Montana Special Election Could Deal A Huge Blow To Trump — But Democrats In Washington Are Staying Away', 'sentiment': {'neg': 0.0, 'neu': 0.737, 'pos': 0.263, 'compound': 0.6124}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Special', 'score': 1.7}, {'word': 'Huge', 'score': 1.3}]}, {'headline': 'Two Openly Gay Candidates Notch Historic Wins In Alaska Election', 'sentiment': {'neg': 0.0, 'neu': 0.709, 'pos': 0.291, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Wins', 'score': 2.7}], 's_pos': []}, {'headline': 'Girl Reports Escaping Kidnapper By Jumping From Truck Onto Highway', 'sentiment': {'neg': 0.0, 'neu': 0.882, 'pos': 0.118, 'compound': 0.0516}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'John McCain Says Republicans Will Regret ‘Nuclear Option,’ Backs It Anyway', 'sentiment': {'neg': 0.308, 'neu': 0.692, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'Regret', 'score': -1.8}], 'v_pos': [], 's_pos': []}, {'headline': 'Top Democrats To Headline March For Release Of Trump’s Tax Returns', 'sentiment': {'neg': 0.0, 'neu': 0.847, 'pos': 0.153, 'compound': 0.2023}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Top', 'score': 0.8}]}, {'headline': 'Experts: Syrian Chemical Attack Is Assad’s Message To The World Russia Blames Syrian Rebels For Deadly Gas Attack Report: Warplanes Mount Fresh Airstrikes In Syria', 'sentiment': {'neg': 0.324, 'neu': 0.606, 'pos': 0.07, 'compound': -0.8126}, 'v_neg': [], 's_neg': [{'word': 'Attack', 'score': -2.1}, {'word': 'Blames', 'score': -1.7}, {'word': 'Rebels', 'score': -0.8}, {'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'Fresh', 'score': 1.3}]}, {'headline': 'Experts: Syrian Chemical Attack Is Assad’s Message To The World', 'sentiment': {'neg': 0.256, 'neu': 0.744, 'pos': 0.0, 'compound': -0.4767}, 'v_neg': [], 's_neg': [{'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Russia Blames Syrian Rebels For Deadly Gas Attack', 'sentiment': {'neg': 0.603, 'neu': 0.397, 'pos': 0.0, 'compound': -0.765}, 'v_neg': [], 's_neg': [{'word': 'Blames', 'score': -1.7}, {'word': 'Rebels', 'score': -0.8}, {'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Report: Warplanes Mount Fresh Airstrikes In Syria', 'sentiment': {'neg': 0.0, 'neu': 0.723, 'pos': 0.277, 'compound': 0.3182}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Fresh', 'score': 1.3}]}, {'headline': 'Senator Wants Trump To Press China On Fentanyl Manufacturing', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'No, Elizabeth Warren Doesn’t Pay Women Less Than Men', 'sentiment': {'neg': 0.34, 'neu': 0.66, 'pos': 0.0, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'No', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump Declares End To ‘War On Coal,’ But Utility Companies Aren’t Buying It', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Minnesota Legislator Who Called Out White Male Colleagues Won’t Apologize', 'sentiment': {'neg': 0.0, 'neu': 0.865, 'pos': 0.135, 'compound': 0.1027}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'O’Reilly Once Said Female Anchors Should Be ‘Good-Looking Babe[s]’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Facebook Releases New Tools To Combat Revenge Porn', 'sentiment': {'neg': 0.492, 'neu': 0.508, 'pos': 0.0, 'compound': -0.7003}, 'v_neg': [{'word': 'Revenge', 'score': -2.4}], 's_neg': [{'word': 'Combat', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Ivanka Says She’ll Push For Women’s Equality — But Not In A Pushy Way Ivanka Trump Defends Her Role In The White House', 'sentiment': {'neg': 0.095, 'neu': 0.905, 'pos': 0.0, 'compound': -0.2732}, 'v_neg': [], 's_neg': [{'word': 'Pushy', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Ivanka Says She’ll Push For Women’s Equality — But Not In A Pushy Way', 'sentiment': {'neg': 0.16, 'neu': 0.84, 'pos': 0.0, 'compound': -0.2732}, 'v_neg': [], 's_neg': [{'word': 'Pushy', 'score': -1.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Ivanka Trump Defends Her Role In The White House', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Senator Stages All-Night Protest On Senate Floor Against Gorsuch Nomination', 'sentiment': {'neg': 0.182, 'neu': 0.818, 'pos': 0.0, 'compound': -0.25}, 'v_neg': [], 's_neg': [{'word': 'Protest', 'score': -1.0}], 'v_pos': [], 's_pos': []}, {'headline': 'Dem Congresswoman Calls For Investigation Into Trump’s Ties To Blackwater Founder', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trump Administration Won’t Routinely Separate Families At The Border After All', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Do you have info to share with HuffPost reporters? Here’s how.', 'sentiment': {'neg': 0.0, 'neu': 0.82, 'pos': 0.18, 'compound': 0.296}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'share', 'score': 1.2}]}, {'headline': 'Jimmy Kimmel Burns Jared Kushner’s Foreign Policy Cred In One Line', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'I Quit Co-Sleeping, And It Changed My Life', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The Internet Is Absolutely Loving Ivanka Trump’s ‘Petty’ Neighbor', 'sentiment': {'neg': 0.0, 'neu': 0.656, 'pos': 0.344, 'compound': 0.6361}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Loving', 'score': 2.9}], 's_pos': []}, {'headline': 'President Tired Of Grimy Old Man Stealing His Glory', 'sentiment': {'neg': 0.525, 'neu': 0.279, 'pos': 0.196, 'compound': -0.7096}, 'v_neg': [{'word': 'Stealing', 'score': -2.7}], 's_neg': [{'word': 'Tired', 'score': -1.9}, {'word': 'Grimy', 'score': -1.8}], 'v_pos': [{'word': 'Glory', 'score': 2.5}], 's_pos': []}, {'headline': 'This Dad Played A Prank On His Wife And People Are Loving It', 'sentiment': {'neg': 0.0, 'neu': 0.613, 'pos': 0.387, 'compound': 0.743}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Loving', 'score': 2.9}], 's_pos': [{'word': 'Played', 'score': 1.4}]}, {'headline': '', 'sentiment': {'neg': 0.0, 'neu': 0.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Michelle Obama Is Rocking Her Natural Hair And The Internet Can’t Even', 'sentiment': {'neg': 0.0, 'neu': 0.815, 'pos': 0.185, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Natural', 'score': 1.5}]}, {'headline': '‘O’Reilly Factor’ Loses About 15 Advertisers. Here Are The Ones That Stayed.', 'sentiment': {'neg': 0.173, 'neu': 0.827, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Loses', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Mama June Reveals Incredible 300 Pound Weight Loss After Surgery', 'sentiment': {'neg': 0.204, 'neu': 0.796, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Loss', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Pamela Anderson Stars In New Lingerie Campaign For Coco De Mer', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Just Wait Until You See Inside This Towering ‘Treehouse’ Home', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Why I Stopped Hooking Up With Guys In ‘Open’ Relationships', 'sentiment': {'neg': 0.192, 'neu': 0.808, 'pos': 0.0, 'compound': -0.2263}, 'v_neg': [], 's_neg': [{'word': 'Stopped', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Don Lemon Claps Back At Bill O’Reilly With A Jab About Harassment Claims', 'sentiment': {'neg': 0.241, 'neu': 0.759, 'pos': 0.0, 'compound': -0.5423}, 'v_neg': [{'word': 'Harassment', 'score': -2.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'This Is How Long Wine Actually Lasts After It’s Opened', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'This Phenomenal Teen Has Been Accepted Into All 8 Ivy League Schools', 'sentiment': {'neg': 0.0, 'neu': 0.826, 'pos': 0.174, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Accepted', 'score': 1.1}]}, {'headline': 'Steve Buscemi Believes The ‘Big Lebowski’ Women’s March Sign ‘Says It All’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}]
[{'headline': 'Global Crises Force Trump to Rethink Foreign Policy', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Trade Tensions Loom Over Trump-Xi Summit', 'sentiment': {'neg': 0.535, 'neu': 0.465, 'pos': 0.0, 'compound': -0.5574}, 'v_neg': [], 's_neg': [{'word': 'Tensions', 'score': -1.7}, {'word': 'Loom', 'score': -0.9}], 'v_pos': [], 's_pos': []}, {'headline': 'Trump Calls North Korea ‘Big Problem’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Father-Daughter Duo Accused of EB-5 Visa Fraud', 'sentiment': {'neg': 0.545, 'neu': 0.455, 'pos': 0.0, 'compound': -0.7184}, 'v_neg': [{'word': 'Fraud', 'score': -2.8}], 's_neg': [{'word': 'Accused', 'score': -1.2}], 'v_pos': [], 's_pos': []}, {'headline': 'EU Clears ChemChina’s $43 Billion Syngenta Deal With Conditions', 'sentiment': {'neg': 0.0, 'neu': 0.86, 'pos': 0.14, 'compound': 0.0772}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Lightbulbs Lose Shine at GE, as Firm Weighs Sale of Unit', 'sentiment': {'neg': 0.213, 'neu': 0.787, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'Lose', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Fed Officials Expect to Whittle Down Portfolio This Year: Minutes', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'South Korean Soccer Players Practice Passing, Shooting and Holding Their Ears', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'India Moves Mountains to Build Military Road to China', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Scientists Engineer Flexible, Faster Robo-Swimmer', 'sentiment': {'neg': 0.0, 'neu': 0.678, 'pos': 0.322, 'compound': 0.2263}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Flexible', 'score': 0.9}]}, {'headline': 'Sony Goes Commercial After Virtual-Reality Check', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Let China and Europe Fight It Out Over Data-Privacy Rights', 'sentiment': {'neg': 0.224, 'neu': 0.776, 'pos': 0.0, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'Fight', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': 'A Resolute Message for China', 'sentiment': {'neg': 0.0, 'neu': 0.588, 'pos': 0.412, 'compound': 0.2732}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Resolute', 'score': 1.1}]}, {'headline': 'For Syria, Words Won’t Be Enough', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The Flawed Case Against Pricing Carbon', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'In Britain, Hopes for a ‘Half-In’ Brexit Deal Linger', 'sentiment': {'neg': 0.0, 'neu': 0.714, 'pos': 0.286, 'compound': 0.4215}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Hopes', 'score': 1.8}]}, {'headline': 'The Internet’s Grade-Inflation Problem', 'sentiment': {'neg': 0.474, 'neu': 0.526, 'pos': 0.0, 'compound': -0.4019}, 'v_neg': [], 's_neg': [{'word': 'Problem', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Value of Trump’s Golf Clubs Lags Behind Investment Surge', 'sentiment': {'neg': 0.21, 'neu': 0.588, 'pos': 0.202, 'compound': -0.0258}, 'v_neg': [], 's_neg': [{'word': 'Lags', 'score': -1.5}], 'v_pos': [], 's_pos': [{'word': 'Value', 'score': 1.4}]}, {'headline': 'Oil Watchers See Little Price Gains for 2017', 'sentiment': {'neg': 0.0, 'neu': 0.767, 'pos': 0.233, 'compound': 0.2782}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Gains', 'score': 1.4}]}, {'headline': 'European Firms Head East for Bonds', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Republicans Blast CFPB, Alleging Slow Start to Wells Fargo Probe', 'sentiment': {'neg': 0.0, 'neu': 0.818, 'pos': 0.182, 'compound': 0.25}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Wells', 'score': 1.0}]}, {'headline': 'Apple Pay’s Growth Hits Hurdles: Wary Shoppers, Confused Clerks', 'sentiment': {'neg': 0.193, 'neu': 0.588, 'pos': 0.218, 'compound': 0.0772}, 'v_neg': [], 's_neg': [{'word': 'Confused', 'score': -1.3}], 'v_pos': [], 's_pos': [{'word': 'Growth', 'score': 1.6}]}, {'headline': 'Jeff Bezos Sees ‘Golden Age’ for Entrepreneurs in Space', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Facebook Takes Aim at ‘Revenge Porn’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Elizabeth Holmes Owes Theranos $25 Million', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Panera Bread Agrees to $7.16 Billion Buyout by JAB Holding', 'sentiment': {'neg': 0.0, 'neu': 0.833, 'pos': 0.167, 'compound': 0.2023}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Agrees', 'score': 0.8}]}, {'headline': 'MGM to Buy Stakes in Epix From Viacom, Lions Gate in $1 Billion Deal', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Schneider National Raises $550 Million in IPO', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'How Target Botched Its Response to the North Carolina Bathroom Law', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Iraq Attack Kills 35, Highlights Security Challenge', 'sentiment': {'neg': 0.496, 'neu': 0.226, 'pos': 0.278, 'compound': -0.5994}, 'v_neg': [{'word': 'Kills', 'score': -2.5}], 's_neg': [{'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'ANC Leaders Rally Round South Africa’s President Zuma', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Muslim Births Expected to Outpace Christian Births Within 20 Years', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Homeland Security Secretary Doesn’t See Building a Wall Along U.S.-Mexico Border', 'sentiment': {'neg': 0.0, 'neu': 0.789, 'pos': 0.211, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'Trump Pivots on Syria Policy', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'North Korea Launches Missile Off of Korean Peninsula', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Death Toll in Suspected Syria Gas Attack Rises', 'sentiment': {'neg': 0.64, 'neu': 0.36, 'pos': 0.0, 'compound': -0.836}, 'v_neg': [{'word': 'Death', 'score': -2.9}], 's_neg': [{'word': 'Suspected', 'score': -0.9}, {'word': 'Attack', 'score': -2.1}], 'v_pos': [], 's_pos': []}, {'headline': 'Judge Denies DOJ Request to Delay Baltimore Police Hearing', 'sentiment': {'neg': 0.421, 'neu': 0.579, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [], 's_neg': [{'word': 'Denies', 'score': -1.8}, {'word': 'Delay', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'When People Die at Sea, Cruise Operators Often Get a Pass', 'sentiment': {'neg': 0.302, 'neu': 0.698, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [{'word': 'Die', 'score': -2.9}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The Right Opens Front in Fight Over Rhodes Scholars’ Namesake', 'sentiment': {'neg': 0.224, 'neu': 0.776, 'pos': 0.0, 'compound': -0.3818}, 'v_neg': [], 's_neg': [{'word': 'Fight', 'score': -1.6}], 'v_pos': [], 's_pos': []}, {'headline': 'Bannon Removed From National Security Council', 'sentiment': {'neg': 0.0, 'neu': 0.676, 'pos': 0.324, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Security', 'score': 1.4}]}, {'headline': 'White House Takes Lead on Tax Plan', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Claire McCaskill Denounces ‘Un-American’ Extreme Vetting Proposals', 'sentiment': {'neg': 0.326, 'neu': 0.674, 'pos': 0.0, 'compound': -0.4404}, 'v_neg': [], 's_neg': [{'word': 'Denounces', 'score': -1.9}], 'v_pos': [], 's_pos': []}, {'headline': 'U.S. Nonmanufacturing Activity Expands at Slower Pace', 'sentiment': {'neg': 0.0, 'neu': 0.811, 'pos': 0.189, 'compound': 0.1027}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Lacker’s Resignation After Leak Deals Blow to the Fed', 'sentiment': {'neg': 0.397, 'neu': 0.603, 'pos': 0.0, 'compound': -0.5574}, 'v_neg': [], 's_neg': [{'word': 'Resignation', 'score': -1.2}, {'word': 'Leak', 'score': -1.4}], 'v_pos': [], 's_pos': []}, {'headline': 'Private Sector Reports Stronger-Than-Expected Boost to Payrolls in March', 'sentiment': {'neg': 0.0, 'neu': 0.748, 'pos': 0.252, 'compound': 0.4019}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Boost', 'score': 1.7}]}, {'headline': 'Megyn Kelly’s Exit From Fox News Is No Longer in Dispute', 'sentiment': {'neg': 0.353, 'neu': 0.647, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [], 's_neg': [{'word': 'No', 'score': -1.2}, {'word': 'Dispute', 'score': -1.7}], 'v_pos': [], 's_pos': []}, {'headline': 'Walgreens CEO Says Rite Aid Deal Closing Soon', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Mallinckrodt Leaves Pharmaceutical Trade Group Ahead of Potential Changes to Bylaws', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Fuel-Cell Maker to Help Amazon Improve Warehouse Efficiency', 'sentiment': {'neg': 0.0, 'neu': 0.29, 'pos': 0.71, 'compound': 0.8316}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Help', 'score': 1.7}, {'word': 'Improve', 'score': 1.9}, {'word': 'Efficiency', 'score': 1.5}]}, {'headline': 'Arianna Huffington Leads Crusade to Deal With Uber’s Scandals', 'sentiment': {'neg': 0.286, 'neu': 0.714, 'pos': 0.0, 'compound': -0.4939}, 'v_neg': [], 's_neg': [{'word': 'Scandals', 'score': -2.2}], 'v_pos': [], 's_pos': []}, {'headline': 'Zoox Making a Safe Bet on Rosekind', 'sentiment': {'neg': 0.0, 'neu': 0.633, 'pos': 0.367, 'compound': 0.4404}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Safe', 'score': 1.9}]}, {'headline': 'Stocks Give Up Gains After Fed Minutes', 'sentiment': {'neg': 0.0, 'neu': 0.714, 'pos': 0.286, 'compound': 0.34}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Gains', 'score': 1.4}]}, {'headline': 'Green-Energy PACE Home Loans Catch Congress’s Ire', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Wells Fargo’s Aggressive Sales Tactics Hit Small Firms', 'sentiment': {'neg': 0.167, 'neu': 0.625, 'pos': 0.208, 'compound': 0.1027}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Wells', 'score': 1.0}]}, {'headline': 'Jane Fonda Buys Los Angeles Townhome', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'When Home Buyers Change Their Minds', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Farm-to-Condo Movement Stakes Its Claim to Brooklyn Rooftop', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Writing China: The Return of Chinese Soul-Seaching', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Acupuncture and Amusement Parks: China Rolls Out Service-Economy Gauge', 'sentiment': {'neg': 0.0, 'neu': 0.762, 'pos': 0.238, 'compound': 0.3612}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Amusement', 'score': 1.5}]}, {'headline': 'Li Na Is China’s Most Bankable Athlete—Even in Retirement', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The Back-Door Route to a European Vacation', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Can You Update a Passover Menu and Still Satisfy Traditionalists?', 'sentiment': {'neg': 0.0, 'neu': 0.727, 'pos': 0.273, 'compound': 0.4588}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Satisfy', 'score': 2.0}]}, {'headline': 'Spring Quiche With Mushrooms and Asparagus: 35-Minute Recipe', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Grandma’s Corvette: Star of the Family', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'A War on Graffiti in Brazil', 'sentiment': {'neg': 0.494, 'neu': 0.506, 'pos': 0.0, 'compound': -0.5994}, 'v_neg': [{'word': 'War', 'score': -2.9}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Addicted to Social Media? Try These Books', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Remaking Our World Order', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Matisse’s Objects of Inspiration', 'sentiment': {'neg': 0.0, 'neu': 0.469, 'pos': 0.531, 'compound': 0.5267}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Inspiration', 'score': 2.4}], 's_pos': []}, {'headline': 'Photos of the Day: April 5', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'More Brands Withdraw From O’Reilly’s Show on Fox News', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'McDonald’s U.S. Marketing Chief to Leave', 'sentiment': {'neg': 0.194, 'neu': 0.806, 'pos': 0.0, 'compound': -0.0516}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'CMO Today: Amazon Scores Thursday NFL Package', 'sentiment': {'neg': 0.0, 'neu': 0.779, 'pos': 0.221, 'compound': 0.1779}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Munich Re’s Big Data Effort Paves Way to New Insurance Products', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Augmented Reality to Revolutionize How Companies Manage Supply Chains, Says MIT Researcher', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Data Center of the Future: Smaller, More Specialized, Says Lenovo’s Stevenson', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Corporate Pension Fees Quadruple Since 2012', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Chinese Firms Shy Away From European Debt', 'sentiment': {'neg': 0.474, 'neu': 0.526, 'pos': 0.0, 'compound': -0.5423}, 'v_neg': [], 's_neg': [{'word': 'Shy', 'score': -1.0}, {'word': 'Debt', 'score': -1.5}], 'v_pos': [], 's_pos': []}, {'headline': 'Lloyd’s of London to Set Up EU Subsidiary in Brussels', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'U.K. Gets Tough on Corp Governance, Executive Pay', 'sentiment': {'neg': 0.326, 'neu': 0.674, 'pos': 0.0, 'compound': -0.2263}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Corruption Currents: Judge Seeks Conflict Hearing in Sanctions Trial', 'sentiment': {'neg': 0.223, 'neu': 0.777, 'pos': 0.0, 'compound': -0.3182}, 'v_neg': [], 's_neg': [{'word': 'Conflict', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Crisis of the Week: Google Faces Advertisers’ Wrath', 'sentiment': {'neg': 0.369, 'neu': 0.631, 'pos': 0.0, 'compound': -0.6249}, 'v_neg': [{'word': 'Crisis', 'score': -3.1}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Why Costco Loves Store Sales: Try Shipping a Tub of Mayo', 'sentiment': {'neg': 0.0, 'neu': 0.709, 'pos': 0.291, 'compound': 0.5719}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Loves', 'score': 2.7}], 's_pos': []}, {'headline': 'Can Twitter Predict Under Armour’s Future?', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'New Signs That Shake Shack Has Lost Its Buzz', 'sentiment': {'neg': 0.364, 'neu': 0.636, 'pos': 0.0, 'compound': -0.4588}, 'v_neg': [], 's_neg': [{'word': 'Lost', 'score': -1.3}], 'v_pos': [], 's_pos': []}, {'headline': 'Throwing Some Cold Water on the iPhone Hype', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'The stock market just blew its biggest lead since February 2016', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Post offices could give low-income Americans access to financial services', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': '‘S-Town’ podcast sheds light on the rising suicide rate among middle-aged Americans', 'sentiment': {'neg': 0.29, 'neu': 0.71, 'pos': 0.0, 'compound': -0.6705}, 'v_neg': [{'word': 'suicide', 'score': -3.5}], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Carnegie Family’s One-Time Summer Home Relisted With $8M Discount', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'New York’s Townhouse Market Got Off to a Slow Start This Year', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Toronto Home Prices Soared 33% in March', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Alexa and Cortana May Be Heading to the Office', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Podcast: The Benefits and Perils of Being Funny at Work', 'sentiment': {'neg': 0.0, 'neu': 0.593, 'pos': 0.407, 'compound': 0.6705}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': [{'word': 'Benefits', 'score': 1.6}, {'word': 'Funny', 'score': 1.9}]}, {'headline': 'Why Leaders Should Write Their Company’s Obituary', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Balancing Risks and Rewards in Bonds', 'sentiment': {'neg': 0.228, 'neu': 0.435, 'pos': 0.337, 'compound': 0.25}, 'v_neg': [], 's_neg': [{'word': 'Risks', 'score': -1.1}], 'v_pos': [], 's_pos': [{'word': 'Rewards', 'score': 2.1}]}, {'headline': "Meet the Would-Be 'Carrot King'", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "'Extreme Vetting' Would Target Foreigners' Cellphones", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Opinion Journal: Make Your Bed!', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': "Barron's Bounce: CarMax in the Crusher", 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Sessions Presses Shift at Justice Department', 'sentiment': {'neg': 0.0, 'neu': 0.595, 'pos': 0.405, 'compound': 0.5267}, 'v_neg': [], 's_neg': [], 'v_pos': [{'word': 'Justice', 'score': 2.4}], 's_pos': []}, {'headline': 'U.S. Considers Far-Reaching Steps for ‘Extreme Vetting’', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}, {'headline': 'Senate on the Brink of ‘Nuclear Option’ in Gorsuch Vote', 'sentiment': {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}, 'v_neg': [], 's_neg': [], 'v_pos': [], 's_pos': []}]
['us/2017-04-06.json', 'us/last7.json', 'us/2017-04-05.json']
In [ ]:
Content source: ri/news-emote-analyser
Similar notebooks: