def __init__(self, app): self.app = app self.login = None self.user_token = None self.http_client = http_client.HTTPClient() CheckerWaiter.__init__(self, app, self.check_if_login_complete) login, password = read_login() if login: error = self.login_as_user(login, password) if error: self.logger.info(str(error))
def __init__(self, app): self.app = app self.login = None self.user_token = None self.http_client = http_client.HTTPClient(self.app) CheckerWaiter.__init__(self, app, self.check_if_login_complete) if not app.stop_flag: login_password = read_login() if login_password: error = self.login_as_user(login_password[0], login_password[1], save_password_flag=False) if error: self.logger.info(str(error))
def __init__(self, app): self.app = app CheckerWaiter.__init__(self, app, self.check_connection)
def __init__(self, app): CheckerWaiter.__init__(self, app, self.check_if_makerware_killed)
def __init__(self, app): CheckerWaiter.__init__(self, app, self.check_connection)
def __init__(self, app): CheckerWaiter.__init__(self, app, self.check_if_user_in_groups)