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
2023-03-04 16:51:56 +08:00

7 lines
201 B
Python

import time
def hash_(s):
days = int(time.strftime("%d", time.localtime(time.time()))) + 31 * int(
time.strftime("%m", time.localtime(time.time()))) + 77
return (days * hash(s)) >> 8