Is is possible to do something similar to this with a list, dictionary or something else even?
data_dict = {
'title' : 'awesome title',
'body' : 'great body of text',
}
Model.objects.create(data_dict)
Even better if I can extend it
Model.objects.create(data_dict, extra='hello', extra2='world)