I have a Django model with a created timestamp and I'd like to get the counts of objects created on each day. I was hoping to use the aggregation functionality in Django but I can't figure out how to solve my problem with it. Assuming that doesn't work I can always fall back to just getting all of the dates with values_list but I'd prefer to give the work to Django or the DB. How would you do it?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Alex pointed to the right answer in the comment:

Count number of records by date in Django
Credit goes to ara818

Guidoism.objects.extra({'created':"date(created)"}).values('created').annotate(created_count=Count('id'))

Guidoism.objects \
    # get specific dates (not hours for example) and store in "created" 
    .extra({'created':"date(created)"})
    # get a values list of only "created" defined earlier
    .values('created')
    # annotate each day by Count of Guidoism objects
    .annotate(created_count=Count('id'))

I learn new tricks every day reading stack.. awesome!

link|improve this answer
feedback

Use the count method:

YourModel.objects.filter(published_on=datetime.date(2011, 4, 1)).count()
link|improve this answer
sounds a bit expensive to count every day though – Yuji Tomita Feb 2 '11 at 22:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.