Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/maimai/libraries/tool.py

8 lines
201 B
Python
Raw Normal View History

2021-10-12 15:02:36 +00:00
import time
def hash(qq: int):
days = int(time.strftime("%d", time.localtime(time.time()))) + 31 * int(
time.strftime("%m", time.localtime(time.time()))) + 77
return (days * qq) >> 8