本文整理汇总了Python中framework.Framework.get_user_communties方法的典型用法代码示例。如果您正苦于以下问题:Python Framework.get_user_communties方法的具体用法?Python Framework.get_user_communties怎么用?Python Framework.get_user_communties使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类framework.Framework
的用法示例。
在下文中一共展示了Framework.get_user_communties方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: elif
# 需要导入模块: from framework import Framework [as 别名]
# 或者: from framework.Framework import get_user_communties [as 别名]
join <community_name>
community_users <community_name>
post <article_title> <url> <community>
""")
elif(cmd[0]=="register"):
user_id = cmd[1]
elif(cmd[0] == "login"):
user_id = cmd[1]
elif(cmd[0] == "my_articles"):
if not check_login(): break
print(fame.get_user_articles(user_id))
elif(cmd[0] == "my_communities"):
if not check_login(): break
print(fame.get_user_communties(user_id))
elif(cmd[0] == "community_feed"):
com_id = cmd[1]
print(fame.rank_articles(com_id))
elif(cmd[0] == "community_users"):
com_id = cmd[1]
print(fame.get_community_users(com_id))
elif(cmd[0] == "post"):
if not check_login(): break
title = cmd[1]
url = cmd[2]
community = cmd[3]
fame.post_article(title, url, user_id, community)