[11.10.20] Removal of Testing

This commit is contained in:
andrewso 2020-10-11 14:03:45 +01:00
parent 700eaaa73e
commit 0b52e13a67

View File

@ -103,13 +103,10 @@ class Listener(StreamListener):
def processTweet():
log("Dump Stack {}".format(len(dumpStack)), 'INFO')
processStack = dumpStack.copy()
dumpStack.clear()
log("Processing Tweets Stack...", 'INFO')
log(len(processStack), 'INFO')
if len(processStack) != 0:
for tweet in processStack:
@ -172,10 +169,7 @@ def createHourJob():
log("Extracting sentiment scores...", 'INFO')
log(len(hourStack), 'INFO')
if len(hourStack) != 0:
log("Boop", 'INFO')
for item in hourStack:
ovPos = ovPos + item['pos']
ovNeu = ovNeu + item['neu']
@ -188,7 +182,8 @@ def createHourJob():
neg = round(ovNeg/len(hourStack), 3)
compound = round(ovCompound/len(hourStack), 3)
print(pos, neu, neg, compound)
if type == "bitcoin":
type = 'btc_usd'
hourStack.clear()
@ -206,7 +201,6 @@ def collectorMain(hashtag):
for i in range(len(hashtag)):
Thread(target=collector, args=[hashtag[i]]).start()
sleep(5)
createHourJob()
while True: