-
Notifications
You must be signed in to change notification settings - Fork 0
/
fakeuser.py
29 lines (29 loc) · 956 Bytes
/
fakeuser.py
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
users = {
"harrywang" : {
"username" : "harrywang",
"email": "[email protected]",
"firstname" : "Haochen",
"lastname" : "Wang",
"id" : 1,
"hashed_password" : "$pbkdf2-sha256$29000$TGnNeS.lFCIEAKAUIsQYQw$4Yk05ue6kWIUv.ct6we7McRFwRpb7r7O6ZrR.xnR1PI",
"last_login" : "2022-08-11 23:36:51",
"date_joined" : "2022-07-13 05:22:39",
"is_superuser" : 1,
"is_staff" : 1,
"is_active" : 1,
},
"liping" : {
"username" : "liping",
"email": "[email protected]",
"firstname" : "Ping",
"lastname" : "Li",
"id" : 2,
"hashed_password" : "$pbkdf2-sha256$29000$QgiBUMqZM2as9d4bA.Dcuw$d/zAteAuyL3Fbhc6t8P9OaCHMmyLZHdl2Fpr9Q9khUM",
# Liping1234
"last_login" : "2022-08-01 20:36:51",
"date_joined" : "2022-07-19 10:20:39",
"is_superuser" : 0,
"is_staff" : 1,
"is_active" : 1,
}
}