代码拉取完成,页面将自动刷新
from flask import Flask, render_template, request, jsonify
from neo_db.query_graph import query,get_KGQA_answer,get_answer_profile
from KGQA.ltp import get_target_array
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
@app.route('/index', methods=['GET', 'POST'])
def index(name=None):
return render_template('index.html', name = name)
@app.route('/search', methods=['GET', 'POST'])
def search():
return render_template('search.html')
@app.route('/KGQA', methods=['GET', 'POST'])
def KGQA():
return render_template('KGQA.html')
@app.route('/get_profile',methods=['GET','POST'])
def get_profile():
name = request.args.get('character_name')
json_data = get_answer_profile(name)
return jsonify(json_data)
@app.route('/KGQA_answer', methods=['GET', 'POST'])
def KGQA_answer():
question = request.args.get('name')
json_data = get_KGQA_answer(get_target_array(str(question)))
return jsonify(json_data)
@app.route('/search_name', methods=['GET', 'POST'])
def search_name():
name = request.args.get('name')
json_data=query(str(name))
return jsonify(json_data)
@app.route('/get_all_relation', methods=['GET', 'POST'])
def get_all_relation():
return render_template('all_relation.html')
if __name__ == '__main__':
app.debug=True
app.run()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。