mirror of
https://gitee.com/insArvin/nypc_python_advanced.git
synced 2026-04-17 22:52:28 +08:00
18 lines
349 B
Python
18 lines
349 B
Python
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() |