Django создать модель из словаря

# create instance of model
m = MyModel(**data_dict)
# don't forget to save to database!
m.save()
Mattalui