I've been doing some work in Django and noticed most people push save() right away after the change to model has been made
for example in SQLAlchemy if we loop over few db objects and do modification after the loop we can say db.session.commit()
saying to commit everything that has been done and save some performance but committing in bulk rather on each loop
Is there a similar function for Django?