Passage sous flask

This commit is contained in:
raida 2019-05-08 14:08:50 +02:00
parent e35eaee1d4
commit eaa4fd9103
71 changed files with 52 additions and 43 deletions

11
aurore.py Normal file
View file

@ -0,0 +1,11 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def accueil():
return render_template('index.html')
if __name__ == '__main__':
app.run()