1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
``tornado.options`` --- Command-line parsing
============================================
.. automodule:: tornado.options
Global functions
----------------
.. autofunction:: define
.. py:data:: options
Global options object. All defined options are available as attributes
on this object.
.. autofunction:: parse_command_line
.. autofunction:: parse_config_file
.. autofunction:: print_help(file=sys.stderr)
.. autofunction:: add_parse_callback
.. autoexception:: Error
OptionParser class
------------------
.. autoclass:: OptionParser
:members:
|