File size: 3,566 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
from typing import List
from pydantic import Json

from datetime import datetime, timedelta

classSessions: List[Json] = [
    {
        "start_time": datetime.utcnow() + timedelta(hours=-1),
        "is_active": True,
        "instructor": [10, 9],
        "course_id": 1,
        "group_id": 3,
        "description": "Mathematical Structures, what are they?",
        "end_time": datetime.utcnow() + timedelta(hours=2),
    },
    {
        "start_time": datetime.utcnow() + timedelta(hours=2),
        "is_active": True,
        "instructor": [10, 9],
        "course_id": 1,
        "group_id": 3,
        "description": "This is another class session",
        "end_time": datetime.utcnow() + timedelta(hours=4),
    },
    {
        "start_time": datetime(2021, 8, 20, 16, 00, 00),
        "is_active": True,
        "instructor": [8, 9],
        "course_id": 3,
        "group_id": 3,
        "description": "Starting with the Intro to Environmental Sustainability",
        "end_time": datetime(2021, 8, 20, 18, 00, 00),
    },
    {
        "start_time": datetime(2021, 8, 19, 20, 00, 00),
        "is_active": True,
        "instructor": [8],
        "course_id": 2,
        "group_id": 3,
        "description": "Starting with Algorithms, and Time Complexity of Algorithms",
        "end_time": datetime(2021, 8, 19, 22, 00, 00),
    },
    {
        "start_time": datetime(2021, 3, 4, 13, 00, 00),
        "is_active": True,
        "instructor": [8],
        "course_id": 4,
        "group_id": 3,
        "description": "Green Energy and its Principles indepth discussion",
        "end_time": datetime(2021, 3, 4, 15, 00, 00),
    },
    {
        "start_time": datetime(2021, 4, 4, 16, 00, 00),
        "is_active": True,
        "instructor": [9, 10],
        "course_id": 3,
        "group_id": 1,
        "description": "Starting with the Intro to Environmental Sustainability",
        "end_time": datetime(2021, 4, 4, 19, 00, 00),
    },
    {
        "start_time": datetime(2021, 8, 2, 9, 00, 00),
        "is_active": True,
        "instructor": [10, 8],
        "course_id": 7,
        "group_id": 9,
        "description": "Presentation of the Fundamental definitions stated in law, and Discussion based around it.",
        "end_time": datetime(2021, 8, 2, 12, 00, 00),
    },
    {
        "start_time": datetime(2021, 7, 7, 15, 00, 00),
        "is_active": True,
        "instructor": [9],
        "course_id": 12,
        "group_id": 10,
        "description": "Radiology.",
        "end_time": datetime(2021, 7, 7, 18, 00, 00),
    },
    {
        "start_time": datetime(2021, 1, 6, 13, 00, 00),
        "is_active": True,
        "instructor": [9],
        "course_id": 10,
        "group_id": 7,
        "description": "Discussion on the dos and donts of getting started with business.",
        "end_time": datetime(2021, 1, 6, 16, 00, 00),
    },
    {
        "start_time": datetime(2021, 6, 4, 10, 00, 00),
        "is_active": True,
        "instructor": [8],
        "course_id": 10,
        "group_id": 8,
        "description": "Discussion on the dos and donts of getting started with business.",
        "end_time": datetime(2021, 6, 4, 12, 00, 00),
    },
    {
        "start_time": datetime(2021, 12, 9, 7, 00, 00),
        "is_active": True,
        "instructor": [8, 9, 10],
        "course_id": 8,
        "group_id": 9,
        "description": "Criminal Law: What is it, and What are the current trails are proceeding under the offence listed in it.",
        "end_time": datetime(2021, 12, 9, 12, 00, 00),
    },
]