Passage sous flask
This commit is contained in:
parent
e35eaee1d4
commit
eaa4fd9103
71 changed files with 52 additions and 43 deletions
11
aurore.py
Normal file
11
aurore.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue