def index(): returnDict = {} returnDict['user'] = '******' returnDict['title'] = 'Home' returnDict['sysinfo'] = main.main() return render_template("index.html", **returnDict)
def get_platform_info(): return (main.main())
def maint(): print(main.main()) return
def index(): returnDict = {} returnDict['user'] = '******' returnDict['title'] = 'Home' returnDict['info'] = main() return render_template("index.html", **returnDict)
def index(): returnDict = {} returnDict['user'] = '******' # Feel free to put your name here! returnDict['title'] = 'Home' returnDict['info'] = main() return render_template("index.html", **returnDict)
def index(): returnDict = {} returnDict['user'] = main.main() # Feel free to put your name here returnDict['title'] = 'Home' return render_template("index.html", **returnDict)
def index(): returnDict = {} returnDict['user'] = '******' returnDict['title'] = 'Home' returnDict['platform'] = main() return render_template("index.html", **returnDict)
def index(): returnDict = {} returnDict['platform'] = m.main() return render_template("index.html", **returnDict)