tornado.options — Command-line parsing¶
A command line parsing module that lets modules define their own options.
Each module defines its own options which are added to the globaloption namespace, e.g.:
- from tornado.options import define, options
- define("mysql_host", default="127.0.0.1:3306", help="Main user DB")
- define("memcache_hosts", default="127.0.0.1:11011", multiple=True,
- help="Main user memcache servers")
- def connect():
- db = database.Connection(options.mysql_host)
- ...
The main()
method of your application does not need to be aware of all ofthe options used throughout your program; they are all automatically loadedwhen the modules are loaded. However, all modules that define optionsmust have been imported before the command line is parsed.
Your main()
method can parse the command line or parse a config file witheither:
- tornado.options.parse_command_line()
- # or
- tornado.options.parse_config_file("/etc/server.conf")
Command line formats are what you would expect (—myoption=myvalue
).Config files are just Python files. Global names become options, e.g.:
- myoption = "myvalue"
- myotheroption = "myothervalue"
We support datetimes
, timedeltas
, ints, and floats (just pass a type
kwarg todefine
). We also accept multi-value options. See the documentation fordefine()
below.
tornado.options.options
is a singleton instance of OptionParser
, andthe top-level functions in this module (define
, parse_command_line
, etc)simply call methods on it. You may create additional OptionParser
instances to define isolated sets of options, such as for subcommands.
注解
By default, several options are defined that will configure thestandard logging
module when parse_command_line
or parse_config_file
are called. If you want Tornado to leave the logging configurationalone so you can manage it yourself, either pass —logging=none
on the command line or do the following to disable it in code:
- from tornado.options import options, parse_command_line
- options.logging = None
- parse_command_line()
在 4.3 版更改: Dashes and underscores are fully interchangeable in option names;options can be defined, set, and read with any mix of the two.Dashes are typical for command-line usage while config files requireunderscores.
Global functions¶
tornado.options.
define
(name, default=None, type=None, help=None, metavar=None, multiple=False, group=None, callback=None)[源代码]¶
Defines an option in the global namespace.
SeeOptionParser.define
.
tornado.options.
options
¶
Global options object. All defined options are available as attributeson this object.
tornado.options.
parsecommand_line
(_args=None, final=True)[源代码]¶
Parses global options from the command line.
SeeOptionParser.parse_command_line
.
tornado.options.
parseconfig_file
(_path, final=True)[源代码]¶
Parses global options from a config file.
SeeOptionParser.parse_config_file
.
tornado.options.
printhelp
(_file=sys.stderr)[源代码]¶
Prints all the command line options to stderr (or another file).
SeeOptionParser.print_help
.
tornado.options.
addparse_callback
(_callback)[源代码]¶
Adds a parse callback, to be invoked when option parsing is done.
SeeOptionParser.add_parse_callback
OptionParser class¶
- class
tornado.options.
OptionParser
[源代码]¶
A collection of options, a dictionary with object-like access.
Normally accessed via static functions in thetornado.options
module,which reference a global instance.define
(_name, default=None, type=None, help=None, metavar=None, multiple=False, group=None, callback=None)[源代码]¶
Defines a new command line option.
Iftype
is given (one of str, float, int, datetime, or timedelta)or can be inferred from thedefault
, we parse the command linearguments based on the given type. Ifmultiple
is True, we acceptcomma-separated values, and the option value is always a list.
For multi-value integers, we also accept the syntaxx:y
, whichturns intorange(x, y)
- very useful for long integer ranges.help
andmetavar
are used to construct theautomatically generated command line help string. The helpmessage is formatted like:- —name=METAVAR help string
group
is used to group the defined options in logicalgroups. By default, command line options are grouped by thefile in which they are defined.
Command line option names must be unique globally. They can be parsedfrom the command line withparse_command_line
or parsed from aconfig file withparse_config_file
.
If acallback
is given, it will be run with the new value wheneverthe option is changed. This can be used to combine command-lineand file-based options:- define("config", type=str, help="path to config file",
callback=lambda path: parseconfig_file(path, final=False))
With this definition, options in the file specified by—config
willoverride options set earlier on the command line, but can be overriddenby later flags.- —name=METAVAR help string
group_dict
(_group)[源代码]¶
The names and values of options in a group.
Useful for copying options into Application settings:- from tornado.options import define, parsecommandline, options
define('templatepath', group='application')
define('staticpath', group='application')
parsecommand_line()
application = Application(
handlers, **options.group_dict('application'))
3.1 新版功能.- from tornado.options import define, parsecommandline, options
mockable
()[源代码]¶
Returns a wrapper around self that is compatible withmock.patch
.
Themock.patch
function (included inthe standard libraryunittest.mock
package since Python 3.3,or in the third-partymock
package for older versions ofPython) is incompatible with objects likeoptions
thatoverride__getattr
and__setattr
. This functionreturns an object that can be used withmock.patch.object
to modify option values:- with mock.patch.object(options.mockable(), 'name', value):
assert options.name == value
- with mock.patch.object(options.mockable(), 'name', value):
parse_command_line
(_args=None, final=True)[源代码]¶
Parses all options given on the command line (defaults tosys.argv
).
Note thatargs[0]
is ignored since it is the program nameinsys.argv
.
We return a list of all arguments that are not parsed as options.
Iffinal
isFalse
, parse callbacks will not be run.This is useful for applications that wish to combine configurationsfrom multiple sources.
parseconfig_file
(_path, final=True)[源代码]¶
Parses and loads the Python config file at the given path.
Iffinal
isFalse
, parse callbacks will not be run.This is useful for applications that wish to combine configurationsfrom multiple sources.
在 4.1 版更改: Config files are now always interpreted as utf-8 instead ofthe system default encoding.
在 4.4 版更改: The special variablefile
is available inside configfiles, specifying the absolute path to the config file itself.
原文:
https://tornado-zh-cn.readthedocs.io/zh_CN/latest/options.html