Skip to content

Instantly share code, notes, and snippets.

View cliftonavil's full-sized avatar
🎯
Focusing

Clifton Avil D'Souza cliftonavil

🎯
Focusing
  • India
View GitHub Profile
@cliftonavil
cliftonavil / remove_duplicates.py
Created September 27, 2021 13:10 — forked from victorono/remove_duplicates.py
Django - remove duplicate objects where there is more than one field to compare
from django.db.models import Count, Max
unique_fields = ['field_1', 'field_2']
duplicates = (
MyModel.objects.values(*unique_fields)
.order_by()
.annotate(max_id=Max('id'), count_id=Count('id'))
.filter(count_id__gt=1)
)