It seems that Django's object model filter method automatically uses the AND SQL keyword.
For example:
>>> Publisher.objects.filter(name__contains="press", country__contains="U.S.A")
will automatically translate into something like:
SELECT ...
FROM publisher
WHERE name LIKE '%press%'
AND country LIKE '%U.S.A.%'
However, I was wondering whether there was a way to make OR
? I can't seem to find it in the documentation (oddly enough, searching for 'or' isn't really useful).