scripts and tools to administer the lingy.in public unix / tilde
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

12 satır
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)