Spaces:
Build error
Build error
File size: 5,697 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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
from typing import List
from pydantic import Json
import datetime
users: List[Json] = [
{
"full_name": "Mike Hunt",
"email": "[email protected]",
"is_active": True,
"user_type": 2,
"address": "Dhulikhel, Kavre",
"group_id": None,
"contact_number": "9849721522",
"teacher_group": [],
"dob": datetime.datetime(1970, 12, 12),
"join_year": 1990,
"password": "test",
},
{
"full_name": "Yugesh Upadhyaya Luitel",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"roll": 38,
"address": "Bafal, Kathmandu",
"group_id": 3,
"contact_number": "9861589390",
"teacher_group": [],
"dob": datetime.datetime(2001, 6, 13),
"join_year": 2019,
"password": "test",
},
{
"full_name": "Arpan Koirala",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"roll": 34,
"address": "Rampur, Palpa",
"group_id": 3,
"contact_number": "9821694321",
"teacher_group": [],
"dob": datetime.datetime(2001, 8, 1),
"join_year": 2019,
"password": "test",
},
{
"full_name": "Rushab Humagain",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"address": "Banepa, Kavre",
"group_id": 3,
"contact_number": "9854632157",
"teacher_group": [],
"dob": datetime.datetime(2002, 11, 30),
"join_year": 2020,
"password": "test",
},
{
"full_name": "Abhijeet Poudel",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"address": "Pokhara Airport Side, Pokhara",
"group_id": 3,
"contact_number": "9852891559",
"teacher_group": [],
"dob": datetime.datetime(2000, 12, 10),
"join_year": 2018,
"password": "test",
},
{
"full_name": "Aatish Shrestha",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"address": "Koteshowr, Kathmandu",
"group_id": 3,
"contact_number": "9845427715",
"teacher_group": [],
"dob": datetime.datetime(1998, 4, 12),
"join_year": 2017,
"password": "test",
},
{
"full_name": "Suraj Chapagain ",
"email": "[email protected]",
"is_active": True,
"user_type": 3,
"teacher_department_id": 3,
"address": "Lake Side, Pokhara",
"group_id": None,
"contact_number": "9825852660",
"teacher_group": [[3, 4], [11, 4]],
"dob": datetime.datetime(1995, 1, 26),
"join_year": 2020,
"password": "test",
},
{
"full_name": "Manoj Pandey",
"email": "[email protected]",
"is_active": True,
"user_type": 3,
"teacher_department_id": 2,
"address": "Jitgadhi, Butwal",
"group_id": None,
"contact_number": "9833584635",
"teacher_group": [[3, 3], [9, 2], [25, 1], [2, 3]],
"dob": datetime.datetime(1885, 9, 14),
"join_year": 2000,
"password": "test",
},
{
"full_name": "Om Nath Acharya",
"email": "[email protected]",
"is_active": False,
"user_type": 3,
"teacher_department_id": 4,
"address": "Dhulikhel, Kavre",
"group_id": None,
"contact_number": "9875278464",
"teacher_group": [[3, 5], [2, 5]],
"dob": datetime.datetime(1980, 8, 14),
"join_year": 2005,
"password": "test",
},
{
"full_name": "Sikshyalaya",
"email": "[email protected]",
"is_active": True,
"user_type": 1,
"address": "Sikshyalaya",
"group_id": None,
"contact_number": "9858630918",
"teacher_group": [],
"dob": datetime.datetime(2021, 1, 1),
"join_year": 2021,
"password": "test",
},
{
"full_name": "Ishan Panta",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"address": "Dhulikhel, Kathmandu",
"group_id": 3,
"contact_number": "9845234515",
"teacher_group": [],
"dob": datetime.datetime(1999, 2, 22),
"join_year": 2020,
"password": "test",
},
{
"full_name": "Mullya Kun Thapa",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"address": "Boys Hostel, Kathmandu University",
"group_id": 3,
"contact_number": "9846754715",
"teacher_group": [],
"dob": datetime.datetime(1999, 2, 22),
"join_year": 2020,
"password": "test",
},
{
"full_name": "Mulyankan T. Sharma",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"address": "Kathmandu University, Kavre",
"group_id": 3,
"contact_number": "9842390715",
"teacher_group": [],
"dob": datetime.datetime(1999, 2, 22),
"join_year": 2020,
"password": "test",
},
{
"full_name": "Sangharsha Paudel",
"email": "[email protected]",
"is_active": True,
"user_type": 4,
"address": "Boys Hostel, Kathmandu University",
"group_id": 3,
"contact_number": "9841265895",
"teacher_group": [],
"dob": datetime.datetime(1999, 2, 22),
"join_year": 2020,
"password": "test",
},
]
|