-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.py
More file actions
31 lines (29 loc) · 947 Bytes
/
Copy pathconfig.py
File metadata and controls
31 lines (29 loc) · 947 Bytes
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
from models.cap_subject import CAPSubject
from models.explanation_file import ExplanationFile
CAP_BASE_URL: str = "https://cap.rcpet.edu.tw/exam/"
CAP_START_YEAR: int = 104
CAP_END_YEAR: int = 113
CAP_EXPLANATION_FILES: dict[int, list[ExplanationFile]] = {
112: [
ExplanationFile(
file_id="1dxpLuVA8X-9wMv5iK_K2c8AmfZ0Pgz9D",
subject=CAPSubject.CHINESE,
),
ExplanationFile(
file_id="1SDTOVNmX3UqJIXiRZiKxh7Pl9f0me5Fg",
subject=CAPSubject.ENGLISH_Reading,
),
ExplanationFile(
file_id="1oO4j39xfMMracV5jT4HNmXTsZEpW7XGU",
subject=CAPSubject.MATH,
),
ExplanationFile(
file_id="1QSjEnBstAA2fCZ7u9wdICHw7FvhgywkB",
subject=CAPSubject.SOCIETY,
),
ExplanationFile(
file_id="1jcAH0HTMyvSH9QXSyANq6upNuU-AdGBh",
subject=CAPSubject.NATURE,
),
]
}