aboutsummaryrefslogtreecommitdiff
path: root/web/test.py
diff options
context:
space:
mode:
authorClyhtsuriva Synck <clyhtsuriva>2020-03-01 14:18:05 +0100
committerClyhtsuriva Synck <clyhtsuriva>2020-03-01 14:18:05 +0100
commit06ad4b73d54beb6f81d0b43d49f2a0701c87fcfb (patch)
treeadd0a5ceebaa19dcecd7240b661cd8ee96cb47c9 /web/test.py
parent5071a27336700e4267325c038042565885ec6518 (diff)
web update
Diffstat (limited to 'web/test.py')
-rw-r--r--web/test.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/web/test.py b/web/test.py
new file mode 100644
index 0000000..4da1d58
--- /dev/null
+++ b/web/test.py
@@ -0,0 +1,9 @@
+#!/usr/bin/python3
+# -*- coding: utf-8 -*-
+
+import mod_python
+import fonctions
+
+def index(req):
+ req.content_type="text/html"
+ req.write(fonctions.baseHTML("Test","This is a test page."))