see what I have:
> bar = [(u'code__regex', u'^[^J]'), (u'active__exact', u'0'), (u'type__id__exact', u'E01')]
There are the fields/values that I want to use to filter the model Foo.
> #want to have this equivalent:
> Foo.objects.filter(bar)
Thanks!