Right now I have tornado options in same file, as in tornado app. And they defined like:
import tornado.options
tornado.options.define(<name>, default=<value>)
Is there way to move them out to separate file?
And also, options accessed by default like this:
tornado.options.options.<name>
Is there any way to access them just like settings.<name>?
The documentation is pretty good for Tornado.
http://www.tornadoweb.org/en/latest/options.html