scripts and tools to administer the lingy.in public unix / tilde
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
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)