4 # Copyright (c) 2016-2020 by Someone <someone@somenet.org> (aka. Jan Vales <jan@jvales.net>)
5 # published under MIT-License
7 # This is started by the init script.
13 with open("/tmp/somebot_command_stats.json", "r", encoding="utf-8") as f:
15 for c, count in sorted(stats.items()):
16 print(c+" ["+str(count)+"]")
17 except FileNotFoundError: