cli: integrate with stats reported by the modules

This commit is contained in:
Dima Gerasimov 2020-05-25 11:27:54 +01:00
parent d890599c7c
commit 7bd7cc9228
7 changed files with 49 additions and 4 deletions

View file

@ -90,3 +90,10 @@ def get_cid_map(bfile: str):
def print_checkins():
print(get_checkins())
def stats():
from more_itertools import ilen
return {
'checkins': ilen(get_checkins()),
}