Initial import

This commit is contained in:
2011-09-06 14:33:27 +01:00
commit 02c067420a
25 changed files with 504 additions and 0 deletions

10
app.py Normal file
View File

@@ -0,0 +1,10 @@
import os
import logging
from hashlib import sha1
from apishiv import app
logging.basicConfig(level=logging.DEBUG)
app.secret_key = 'b63a3eb385a757d41ff5217f96d1bef965a6f657'
if __name__ == '__main__':
app.run('0.0.0.0', 3333, debug=True)