better processing

This commit is contained in:
Torma Kristóf 2021-04-25 13:02:15 +02:00
parent 0a17d98781
commit 625b7926eb
3 changed files with 21 additions and 3 deletions

View File

@ -18,4 +18,10 @@ try:
consumer.close()
except KeyboardInterrupt:
consumer.close()
print(DATETIMES)
dt = {}
for datetime in DATETIMES:
dts = datetime.strftime("%m/%d/%Y, %H:%M:%S")
if dts not in dt:
dt[strftime("%m/%d/%Y, %H:%M:%S")] = 1
else:
dt[strftime("%m/%d/%Y, %H:%M:%S")] +=1

View File

@ -24,4 +24,10 @@ try:
channel.start_consuming()
except KeyboardInterrupt:
connection.close()
print(DATETIMES)
dt = {}
for datetime in DATETIMES:
dts = datetime.strftime("%m/%d/%Y, %H:%M:%S")
if dts not in dt:
dt[strftime("%m/%d/%Y, %H:%M:%S")] = 1
else:
dt[strftime("%m/%d/%Y, %H:%M:%S")] +=1

View File

@ -18,4 +18,10 @@ try:
DATETIMES.append(datetime.now())
except KeyboardInterrupt:
socket.close()
print(DATETIMES)
dt = {}
for datetime in DATETIMES:
dts = datetime.strftime("%m/%d/%Y, %H:%M:%S")
if dts not in dt:
dt[strftime("%m/%d/%Y, %H:%M:%S")] = 1
else:
dt[strftime("%m/%d/%Y, %H:%M:%S")] +=1