tuxbot-bot/tuxbot/cogs/Logs/functions/utils.py

28 lines
637 B
Python
Raw Normal View History

from collections import Counter
2021-03-31 16:08:41 +00:00
from typing import Dict
2021-05-16 21:21:27 +00:00
def sort_by(_events: Counter) -> Dict[str, dict]:
2021-04-21 16:28:09 +00:00
majors = (
"guild",
"channel",
"message",
"invite",
"integration",
"presence",
"voice",
"other",
2021-04-21 16:28:09 +00:00
)
2021-03-31 16:08:41 +00:00
sorted_events: Dict[str, Dict] = {m: {} for m in majors}
for event, count in _events:
done = False
for m in majors:
if event.lower().startswith(m):
sorted_events[m][event] = count
done = True
if not done:
sorted_events["other"][event] = count
return sorted_events