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)