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
2023-03-04 08:51:56 +00:00
def hash_(s):
2021-10-12 15:02:36 +00:00
days = int(time.strftime("%d", time.localtime(time.time()))) + 31 * int(
time.strftime("%m", time.localtime(time.time()))) + 77
2023-03-04 08:51:56 +00:00
return (days * hash(s)) >> 8