Tagged Questions
2
votes
1answer
98 views
Is there a way to construct lazy sequences in Python?
There is a Django view that loads Member objects from the database with a certain filter.
Now I need to change this logic to present a specific Member first, and let the rest follow in their natural ...
1
vote
2answers
2k views
Django Custom Queryset filters
Is there, in Django, a standard way to write complex, custom filters for QuerySets?
Just as I can write
MyClass.objects.all().filter(field=val)
I'd like to do something like this :
...