if my views code is:

arttags = sorted(arttags, key=operator.attrgetter('date_added'), reverse=True)

what is the argument that will limit the result to 50 tags?

I'm assuming this:

.... limit=50)

is incorrect.

more complete code follows:

videoarttags = Media.objects.order_by('date_added'),filter(topic__exact='art') 
audioarttags = Audio.objects.order_by('date_added'),filter(topic__exact='art') 
conarttags = Concert.objects.order_by('date_added'),filter(topic__exact='art') 
arttags = list(chain(videoarttags, audioarttags, conarttags)) 
arttags = sorted(arttags, key=operator.attrgetter('date_added'), reverse=True)

how do incorporate –

itertools.islice(sorted(...),50)
link|improve this question
1  
sorted() is not an itertools filter -- it returns a plain list rather than an iterator – Marius Gedminas Jul 21 '09 at 22:58
my mistake. in the previous line of code I use itertools to chain a bunch of tags into "arttags". I mistakenly thought I was using an itertools sort filter as well. – kjarsenal Jul 21 '09 at 23:04
3  
@kjarsenal, it's impossible to sort in a stream-oriented way: you can't yield even the first resulting item until you've seen all incoming ones (as the last one you see might be the first one to yield!), and itertools only does stream-oriented things of course. – Alex Martelli Jul 22 '09 at 1:14
the sort filter works. i just need to know how to limit the result. – kjarsenal Jul 22 '09 at 1:20
feedback

5 Answers

what about heapq.nlargest:
Return a list with the n largest elements from the dataset defined by iterable.key, if provided, specifies a function of one argument that is used to extract a comparison key from each element in the iterable: key=str.lower Equivalent to: sorted(iterable, key=key, reverse=True)[:n]

>>> from heapq import nlargest
>>> data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
>>> nlargest(3, data)
[9, 8, 7]
link|improve this answer
This is probably the fastest way of getting only the first few sorted elements. That's exactly what I would have suggested. – EOL Jul 22 '09 at 8:26
feedback

You'll probably find that a slice works for you:

arttags = sorted(arttags, key=operator.attrgetter('date_added'), reverse=True)[:50]
link|improve this answer
yeah, I thought so too, but it had no effect. – kjarsenal Jul 21 '09 at 22:59
In what way did this not work? You mention itertools, if you want an iterator, try itertools.islice(sorted(...),50) – Markus Jul 21 '09 at 23:51
the code looks like this: videoarttags = Media.objects.order_by('date_added'),filter(topic__exact='art') audioarttags = Audio.objects.order_by('date_added'),filter(topic__exact='art') conarttags = Concert.objects.order_by('date_added'),filter(topic__exact='art') arttags = list(chain(videoarttags, audioarttags, conarttags)) arttags = sorted(arttags, key=operator.attrgetter('date_added'), reverse=True) how do incorporate – itertools.islice(sorted(...),50) – kjarsenal Jul 22 '09 at 0:26
1  
@kjarsenal, pls edit your question to put this code there (it's unreadable all flowed in a comment) and to fix the question's title (as itertools has nothing to do with sorted). – Alex Martelli Jul 22 '09 at 1:12
sorry about that. question has been edited. – kjarsenal Jul 22 '09 at 1:18
feedback

The general idea of what you want is a take, I believe. From the itertools documentation:

def take(n, iterable):
    "Return first n items of the iterable as a list"
    return list(islice(iterable, n))
link|improve this answer
can't figure out how to implement it in the django view using the module. – kjarsenal Jul 21 '09 at 23:47
feedback

I think I was pretty much barking up the wrong tree. What I was trying to accomplish was actually very simple using a template filter (slice) which I didn't know I could do. The code was as follows:

{% for arttag in arttags|slice:":50" %}

Yes, I feel pretty stupid, but I'm glad I got it done :-)

link|improve this answer
feedback

You might also want to add [:50] to each of the objects.order_by.filter calls. Doing that will mean you only ever have to sort 150 items in-memory in Python instead of possibly many more.

link|improve this answer
excellent point. thanks steve; will implement. – kjarsenal Jul 25 '09 at 16:45
feedback

Your Answer

 
or
required, but never shown