python Tornado StaticFileHandler用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Tornado StaticFileHandler用法相关的知识,希望对你有一定的参考价值。
class Application(tornado.web.Application):
def __init__(self):
handlers = [
(r"/(.*)", StaticFileHandler, {"path": "/home/yundongx/gitroom/bwangel23.github.io/public",
"default_filename": "index.html"})
]
settings = dict(
cookie_secret="__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__",
# template_path=os.path.join(os.path.dirname(__file__), "templates"),
# static_path=os.path.join(os.path.dirname(__file__), "static"),
xsrf_cookies=True,
debug=True,
)
super(Application, self).__init__(handlers, **settings)
以上是关于python Tornado StaticFileHandler用法的主要内容,如果未能解决你的问题,请参考以下文章
Python框架之Tornado
资源分享_Tornado.GitHub Python网页框架Tornado资源集合
Python自动化开发学习-Tornado
python-Tornado 框架
python中干掉tornado的连接失败日志
python 之Tornado