scripts and tools to administer the lingy.in public unix / tilde
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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