update for in django code example
Example 1: update django
python -m pip install -U Django
Example 2: update in django orm
# Update all the headlines with pub_date in 2007.
Entry.objects.filter(pub_date__year=2007).update(headline='Everything is the same')