def _check_followers(self):
"""
Checks followers.
"""
logging.info("Checking for new followers...")
try:
self.followers['new'] = [f_id for f_id in self.api.followers_ids(self.id) if f_id not in self.followers['existing']]
self.state['last_follow_check'] = time.time()
except tweepy.TweepError as e:
self._log_tweepy_error('Can\'t update followers', e)
Trending_Bot.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录