Example #1
0
 def mainResearchInterpreter(self, beautifulOut=None):
     print u'Enter the username(id or shortname) for the report'
     while True:
         x = raw_input()
         x = self.vk.mainResearch(int(x))
         if beautifulOut is not None:
             auxMath.beatifulOut(x)
         else:
             print x
Example #2
0
 def vkApiInterpreter(self, beautifulOut=None):
     print u'input you method'
     while True:
         x = raw_input()
         x = self.vk.eval(x)
         if beautifulOut is not None:
             auxMath.beatifulOut(x)
         else:
             print x
Example #3
0
 def mainResearchInterpreter(self,beautifulOut=None):
     print u'Enter the username(id or shortname) for the report'
     while True:
         x = raw_input()
         x = self.vk.mainResearch(int(x))
         if beautifulOut is not None:
             auxMath.beatifulOut(x)
         else:
             print x
Example #4
0
 def vkApiInterpreter(self,beautifulOut=None):
     print u'input you method'
     while True:
         x = raw_input()
         x = self.vk.eval(x)
         if beautifulOut is not None:
             auxMath.beatifulOut(x)
         else:
             print x
Example #5
0
 def report(self, id):
     report = self.vk.mainResearch(id)
     report = auxMath.beatifulOut(report)
     return report
Example #6
0
 def report(self,id):
     report = self.vk.mainResearch(id)
     report = auxMath.beatifulOut(report)
     return report