本文整理汇总了Python中Search.search_user_by_ID_e方法的典型用法代码示例。如果您正苦于以下问题:Python Search.search_user_by_ID_e方法的具体用法?Python Search.search_user_by_ID_e怎么用?Python Search.search_user_by_ID_e使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Search
的用法示例。
在下文中一共展示了Search.search_user_by_ID_e方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main_page
# 需要导入模块: import Search [as 别名]
# 或者: from Search import search_user_by_ID_e [as 别名]
def main_page(self):
import Search
#add to the user the bleats he follows
for listening in self.listens:
following = Search.search_user_by_ID_e(listening)
for bleats in following.bleats:
self.add_bleats(bleats)
#add to the user the bleats mentioning him
bleat_list = Search.search_bleat_by_content("@"+self.username)
for bleat in bleat_list:
self.add_bleats(bleat)