17 lines
265 B
Python
17 lines
265 B
Python
from flask import Flask, render_template, request, send_file, jsonify
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def home():
|
|
return render_template("index.html")
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|
|
#app.run(host="0.0.0", port=int(3000), debug=True) |