Skip to content

Instantly share code, notes, and snippets.

@huseyinozsoy
Last active January 18, 2020 19:01
Show Gist options
  • Save huseyinozsoy/1e5478a6514ef71a6cd3950c828b4927 to your computer and use it in GitHub Desktop.
Save huseyinozsoy/1e5478a6514ef71a6cd3950c828b4927 to your computer and use it in GitHub Desktop.
#app.py kodları
from flask import Flask,render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment