vote up 2 vote down star

is there a way to do a query and exclude a list of things instead of calling exclude multiple times?

flag

31% accept rate

3 Answers

vote up 3 vote down check

Based on your reply to Ned, it sounds like you just want to exclude a list of tags. So you could just use the in filter:

names_to_exclude = [o.name for o in objects_to_exclude] 
Foo.objects.exclude(name__in=names_to_exclude)

Does that do what you want?

link|flag
I do it with a list of objects_to_exclude directly, I don't use the o.name: ignore_tags = request.user.ignore_tags.all() case_list = Case.objects.exclude(tags__in = ignore_tags)) – Johnd May 29 at 13:11
vote up 1 vote down

What's wrong with calling exclude multiple times? Queries are lazy, nothing happens until you try to pull data from it, so there's no downside to using .exclude() more than once.

link|flag
I have a model that has a tags manytomany field. the user can have a large amount of ignore tags. I want to dynamically exclude the objects that the user doesn't want to see. I won't know how many times to call exclude till run time. – Johnd May 26 at 20:48
vote up 1 vote down

You can do it pretty easily with the Q object:

from django.db.models import Q

excludes = None
for tag in ignored_tags:
    q = Q(tag=tag)
    excludes = (excludes and (excludes | q)) or q # makes sure excludes is set properly
set_minus_excluded = Foo.objects.exclude(excludes)

You should also be able to do it dynamically with exclude():

qs = Foo.objects.all()
for tag in ignored_tags:
    qs = qs.exclude(tag=tag)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.