本文整理汇总了Python中spreedly.pyspreedly.api.Client.subscribe方法的典型用法代码示例。如果您正苦于以下问题:Python Client.subscribe方法的具体用法?Python Client.subscribe怎么用?Python Client.subscribe使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类spreedly.pyspreedly.api.Client
的用法示例。
在下文中一共展示了Client.subscribe方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: start_free_trial
# 需要导入模块: from spreedly.pyspreedly.api import Client [as 别名]
# 或者: from spreedly.pyspreedly.api.Client import subscribe [as 别名]
def start_free_trial(plan, user):
if check_trial_eligibility(plan, user):
client = Client(settings.SPREEDLY_AUTH_TOKEN, settings.SPREEDLY_SITE_NAME)
client.get_or_create_subscriber(user.id, user.username)
client.subscribe(user.id, plan.pk, trial=True)
get_subscription(user)
return True
else:
return False
示例2: start_free_trial
# 需要导入模块: from spreedly.pyspreedly.api import Client [as 别名]
# 或者: from spreedly.pyspreedly.api.Client import subscribe [as 别名]
def start_free_trial(plan, user, site=DEFAULT_SITE_ALIAS):
site=get_site(site)
if check_trial_eligibility(plan, user):
client = Client(site['SPREEDLY_AUTH_TOKEN_SECRET'], site['SPREEDLY_SITE_NAME'])
client.get_or_create_subscriber(user.id, user.username)
client.subscribe(user.id, plan.pk, trial=True)
get_subscription(user)
return True
else:
return False