-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathinfo.py
33 lines (22 loc) · 1.27 KB
/
info.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
##################################################################
# #
# Update the following variables with your own personal details: #
# #
##################################################################
# Driving license number (Example: MORGA657054SM9IJ)
licenceNumber = '******'
# Application reference number
# (This number was given when you booked the test. It can be found on your confirmation email.)
theoryNumber = '*****'
# Email sending details
# The email addresses you wish to send notifications to
emailAddresses = ['[email protected]', '[email protected]']
emailSubject = "DSA Cancellations"
emailFrom = "[email protected]"
# Enter your gmail account details here so that the script can send emails
emailUsername = '[email protected]'
emailPassword = 'password' # the password to your "[email protected]" account
# Change this (at your own risk) if you don't use gmail (e.g. to hotmail/yahoo/etc smtp servers
emailSMTPserver = 'smtp.gmail.com'
# Put in your current test date in the format "Thursday 4 July 2013 2:00pm"; you will be alerted if an earlier slot appears
myTestDateString = 'Monday 23 October 2017 12:33pm'