Tagged Questions
3
votes
1answer
128 views
Fill dates from Python groupby
I have a collection of news article objects which I wish to display archived by distinct month. I've used itertools.groupby to create a list of Python objects ordered in such a way:
news_grouped = [
...
2
votes
2answers
1k views
how do i filter an itertools chain() result?
in my views,
if i import an itertools module:
from itertools import chain
and i chain some objects with it:
franktags = Frank.objects.order_by('date_added').reverse().filter(topic__exact='art')
...
1
vote
1answer
219 views
Django Combine a Variable Number of QuerySets
Is there a way to concatenate a unknown number of querysets into a list?
Here are my models:
class Item(models.Model):
name = models.CharField(max_length=200)
brand = ...
0
votes
5answers
169 views
limit output from a sort method
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)
...
0
votes
2answers
538 views
key=operator.attrgetter sort order?
in my django view, if i import operator, and use the following code:
multitags = sorted(multitags, key=operator.attrgetter('date_added'))
is there an easy way to reverse the order – such that i get ...