django create new model object code example

Example 1: django create model from dictionary

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

Example 2: super in django manager

# First, define the Manager subclass.
class DahlBookManager(models.Manager):
    def get_queryset(self):
        return super().get_queryset().filter(author='Roald Dahl')

# Then hook it into the Book model explicitly.
class Book(models.Model):
    title = models.CharField(max_length=100)
    author = models.CharField(max_length=50)

    objects = models.Manager() # The default manager.
    dahl_objects = DahlBookManager() # The Dahl-specific manager.

Example 3: create django object

Author.objects.create(name="Joe")

Example 4: .save() in django

>>> one_entry = Entry.objects.get(pk=1)