Hello,
I have a query list which I want to filter based on a computation
which I supply:
# Create a query set containing everything:
obj_list = MyObject.objects.all()
# Now - select only the element which pass some test:
obj_list = obj_list.filter( my_filter )
def my_filter( obj ):
# Does a computation based on obj values, and returns true or
false
....
return true|false
Is something like this doable?
Joakim
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.