26 lines
439 B
Python
26 lines
439 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import
|
|
from flask import render_template
|
|
|
|
|
|
class Report:
|
|
def __init__(self, gameid, channelid):
|
|
self.gameid = gameid
|
|
self.channelid = channelid
|
|
|
|
|
|
def run(self):
|
|
pass
|
|
|
|
|
|
def main():
|
|
channelid = 6001
|
|
gameids = (1004, 2001)
|
|
for gameid in gameids:
|
|
cc = Report(gameid, channelid)
|
|
cc.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|