Esempio n. 1
0
 def __init__(self, eitherJogosObjOrS2):
     self.jogosObj = funcs.returnJogosObj(eitherJogosObjOrS2)
     self.runner = Runner.Runner(self.jogosObj)
     self.streamObj = Stream.Stream(self.jogosObj)
     self.executePlan()
     self.close()
     self.logFile = funcs.mountLogFile(self, self.jogosObj)
Esempio n. 2
0
 def __init__(self, eitherJogosObjOrS2):
   self.jogosObj  = funcs.returnJogosObj(eitherJogosObjOrS2)
   self.logIt = False
   self.initAttributes()
   # default indices to:
   self.VARRE_DO_JOGO  = 1
   self.VARRE_ATE_JOGO = len(self.jogosObj.getJogos())
   self.updateAll = False # self.VARRE_DO_JOGO will be recalculated
   self.deltaUpdateSqls = []
   self.nOfUpdated = 0
   self.logFile = funcs.mountLogFile(self, self.jogosObj)
Esempio n. 3
0
  def __init__(self, eitherJogosObjOrS2):
    jogosObj = funcs.returnJogosObj(eitherJogosObjOrS2)
    contr.Ruler.__init__(self, jogosObj)

    self.beginAt = datetime.datetime.now()
    print 'Start at', self.beginAt