diff options
Diffstat (limited to 'cgi-bin/whisper.py')
-rw-r--r-- | cgi-bin/whisper.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cgi-bin/whisper.py b/cgi-bin/whisper.py new file mode 100644 index 0000000..0372b03 --- /dev/null +++ b/cgi-bin/whisper.py @@ -0,0 +1,20 @@ +import path +from path import Path +import connect +from connect import Connect + +class Whisper(object): + def build(whisperId): + conn = Connect.produce() + cursor = conn.cursor() + + whisper_file = open(Path.template("whisper.html"), 'r', encoding="utf8") + whisper_templ = whisper_file.read() + whisper_file.close() + + + + conn.close() + + + |