-
-
Save billturner/a3c73427215697286a5f21d1ad028002 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lists = [ | |
{ | |
'id': 1, | |
'type': 'albums', | |
'name': 'This is an example list', | |
'description': 'This is the description for the first list' | |
}, | |
{ | |
'id': 2, | |
'type': 'books', | |
'name': 'Another list', | |
'description': 'A description for this list should be different' | |
} | |
] | |
list_items = [ | |
{ | |
'id': 1, | |
'list_id': 1, | |
'title': 'OK Computer', | |
'creator': 'Radiohead' | |
}, | |
{ | |
'id': 2, | |
'list_id': 1, | |
'title': 'Kind of Blue', | |
'creator': 'Miles Davis' | |
}, | |
{ | |
'id': 3, | |
'list_id': 1, | |
'title': 'Monk Alone', | |
'creator': 'Thelonius Monk' | |
}, | |
{ | |
'id': 4, | |
'list_id': 2, | |
'title': 'The Haunting of Hill House', | |
'creator': 'Shirley Jackson' | |
}, | |
{ | |
'id': 5, | |
'list_id': 2, | |
'title': 'Infomocracy', | |
'creator': 'Malka Older' | |
}, | |
{ | |
'id': 6, | |
'list_id': 2, | |
'title': 'The Left Hand of Darkness', | |
'creator': 'Ursula K. LeGuin' | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment