From 8542ebd0aeb1c2bed65d72bf561f28ccfcdcee9e Mon Sep 17 00:00:00 2001 From: andrewso <9V5f1FkzI2LD> Date: Sat, 10 Oct 2020 22:55:45 +0100 Subject: [PATCH] [10.10.20] Testing --- src/tweets/collector.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tweets/collector.py b/src/tweets/collector.py index def7449..70b4264 100644 --- a/src/tweets/collector.py +++ b/src/tweets/collector.py @@ -170,6 +170,7 @@ def createHourJob(): log("Extracting sentiment scores...", 'INFO') if len(hourStack) != 0: + log("Boop", 'INFO') for item in hourStack: ovPos = ovPos + item['pos'] ovNeu = ovNeu + item['neu'] @@ -182,7 +183,7 @@ def createHourJob(): neg = round(ovNeg/len(hourStack), 3) compound = round(ovCompound/len(hourStack), 3) - print(pos, neu, neg, compound, type) + print(pos, neu, neg, compound) hourStack.clear()