diff --git a/ds.py b/ds.py index 673d54d..36125c9 100644 --- a/ds.py +++ b/ds.py @@ -221,6 +221,11 @@ async def time2cdm(message): amount = time*course if update_time(API_TOKEN, id, '0'): if coins_add(API_TOKEN, id, str(amount)): + # Статистика + stat = read('stat.json') + date = datetime.today().strftime('%Y-%m-%d') + stat[date]['time2cdm'] += amount + write(stat, 'stat.json') await send(f'''Вы успешно конвертировали время на сервере в `{str(amount)}` CDM.''') async def stats(message): diff --git a/tg.py b/tg.py index 33f7b58..2411d5d 100644 --- a/tg.py +++ b/tg.py @@ -210,6 +210,11 @@ def time2cdm(message): amount = time*course if update_time(API_TOKEN, id, '0'): if coins_add(API_TOKEN, id, str(amount)): + # Статистика + stat = read('stat.json') + date = datetime.today().strftime('%Y-%m-%d') + stat[date]['time2cdm'] += amount + write(stat, 'stat.json') bot.reply_to(message, f'''Вы успешно конвертировали время на сервере в {hcode(str(amount))} CDM.''' , parse_mode='HTML')