view donations/management/commands/top_donors.py @ 896:0054a4a88c1c

Remove checking for https availability. This seems to take quite a while, plus Python doesn't validate the cert, so we could end up with dodgy sites.
author Brian Neal <bgneal@gmail.com>
date Wed, 25 Feb 2015 21:09:41 -0600
parents 1ddd72f48d73
children
line wrap: on
line source
"""top_donors.py

A management command to display top donor data.

"""
from optparse import make_option

from django.core.management.base import BaseCommand

from donations.models import Donation


ROW_FMT = '{n:<5} {name:<32} ${amount}\n'


class Command(BaseCommand):
    help = "Display the top N donors and stats"
    args = "<n>"
    option_list = BaseCommand.option_list + (
            make_option('-n', '--number',
                        action='store',
                        type='int',
                        default=10,
                        help='number of donors to display'),
            )

    def handle(self, *args, **kwargs):
        """Display the top n donors and their amounts."""

        n = kwargs['number']

        donors = Donation.objects.top_donors(n)
        for i, donor in enumerate(donors, start=1):
            self.stdout.write(ROW_FMT.format(n=i, name=donor.username,
                amount=donor.total_donations))