-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
23 lines (18 loc) · 819 Bytes
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import random, base64
數量 = 10 # 換成數量
用戶id = "1234567890" # 換成用戶id
def generate_token(id:str):
characs = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
characs2 = '01zr'
id_encoded = base64.b64encode(bytes(id, 'utf-8'))
random1 = f".X{random.choices(characs2, k=1)}{random.choices(characs, k=4)}.{random.choices(characs, k=27)}"
random2 = random1.replace("'", "")
random3 = random2.replace(",", "")
random4 = random3.replace("[", "")
random5 = random4.replace("]", "")
random_final = random5.replace(" ", "")
random_token = (id_encoded.decode('utf-8') + random_final).replace("=", "")
return random_token
for i in range(數量):
token = generate_token(用戶id)
print(token)