python: Add status_report script.
This commit is contained in:
parent
bc21b83951
commit
8eb1854b8b
1 changed files with 68 additions and 0 deletions
68
python/status_report.py
Executable file
68
python/status_report.py
Executable file
|
@ -0,0 +1,68 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import collections
|
||||||
|
import csv
|
||||||
|
import datetime
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import django
|
||||||
|
|
||||||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'supporters.settings')
|
||||||
|
django.setup()
|
||||||
|
from supporters.models import Date, Payment, Supporter
|
||||||
|
|
||||||
|
MONTH_FMT = '%Y-%m'
|
||||||
|
|
||||||
|
def month_date(arg_s):
|
||||||
|
return Date.from_pydate(datetime.datetime.strptime(arg_s, MONTH_FMT))
|
||||||
|
|
||||||
|
def parse_arguments(arglist):
|
||||||
|
parser = argparse.ArgumentParser(prog='status_report')
|
||||||
|
parser.add_argument(
|
||||||
|
'--start-month', type=month_date,
|
||||||
|
default=Payment.objects.order_by('date').first().date,
|
||||||
|
help="First month in report, in YYYY-MM format")
|
||||||
|
parser.add_argument(
|
||||||
|
'--end-month', default=Date.today(), type=month_date,
|
||||||
|
help="Last month in report, in YYYY-MM format")
|
||||||
|
args = parser.parse_args(arglist)
|
||||||
|
if args.end_month < args.start_month:
|
||||||
|
parser.error("End month predates start month")
|
||||||
|
return args
|
||||||
|
|
||||||
|
def count_tuple(counter):
|
||||||
|
return (
|
||||||
|
counter[Supporter.STATUS_NEW],
|
||||||
|
counter[Supporter.STATUS_NEW] + counter[Supporter.STATUS_ACTIVE],
|
||||||
|
counter[Supporter.STATUS_LAPSED],
|
||||||
|
counter[Supporter.STATUS_LOST],
|
||||||
|
)
|
||||||
|
|
||||||
|
def report_month(month):
|
||||||
|
annuals = collections.Counter(Supporter(name).status(month)
|
||||||
|
for name in Supporter.iter_entities(['Annual']))
|
||||||
|
monthlies = collections.Counter(Supporter(name).status(month)
|
||||||
|
for name in Supporter.iter_entities(['Monthly']))
|
||||||
|
return ((month.strftime(MONTH_FMT),)
|
||||||
|
+ count_tuple(annuals)
|
||||||
|
+ count_tuple(monthlies)
|
||||||
|
+ count_tuple(annuals + monthlies))
|
||||||
|
|
||||||
|
def main(arglist):
|
||||||
|
args = parse_arguments(arglist)
|
||||||
|
out_csv = csv.writer(sys.stdout)
|
||||||
|
out_csv.writerow((
|
||||||
|
'Month',
|
||||||
|
'Annual New', 'Annual Active', 'Annual Lapsed', 'Annual Lost',
|
||||||
|
'Monthly New', 'Monthly Active', 'Monthly Lapsed', 'Monthly Lost',
|
||||||
|
'Total New', 'Total Active', 'Total Lapsed', 'Total Lost',
|
||||||
|
))
|
||||||
|
month = Date.from_pydate(args.start_month)
|
||||||
|
while month <= args.end_month:
|
||||||
|
out_csv.writerow(report_month(month))
|
||||||
|
month = month.round_month_up()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main(None)
|
Loading…
Reference in a new issue