Example #1
0
 def following_details(self):
   return [api.get_user_info(user_id) for user_id in api.get_following_users(self.info['_id'])]
Example #2
0
 def following_details(self):
     return [api.get_user_info(user_id, db_name=self.db_name) \
             for user_id in api.get_following_users(self.info['_id'],
                                                    db_name=self.db_name)]
Example #3
0
 def following_users(self, info=False):
   return api.get_following_users(self.id)
Example #4
0
 def following_users(self, info=False):
     return api.get_following_users(self.id, db_name=self.db_name)
Example #5
0
 def following_details(self):
   return [api.get_user_info(user_id) for user_id in api.get_following_users(self.info['_id'])]
Example #6
0
 def following_users(self, info=False):
   return api.get_following_users(self.id)
Example #7
0
 def following_details(self):
   return [api.get_user_info(user_id, db_name=self.db_name) \
           for user_id in api.get_following_users(self.info['_id'], 
                                                  db_name=self.db_name)]
Example #8
0
 def following_users(self, info=False):
   return api.get_following_users(self.id, db_name=self.db_name)