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


Python API.add_user方法代码示例

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


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

示例1: index

# 需要导入模块: from api import API [as 别名]
# 或者: from api.API import add_user [as 别名]
def index():
	form = CreateAccountForm()

	if form.validate_on_submit():

		#instantiate the API
		api = API()

		#Create the new MCC account
		account = api.create_account(form.Company.data, form.Status.data)

		#Add the admin user to the account
		api.add_user(account, form.Email.data, form.First_Name.data, form.Last_Name.data)

		#Add the Platform. The ID of the dropdown is different from the ID in the services
		#listing.
		if form.Platform.data == '3':
			api.update_services(account, 1)
		if form.Platform.data == '8':
			api.update_services(account, 3)
		if form.Platform.data == '14':
			api.update_services(account, 19)	

		#Enable any features
		if form.Adv_Reporting.data:
			api.update_services(account, 7)
		if form.EPA.data:
			api.update_services(account, 10)
		if form.Rules_Engine.data:
			api.update_services(account, 36)

		#Set the delivery region
		api.update_delivery_network(account, form.Delivery_Region.data)

		#Add the origin to the account
		if form.Platform.data == '3':
			origin = api.add_origin_http_large(account, form.Origin.data)
		if form.Platform.data == '8':
			origin = api.add_origin_http_small(account, form.Origin.data)
		if form.Platform.data == '14':
			origin = api.add_origin_adn(account, form.Origin.data)

		#Add Cname to the account
		api.add_edge_cname(account, form.Cname.data, form.Platform.data, origin)

		return render_template('success.html', account=account)

	return render_template('index.html', form=form)
开发者ID:dacbrown,项目名称:API_Sample_Tool,代码行数:50,代码来源:core.py


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