def update_rankings(self): for descr, func in utils.pbar(self.scalars_author, "UPDATING RANKINGS"): value = self.source_counter(counters.author(self.pages, func)) self.post("ranking:" + descr, round(value, 2))
def update_users(self): """Update the stats wiki with the author stats.""" users = {p.author for p in self.pages} for user in utils.pbar(users, "UPDATING USER STATS"): self.post("user:" + user, self.source_author(user))
def update_rankings(self): for descr, func in utils.pbar(self.scalars_author, 'ACTUALIZANDO POSICIÓN'): value = self.source_counter(counters.author(self.pages, func)) self.post('posición:' + descr, round(value, 2))
def update_users(self): """Actualiza las estadísticas de la wiki con las estadísticas de los autores.""" users = {p.author for p in self.pages} for user in utils.pbar(users, 'ACTUALIZANDO ESTADISTICAS DE USUARIOS'): self.post('usuario:' + user, self.source_author(user))
def update_rankings(self): for descr, func in utils.pbar( self.scalars_author, 'UPDATING RANKINGS'): value = self.source_counter(counters.author(self.pages, func)) self.post('ranking:' + descr, round(value, 2))
def update_users(self): """Update the stats wiki with the author stats.""" users = {p.author for p in self.pages} for user in utils.pbar(users, 'UPDATING USER STATS'): self.post('user:' + user, self.source_author(user))