1 2 3 4 5 6 7 8 9 10
from tornado import web import os routes = [ ( r"/statics/(.*)", web.StaticFileHandler, {"path": os.path.join(os.path.dirname(__file__), "static")}, ) ]
Generated by nedoc v0.9 at 2020-12-29 14:05