-
Notifications
You must be signed in to change notification settings - Fork 2
/
handler.py
40 lines (27 loc) · 877 Bytes
/
handler.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import client
import json
import logger
with open("config.json") as data:
config = json.load(data)
def handler(choice):
if choice == 1:
logger.log("Starting to Create EMAIL VERIFIED ACCS")
if config['keeprunning'] == "yes":
while True:
client.handleregister_normal()
else:
client.handleregister_normal()
if choice == 2:
logger.log("Starting to Create FULLY VERIFIED ACCS")
if config['keeprunning'] == "yes":
while True:
client.handleregister_phone()
else:
client.handleregister_phone()
if choice == 3:
logger.log("Starting to Create Unverified ACCS")
if config['keeprunning'] == "yes":
while True:
client.handleunverified()
else:
client.handleunverified()