加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.py 741 Bytes
一键复制 编辑 原始数据 按行查看 历史
沈连杰 提交于 2022-12-27 11:46 . 期末项目
from flask import Flask, render_template, request
from vsearch import search4letters
app = Flask(__name__)
@app.route('/search4', methods=['POST'])
def do_search() -> str:
phrase = request.form['phrase']
letters = request.form['letters']
title = 'Here are your results: '
results = str(search4letters(phrase, letters))
return render_template('results.html', the_title=title, the_phrase=phrase, the_letters=letters, the_results=results)
@app.route('/')
def index_page() -> 'html':
return render_template('index.html')
@app.route('/entry')
def entry_page() -> 'html':
return render_template('entry.html', the_title='Welcome to search4letters on the web!')
if __name__ == '__main__':
app.run(debug=True)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化