コード例 #1
0
 def __remove_action(self):
     checked_posts = [
         self.bad_posts[idx] for idx in self._bad_posts.checkedIndexes
     ]
     bot = create_bot_from_config()
     bot.remove_posts(checked_posts)
コード例 #2
0
ファイル: gui.py プロジェクト: vovapolu/VkGroupChecker
 def __remove_action(self):
     checked_posts = [self.bad_posts[idx] for idx in self._bad_posts.checkedIndexes]
     bot = create_bot_from_config()
     bot.remove_posts(checked_posts)
コード例 #3
0
 def run_bot():
     bot = create_bot_from_config()
     return bot.get_bad_posts()
コード例 #4
0
ファイル: gui.py プロジェクト: vovapolu/VkGroupChecker
 def run_bot():
     bot = create_bot_from_config()
     return bot.get_bad_posts()