示例#1
0
def creators():
	creator_list = get_list_of_creators(**request.args)
	return render_template('creator_list.html', title='Marvel List of creators', creator_list=creator_list['data']['results'])
示例#2
0
def creators():
    creator_list = get_list_of_creators(**request.args)
    return render_template('creator_list.html',
                           title='Marvel List of creators',
                           creator_list=creator_list['data']['results'])
示例#3
0
def creators_api():
	return jsonify(get_list_of_creators())
示例#4
0
def creators_api():
    return jsonify(get_list_of_creators())