diff options
author | Denise sur Lya <sekhmet@lya> | 2020-06-14 23:39:59 +0200 |
---|---|---|
committer | Denise sur Lya <sekhmet@lya> | 2020-06-14 23:39:59 +0200 |
commit | d38793f9260c1ca8b96a049d04cc801413c8fb0e (patch) | |
tree | 141dd8eeae002803049c23a5ca3b8b5045db19c7 | |
parent | 5679dfd03c9761283e3a36d6d09798aaa334e1e9 (diff) | |
download | oms-d38793f9260c1ca8b96a049d04cc801413c8fb0e.tar.gz oms-d38793f9260c1ca8b96a049d04cc801413c8fb0e.tar.zst oms-d38793f9260c1ca8b96a049d04cc801413c8fb0e.zip |
Ajouté une ligne if __name__ == "main": pour que ça marche mieux
-rw-r--r-- | gestion_donnees.py | 4 | ||||
-rw-r--r-- | site.py | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gestion_donnees.py b/gestion_donnees.py index 2ba945d..2177fc8 100644 --- a/gestion_donnees.py +++ b/gestion_donnees.py | |||
@@ -51,9 +51,9 @@ def convertit_age_vers_texte(nombre): | |||
51 | """ convertit un nombre de jours en un truc plus lisible en mois, années, jours | 51 | """ convertit un nombre de jours en un truc plus lisible en mois, années, jours |
52 | et renvoie une chaîne sous la forme 3a2m1j par exemple""" | 52 | et renvoie une chaîne sous la forme 3a2m1j par exemple""" |
53 | annees = int(nombre / jours_dans_annee) | 53 | annees = int(nombre / jours_dans_annee) |
54 | restant = nombre - int(annees*jours_dans_annee) | 54 | restant = nombre - round(annees*jours_dans_annee) |
55 | mois = int(restant/jours_dans_mois) | 55 | mois = int(restant/jours_dans_mois) |
56 | jours= restant - int(mois*jours_dans_mois) | 56 | jours= restant - round(mois*jours_dans_mois) |
57 | 57 | ||
58 | chaine = "" | 58 | chaine = "" |
59 | if annees >0: | 59 | if annees >0: |
@@ -72,4 +72,5 @@ def export_donnees(): | |||
72 | 72 | ||
73 | return flask.Response(texte,mimetype="text/plain") | 73 | return flask.Response(texte,mimetype="text/plain") |
74 | 74 | ||
75 | app.run(host='0.0.0.0',debug=True) \ No newline at end of file | 75 | if __name__ == "__main__": |
76 | app.run(host='0.0.0.0',debug=True) \ No newline at end of file | ||