create() django code example
Example 1: create django object
Author.objects.create(name="Joe")
Example 2: .save() in django
>>> one_entry = Entry.objects.get(pk=1)
Author.objects.create(name="Joe")
>>> one_entry = Entry.objects.get(pk=1)