add Web/DoubanMovieWeb/app.py.

Signed-off-by: iamzhaohaibo <941604465@qq.com>
This commit is contained in:
iamzhaohaibo
2025-12-18 10:30:30 +00:00
committed by Gitee
parent 1a92ffa55f
commit f7f06d9848

18
Web/DoubanMovieWeb/app.py Normal file
View File

@@ -0,0 +1,18 @@
from flask import Flask, render_template
from DB import DB
db = DB()
conn = db.connect()
douban_table = db.table()
app = Flask(__name__)
@app.route('/', methods=['GET'])
def index():
result = conn.execute(douban_table.select())
return render_template('index.html', rows=result)
if __name__ == '__main__':
app.run()