[14.10.20] Testing

This commit is contained in:
andrewso 2020-10-14 13:17:16 +01:00
parent fba738d690
commit 1d459420de

View File

@ -117,7 +117,7 @@ def processTweet():
if len(processStack) != 0:
for tweet in processStack:
removedLines = fixLines(str(tweet))
removedLines = fixLines(tweet["tweet"])
removedSpecialChars = cleanTweet(removedLines)
removedSpacing = removeSpacing(removedSpecialChars[0])
@ -140,7 +140,7 @@ def processTweet():
pos, neu, neg, compound = callSentimentAnalyser(cleanedTweet)
if compound != 0.0 or neu <= 0.8:
hourTweet = {'pos': 1, 'neu': 1, 'neg': 1, 'compound': 1, 'type': ""}
hourTweet = {'pos': pos, 'neu': neu, 'neg': neg, 'compound': compound, 'type': tweet["type"]}
hourStack.append(hourTweet)
processStack.clear()