Is there a way to do a query and exclude a list of things, instead of calling exclude multiple times?
You can try this also.
exclude_list = ['A', 'B', 'C'] qs = Foo.objects.exclude(items__in=exclude_list)