forked from Strip3s/PhoenixBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
59 lines (41 loc) · 1.07 KB
/
settings.py
File metadata and controls
59 lines (41 loc) · 1.07 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
####### Global Variables ######
global webhook
webhook = ""
global webhook_on_browser
webhook_on_browser = True
global webhook_on_order
webhook_on_order = True
global webhook_on_failed
webhook_on_failed = True
global browser_on_failed
browser_on_failed = True
global dont_buy
dont_buy = False
global notify_only_checkbox
notify_only_checkbox = False
# TODO: Rename this to match proper format
global userAgent
userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.20 Safari/537.36"
global random_delay_start
random_delay_start = 10
global random_delay_stop
random_delay_stop = 40
global bestbuy_user
bestbuy_user = ""
global bestbuy_pass
bestbuy_pass = ""
global target_user
target_user = ""
global target_pass
target_pass = ""
global gamestop_user
gamestop_user = ""
global gamestop_pass
gamestop_pass = ""
global gmail_account_email
gmail_account_email = ""
global gmail_account_password
gmail_account_password = ""
global notification_email
notification_email = ""
#################################################