scripts and tools to administer the lingy.in public unix / tilde
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
200B

  1. from flask import Flask, render_template
  2. app=Flask(__name__)
  3. @app.route("/")
  4. def home():
  5. app.route('/')
  6. return render_template("home.html")
  7. if __name__=="__main__":
  8. app.run(debug=True)