本文整理汇总了Python中market.profile.Profile.remove_social_account方法的典型用法代码示例。如果您正苦于以下问题:Python Profile.remove_social_account方法的具体用法?Python Profile.remove_social_account怎么用?Python Profile.remove_social_account使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类market.profile.Profile
的用法示例。
在下文中一共展示了Profile.remove_social_account方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: delete_social_account
# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import remove_social_account [as 别名]
def delete_social_account(self, request):
try:
p = Profile(self.db)
if "account_type" in request.args:
p.remove_social_account(request.args["account_type"][0])
request.write(json.dumps({"success": True}))
request.finish()
return server.NOT_DONE_YET
except Exception, e:
request.write(json.dumps({"success": False, "reason": e.message}, indent=4))
request.finish()
return server.NOT_DONE_YET
示例2: delete_social_account
# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import remove_social_account [as 别名]
def delete_social_account(self, request):
p = Profile()
if "account_type" in request.args:
p.remove_social_account(request.args["account_type"][0])
示例3: test_MarketProfile_remove_social_invalid
# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import remove_social_account [as 别名]
def test_MarketProfile_remove_social_invalid(self):
p = Profile(self.db)
p.remove_social_account("TEST")
u = p.get()
self.assertEqual(1, len(u.social))
示例4: test_MarketProfile_remove_social
# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import remove_social_account [as 别名]
def test_MarketProfile_remove_social(self):
p = Profile(self.db)
p.remove_social_account("FACEBOOK")
u = p.get()
self.assertEqual(0, len(u.social))
示例5: test_MarketProfile_remove_lowercase_social
# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import remove_social_account [as 别名]
def test_MarketProfile_remove_lowercase_social(self):
p = Profile(self.db)
p.remove_social_account("facebook")
u = p.get()
self.assertEqual(0, len(u.social))