aboutsummaryrefslogtreecommitdiff
path: root/www/html/fonctions.py
diff options
context:
space:
mode:
Diffstat (limited to 'www/html/fonctions.py')
-rwxr-xr-xwww/html/fonctions.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/www/html/fonctions.py b/www/html/fonctions.py
new file mode 100755
index 0000000..c1566af
--- /dev/null
+++ b/www/html/fonctions.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python3
+# -*- coding: utf-8 -*-
+import psycopg2
+
+def baseHTML(title,body):
+ content=("""<!DOCTYPE html>
+<html>
+ <head>
+ <title>"""+ title +"""</title>
+ <meta charset="UTF-8">
+ <link rel="stylesheet" type="text/css" href="style.css">
+ </head>
+ <body>"""+ body +"""</body>
+</html>
+
+ """)
+ return content
+
+
+def connexionBD():
+ connexion=psycopg2.connect ("host='localhost' dbname='atsdb' user='atsuser' password='123456'")
+ return connexion
+