-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.config.yaml
More file actions
89 lines (74 loc) · 2.09 KB
/
example.config.yaml
File metadata and controls
89 lines (74 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# 1. Create a copy of this file and name it "config.yaml"
# 2. Make the required changes inside it
# 3. Run the program
# Your Blackboard login
url: https://cuchd.blackboard.com/
credentials:
username: 21MCA2284
password: Your_Password_123
# Duration of each lecture and entry relaxation in military time
lecture_duration: "0040"
entry_relaxation: "0010"
# Your subjects as visible on your Blackboard (case-sensitive)
# Also, declare shorthands for each subject here (like 'pp', 'ca')
subjects:
- &pp "Python Programming"
- &ca "Computing Aptitude"
- &apt "Aptitude - 1"
- &ss "Soft Skills -1"
- &aip "Advanced Internet Programming"
- &aip_lab "Advanced Internet Programming Lab"
# Your weekly timetable (below)
#
# For each day:
#
# On the left is the lecture time (military time)
# On the right is the lecture subject (using the shorthand you declared earlier)
#
# You only need to add / remove lectures as required
time_table:
Monday:
"0940": *ca
"1030": *ca
"1120": *pp
"1210": *pp
Tuesday:
"0940": *ss
"1030": *ss
"1120": *apt
"1210": *apt
"1400": *aip
"1450": *pp
Wednesday:
"0940": *ss
"1030": *ss
"1120": *aip
"1310": *pp
Thursday:
"0940": *aip_lab
"1030": *aip_lab
"1120": *aip
"1310": *pp
"1400": *pp
Friday:
"0940": *aip_lab
"1030": *aip_lab
"1120": *ca
"1210": *ca
"1400": *apt
"1450": *apt
#############################################
# #
# #
# Author: adizcode #
# Special thanks: vishaltanwar96 #
# #
# #
# This document is written in YAML #
# #
# #
# Learn YAML in Y minutes #
# https://learnxinyminutes.com/docs/yaml/ #
# #
# #
#############################################