You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
301 B
Python
19 lines
301 B
Python
|
3 years ago
|
#!/usr/bin/python
|
||
|
|
# -*- coding: UTF-8 -*-
|
||
|
|
|
||
|
|
|
||
|
|
"""
|
||
|
|
author : Jean-Damien Généro
|
||
|
|
date : 2022-10-01
|
||
|
|
update :
|
||
|
|
"""
|
||
|
|
|
||
|
|
|
||
|
|
# import des librairie
|
||
|
|
from flask import Flask, render_template, request
|
||
|
|
from .app import app
|
||
|
|
|
||
|
|
@app.route("/")
|
||
|
|
def home():
|
||
|
|
"""home route"""
|
||
|
|
return render_template("home.html")
|