I sometimes have the need to make sure some instances are excluded from a queryset. This is the way I do it usually:
unwanted_instance = MyModel.object
You can put your unwanted items in a list , and a fetch all items except those in the list like so:
MyModel.objects.exclude(id__in=[id1,id2,id3 ])