UPNISO_API / analytics.py
eishit32's picture
Create analytics.py
69a03ee verified
Raw
History Blame Contribute Delete
153 Bytes
from logs import USAGE_LOGS
def top_users():
return sorted(
USAGE_LOGS.items(),
key=lambda x: len(x[1]),
reverse=True
)