django objects.create()

# Import the model class from the Django app's models module
from your_app.models import YourModel

# Use the create() method to instantiate and save a new instance of the model
YourModel.objects.create(
    field1=value1,
    field2=value2,
    # ... (additional fields and values)
)