from flask import Flask,send_file app = Flask('__name__') app.config['DEBUG'] = True @app.route('/index') def index(): return ...
確定! 回上一頁