File size: 3,042 Bytes
b7a7f32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
from typing import List
from pydantic import Json

courses: List[Json] = [
    {
        "course_code": "MCSC201",
        "course_name": "Discrete Structures / Mathematics",
        "course_credit": 3,
        "department_id": 10,
    },
    {
        "course_code": "COMP202",
        "course_name": "Data Structures and Algorithm",
        "course_credit": 3,
        "department_id": 1,
    },
    {
        "course_code": "MATH208",
        "course_name": "Statistics and Probability",
        "course_credit": 3,
        "department_id": 10,
    },
    {
        "course_code": "EEEG211",
        "course_name": "Electronics Engineering I",
        "course_credit": 2,
        "department_id": 3,
    },
    {
        "course_code": "EEEG202",
        "course_name": "Digital Logics and Circuits",
        "course_credit": 2,
        "department_id": 3,
    },
    {
        "course_code": "ENVE101",
        "course_name": "Introduction to Environmental Engineering",
        "course_credit": 2,
        "department_id": 11,
    },
    {
        "course_code": "ENVE201",
        "course_name": "Environmental Engineering Advanced",
        "course_credit": 2,
        "department_id": 11,
    },
    {
        "course_code": "ENGG111",
        "course_name": "Elements of Engineering",
        "course_credit": 2,
        "department_id": 2,
    },
    {
        "course_code": "ENGG211",
        "course_name": "Advanced Engineering",
        "course_credit": 2,
        "department_id": 2,
    },
    {
        "course_code": "LLB101",
        "course_name": "Basics of Law",
        "course_credit": 3,
        "department_id": 4,
    },
    {
        "course_code": "LLB202",
        "course_name": "Criminal Law",
        "course_credit": 4,
        "department_id": 4,
    },
    {
        "course_code": "IST101",
        "course_name": "Basic Information Systems and Tecnology",
        "course_credit": 2,
        "department_id": 5,
    },
    {
        "course_code": "BMS222",
        "course_name": "Advanced Business and Management Studies",
        "course_credit": 3,
        "department_id": 5,
    },
    {
        "course_code": "ORTH321",
        "course_name": "Orthology",
        "course_credit": 4,
        "department_id": 6,
    },
    {
        "course_code": "RAD298",
        "course_name": "Radiology [indepth]",
        "course_credit": 5,
        "department_id": 6,
    },
    {
        "course_code": "MUSC101",
        "course_name": "Introduction to Music Theory",
        "course_credit": 2,
        "department_id": 7,
    },
    {
        "course_code": "MUSC234",
        "course_name": "Music Theory II [indepth]",
        "course_credit": 4,
        "department_id": 7,
    },
    {
        "course_code": "LIT101",
        "course_name": "Eduction in Literature I [basic]",
        "course_credit": 2,
        "department_id": 8,
    },
    {
        "course_code": "LIT234",
        "course_name": "Literature II [indepth]",
        "course_credit": 4,
        "department_id": 8,
    },
]