Как конвертировать секунды с миллисекундами в часы и минуты? discord.py
Код для которого нужно конвертировать:
@bot.event
async def on_voice_state_update(member, before, after):
with open('c:/Python/TOXBOT/database.json', 'r', encoding = "utf-8") as file:
data = json.load(file)
if before.channel is None and after.channel is not None:
t1 = time.time()
data[str(member.id)]['Онлайн'] = t1
elif before.channel is not None and after.channel is None and member.id in tdict:
t2 = time.time()
print(t2-tdict[member.id])
data[str(member.id)]['Онлайн'] + data[str(member.id)]
with open('c:/Python/TOXBOT/database.json', 'w', encoding = "utf-8") as file:
json.dump(data, file)