def help():
'''
Documentation page
'''
info = open(curScriptDir + "/help.html", 'rt')
helpContent = info.read()
info.close()
# allow us to modify headers
resp = make_response(helpContent)
resp.headers['Server'] = 'PyKI amaibach API'
return(resp)
评论列表
文章目录