Spaces:
Sleeping
Sleeping
File size: 153 Bytes
69a03ee | 1 2 3 4 5 6 7 8 9 | from logs import USAGE_LOGS
def top_users():
return sorted(
USAGE_LOGS.items(),
key=lambda x: len(x[1]),
reverse=True
)
|