13 lines
197 B
Python
Executable File
13 lines
197 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return render_template("hello.html")
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|