summaryrefslogtreecommitdiff
path: root/pypers/europython05/hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'pypers/europython05/hello.py')
-rwxr-xr-xpypers/europython05/hello.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pypers/europython05/hello.py b/pypers/europython05/hello.py
new file mode 100755
index 0000000..c8f176f
--- /dev/null
+++ b/pypers/europython05/hello.py
@@ -0,0 +1,7 @@
+from ms.quixote_utils_exp import Website, htmlpage
+
+@htmlpage()
+def hello():
+ return "hello world"
+
+Website(hello).publisher().run_show(page="hello",port=7080)