-
Notifications
You must be signed in to change notification settings - Fork 1
/
seed_data.py
60 lines (60 loc) · 1.8 KB
/
seed_data.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
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
data = {
1: {
'name': 'Guppy',
'email': 'guppy@thecat.com',
'password': 'badpw',
'tags': [
{
'name': 'cats',
'icon': 'fas fa-cat',
'hex_code': '#9EA93F',
'user_id': '1'
},
{
'name': 'food',
'icon': 'fas fa-hamburger',
'hex_code': '#344594',
'user_id': '1'
},
{
'name': 'travel',
'icon': 'fas fa-paper-plane',
'hex_code': '#AB81CD',
'user_id': '1'
},
],
'images': [
{
'url': 'https://cdn.vox-cdn.com/thumbor/X-xVN1krqbh9Co35_AXiZRHRAUk=/0x26:640x453/1200x800/filters:focal(0x26:640x453)/cdn.vox-cdn.com/assets/1275052/kitten_field_jump.jpeg',
'notes': 'leaping kitteh',
'private': False,
'user': 1,
'tag_id': '1'
},
{
'url': 'http://laurencariscooks.com/1_lcc/wp-content/uploads/2016/08/Black-Bean-Burgers-4-600x600.jpg',
'notes': 'vegan burgers YUM',
'private': True,
'user': 1,
'tag_id': '2'
},
{
'url': 'https://d1e00ek4ebabms.cloudfront.net/production/9f067a3c-87df-4503-bfc2-63c3a7b769f4.jpg',
'notes': 'Irish Cottagecore 4ever',
'private': False,
'user': 1,
'tag_id': '3'
}
]
},
2: {
'name': 'Loja',
'email': 'loja@thecat.com',
'password': 'vbadpw'
},
3: {
'name': 'Cori',
'email': 'cori@picturethis.com',
'password': 'pwwwww'
}
}