1from django.db.models import Q
2
3obj, created = Person.objects.filter(
4 Q(first_name='Bob') | Q(first_name='Robert'),
5).get_or_create(last_name='Marley', defaults={'first_name': 'Bob'})
6
1# Update all the headlines with pub_date in 2007.
2Entry.objects.filter(pub_date__year=2007).update(headline='Everything is the same')