20 lines
598 B
Python
20 lines
598 B
Python
# *************************************************************
|
|
# ************** SERVEUR WEB FLASK*****************************
|
|
# *************************************************************
|
|
|
|
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__) # crée l'application Flask
|
|
|
|
@app.route("/") # URL racine : http://localhost:5000/
|
|
def index():
|
|
return render_template("index.html")
|
|
|
|
@app.route("/page_hopper")
|
|
def page_hopper():
|
|
return render_template("page_hopper.html")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run() # lance le serveur (localhost:5000 par défaut)
|