django create object models on project build code example
Example 1: django pk
pk stands the "primary key" in django which represents a models ID.
The ID attribute is generated for you automatically behind the scences
for each model and any newly created instances after that.
Example 2: .save() in django
>>> one_entry = Entry.objects.get(pk=1)