objects.all() code example
Example 1: django objects.create()
SomeModel.objects.create(firstname='ricky', lastname='ticky')
Example 2: and in django query filter
Blog.objects.filter(entry__headline__contains='Lennon', entry__pub_date__year=2008)
Example 3: objects.filter django
>>> Entry.objects.filter(blog_id=4)
Example 4: django filter values with OR operator
Blog.objects.filter(pk__in=[1, 4, 7])
Example 5: .save() in django
>>> one_entry = Entry.objects.get(pk=1)