Tornado has a default static file handler, but it displays the url in / static /, will it be ok if you have to access your static file in /static/webchat.css?
If you're okay with this, I highly recommend that you handle the static file this way.
If you want your static file to be in the root path, take a look at web.StaticFileHandler.
If you missed it, here is an example
(r"/static/(.*)", web.StaticFileHandler, {"path": "/var/www"}),
BTW, File_Name and Handlers not considered good variable names in Python.
source share