diff --git a/daily_report/__init__.py b/daily_report/__init__.py new file mode 100644 index 0000000..7a77a86 --- /dev/null +++ b/daily_report/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from __future__ import absolute_import \ No newline at end of file diff --git a/daily_report/dreport.py b/daily_report/dreport.py new file mode 100644 index 0000000..90f75f7 --- /dev/null +++ b/daily_report/dreport.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +from __future__ import absolute_import +from flask import render_template + + +class Report: + def __init__(self, gameid): + self.gameid = gameid + + + def run(self): + pass + + +def main(): + gameids = (1004, 2001) + for gameid in gameids: + cc = Report(gameid) + cc.run() + + +if __name__ == "__main__": + main()