insert data in django models

You can use the following steps to insert data in Django models:

Step 1: Import the model you want to insert data into

from myapp.models import YourModel

Step 2: Create a new instance of the model with the data you want to insert

new_instance = YourModel(attribute1=value1, attribute2=value2)

Step 3: Save the new instance to the database

new_instance.save()