Ist es möglich , etwas ähnliches wie dies mit einem tun list
, dictionary
oder etwas anderes?
data_dict = {
'title' : 'awesome title',
'body' : 'great body of text',
}
Model.objects.create(data_dict)
Noch besser, wenn ich es erweitern kann:
Model.objects.create(data_dict, extra='hello', extra2='world')