inital commit

This commit is contained in:
Ulrich Knechtelsdorfer
2016-02-13 16:18:48 +01:00
commit c84212e151
37 changed files with 1511 additions and 0 deletions

19
run.py Executable file
View File

@@ -0,0 +1,19 @@
#/bin/python
import wx
from app import app
from os import urandom
from app import gui
import thread
if __name__ == '__main__':
#start gui
wx = wx.App()
gui.MainWindow(None)
thread.start_new_thread(wx.MainLoop,())
# start flask
app.secret_key = urandom(24)
app.run(debug=True)
#app.run()