-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.py
More file actions
38 lines (38 loc) · 1.04 KB
/
config.py
File metadata and controls
38 lines (38 loc) · 1.04 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
# Config Options
# Which semester to enroll in (which radio button to click starting from 1)
radnum = 2
# Wait for 12AM to enroll
waitUntil12AM = True
# Wait until 3 minutes before 12AM to start the script
# TODO: Make time configurable
waitTimerEnable = False
# Restart the script if an error occurs
restartOnError = True
# Dark Mode
darkMode = True
# TOTP Support (2FA)
useTOTP = True
# [Windows, Mac, Linux] Brave Support (instead of Chrome or Edge)
useBrave = False
# [Windows] Microsoft Edge Support (instead of Chrome)
useEdge = True
# Discord Webhook Integration
sendDiscordNotification = False
discordWebhookURL = ""
# File to save results to, leave as "None" to disable
exportResults = True
# Ntfy Notification
sendntfyNotification = False
ntfyURL = "https://ntfy.example.com/python-auto-register"
ntfyRequiresAuth = False
ntfyUser = ""
ntfyPswd = ""
# Email Notification with results
sendEmailNotification = False
emailAddress = ""
# SMTP Settings for email notification
smtpServer = ""
smtpPort = 0
smtpTLS = True
smtpUsername = ""
smtpPassword = ""