# HG changeset patch # User Jeff Hammel # Date 1419371674 28800 # Node ID 035e15e99e5717f07d3bb81a69bb01f5c3caf0b7 # Parent dee0a650bd5a72ff0299ce25d28537ec0232d27d stub diff -r dee0a650bd5a -r 035e15e99e57 numerics/cal.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/numerics/cal.py Tue Dec 23 13:54:34 2014 -0800 @@ -0,0 +1,31 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import argparse +import calendar +import datetime +import sys + +__all__ = ['main'] +calendar.setfirstweekday(calendar.SUNDAY) + +class Calendar(object): + pass + +class Month(object): + def __init__(self, month, year): + self.month = month + self.year = year + +def main(args=sys.argv[1:]): + """CLI""" + + # parse command line + parser = argparse.ArgumentParser(description=__doc__) + options = parser.parse_args(args) + + now = datetime.datetime.now() + + +if __name__ == '__main__': + main()