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