当前位置: 首页>>代码示例>>Python>>正文


Python Profile.add_social_account方法代码示例

本文整理汇总了Python中market.profile.Profile.add_social_account方法的典型用法代码示例。如果您正苦于以下问题:Python Profile.add_social_account方法的具体用法?Python Profile.add_social_account怎么用?Python Profile.add_social_account使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在market.profile.Profile的用法示例。


在下文中一共展示了Profile.add_social_account方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_MarketProfile_add_social_invalid

# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import add_social_account [as 别名]
 def test_MarketProfile_add_social_invalid(self):
     p = Profile(self.db)
     p.add_social_account("TEST", "test_twitter_username")
     u = p.get()
     self.assertEqual(1, len(u.social))
     self.assertEqual(0, u.social[0].type)
     self.assertEqual('test_fb_username', u.social[0].username)
开发者ID:1234max,项目名称:OpenBazaar-Server,代码行数:9,代码来源:test_profile.py

示例2: test_MarketProfile_replace_social_no_proof

# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import add_social_account [as 别名]
 def test_MarketProfile_replace_social_no_proof(self):
     p = Profile(self.db)
     p.add_social_account("FACEBOOK", "test_updated_username")
     u = p.get()
     self.assertEqual(1, len(u.social))
     self.assertEqual(0, u.social[0].type)
     self.assertEqual('test_updated_username', u.social[0].username)
开发者ID:1234max,项目名称:OpenBazaar-Server,代码行数:9,代码来源:test_profile.py

示例3: test_MarketProfile_add_social_no_proof

# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import add_social_account [as 别名]
 def test_MarketProfile_add_social_no_proof(self):
     p = Profile(self.db)
     p.add_social_account("TWITTER", "test_twitter_username")
     u = p.get()
     self.assertEqual(2, len(u.social))
     self.assertEqual(0, u.social[0].type)
     self.assertEqual('test_fb_username', u.social[0].username)
     self.assertEqual(1, u.social[1].type)
     self.assertEqual('test_twitter_username', u.social[1].username)
开发者ID:1234max,项目名称:OpenBazaar-Server,代码行数:11,代码来源:test_profile.py

示例4: addsocialaccount

# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import add_social_account [as 别名]
 def addsocialaccount():
     parser = argparse.ArgumentParser(
         description="Add a social media account to the profile.",
         usage='''usage:
 networkcli.py addsocialaccout -t TYPE, -u USERNAME, -p PROOF''')
     parser.add_argument('-t', '--type', help="the type of account")
     parser.add_argument('-u', '--username', help="the username")
     parser.add_argument('-p', '--proof', help="the proof url")
     args = parser.parse_args(sys.argv[2:])
     p = Profile()
     p.add_social_account(args.type, args.username, args.proof)
开发者ID:the9ull,项目名称:OpenBazaar-Server,代码行数:13,代码来源:networkcli.py

示例5: add_social_account

# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import add_social_account [as 别名]
 def add_social_account(self, request):
     try:
         p = Profile(self.db)
         if "account_type" in request.args and "username" in request.args and "proof" in request.args:
             p.add_social_account(request.args["account_type"][0], request.args["username"][0],
                                  request.args["proof"][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
开发者ID:jamesdwilson,项目名称:OpenBazaar-Server,代码行数:15,代码来源:restapi.py

示例6: add_social_account

# 需要导入模块: from market.profile import Profile [as 别名]
# 或者: from market.profile.Profile import add_social_account [as 别名]
 def add_social_account(self, request):
     p = Profile()
     if "account_type" in request.args and "username" in request.args and "proof" in request.args:
         p.add_social_account(request.args["account_type"][0], request.args["username"][0],
                              request.args["proof"][0])
开发者ID:the9ull,项目名称:OpenBazaar-Server,代码行数:7,代码来源:restapi.py


注:本文中的market.profile.Profile.add_social_account方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。