Skip to content

Instantly share code, notes, and snippets.

@billturner
Created April 9, 2019 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billturner/a3c73427215697286a5f21d1ad028002 to your computer and use it in GitHub Desktop.
Save billturner/a3c73427215697286a5f21d1ad028002 to your computer and use it in GitHub Desktop.
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