tf.compat.v1.flags.FlagValues

Registry of 'Flag' objects.

tf.compat.v1.flags.FlagValues()

A 'FlagValues' can then scan command line arguments, passing flag arguments through to the 'Flag' objects that it owns. It also provides easy access to the flag values. Typically only one 'FlagValues' object is needed by an application: flags.FLAGS

This class is heavily overloaded:

'Flag' objects are registered via setitem: FLAGS['longname'] = x # register a new flag

The .value attribute of the registered 'Flag' objects can be accessed as attributes of this 'FlagValues' object, through getattr. Both the long and short name of the original 'Flag' objects can be used to access its value: FLAGS.longname # parsed flag value FLAGS.x # parsed flag value (short name)

Command line arguments are scanned and passed to the registered 'Flag' objects through the call method. Unparsed arguments, including argv0 are returned. argv = FLAGS(sys.argv) # scan command line arguments

The original registered Flag objects can be retrieved through the use of the dictionary-like operator, getitem: x = FLAGS['longname'] # access the registered Flag object

The str() operator of a 'FlagValues' object provides help for all of the registered 'Flag' objects.

Methods

__call__

__call__(
    argv, known_only=False
)

Parses flags from argv; stores parsed flags into this FlagValues object.

All unparsed arguments are returned.

Args:

Returns:

The list of arguments not parsed as options, including argv[0].

Raises:

__contains__

__contains__(
    name
)

Returns True if name is a value (flag) in the dict.

__getitem__

__getitem__(
    name
)

Returns the Flag object for the flag --name.

__iter__

__iter__()

__len__

__len__()

append_flag_values

append_flag_values(
    flag_values
)

Appends flags registered in another FlagValues instance.

Args:

append_flags_into_file

append_flags_into_file(
    filename
)

Appends all flags assignments from this FlagInfo object to a file.

Output will be in the format of a flagfile.

NOTE: MUST mirror the behavior of the C++ AppendFlagsIntoFile from https://github.com/gflags/gflags.

Args:

find_module_defining_flag

find_module_defining_flag(
    flagname, default=None
)

Return the name of the module defining this flag, or default.

Args:

Returns:

The name of the module which registered the flag with this name. If no such module exists (i.e. no flag with this name exists), we return default.

find_module_id_defining_flag

find_module_id_defining_flag(
    flagname, default=None
)

Return the ID of the module defining this flag, or default.

Args:

Returns:

The ID of the module which registered the flag with this name. If no such module exists (i.e. no flag with this name exists), we return default.

flag_values_dict

flag_values_dict()

Returns a dictionary that maps flag names to flag values.

flags_by_module_dict

flags_by_module_dict()

Returns the dictionary of module_name -> list of defined flags.

Returns:

A dictionary. Its keys are module names (strings). Its values are lists of Flag objects.

flags_by_module_id_dict

flags_by_module_id_dict()

Returns the dictionary of module_id -> list of defined flags.

Returns:

A dictionary. Its keys are module IDs (ints). Its values are lists of Flag objects.

flags_into_string

flags_into_string()

Returns a string with the flags assignments from this FlagValues object.

This function ignores flags whose value is None. Each flag assignment is separated by a newline.

NOTE: MUST mirror the behavior of the C++ CommandlineFlagsIntoString from https://github.com/gflags/gflags.

Returns:

str, the string with the flags assignments from this FlagValues object. The flags are ordered by (module_name, flag_name).

get_flag_value

get_flag_value(
    name, default
)

Returns the value of a flag (if not None) or a default value.

Args:

Returns:

Requested flag value or default.

get_help

get_help(
    prefix='', include_special_flags=True
)

Returns a help string for all known flags.

Args:

Returns:

str, formatted help message.

get_key_flags_for_module

get_key_flags_for_module(
    module
)

Returns the list of key flags for a module.

Args:

Returns:

[Flag], a new list of Flag instances. Caller may update this list as

is_gnu_getopt

is_gnu_getopt()

is_parsed

is_parsed()

Returns whether flags were parsed.

key_flags_by_module_dict

key_flags_by_module_dict()

Returns the dictionary of module_name -> list of key flags.

Returns:

A dictionary. Its keys are module names (strings). Its values are lists of Flag objects.

main_module_help

main_module_help()

Describes the key flags of the main module.

Returns:

str, describing the key flags of the main module.

mark_as_parsed

mark_as_parsed()

Explicitly marks flags as parsed.

Use this when the caller knows that this FlagValues has been parsed as if a call() invocation has happened. This is only a public method for use by things like appcommands which do additional command like parsing.

module_help

module_help(
    module
)

Describes the key flags of a module.

Args:

Returns:

str, describing the key flags of a module.

read_flags_from_files

read_flags_from_files(
    argv, force_gnu=True
)

Processes command line args, but also allow args to be read from file.

Args:

Returns:

A new list which has the original list combined with what we read from any flagfile(s).

Raises:

This function is called by FLAGS(argv). It scans the input list for a flag that looks like: --flagfile=. Then it opens , reads all valid key and value pairs and inserts them into the input list in exactly the place where the --flagfile arg is found.

Note that your application's flags are still defined the usual way using absl.flags DEFINE_flag() type functions.

Notes (assuming we're getting a commandline of some sort as our input): --> For duplicate flags, the last one we hit should "win". --> Since flags that appear later win, a flagfile's settings can be "weak" if the --flagfile comes at the beginning of the argument sequence, and it can be "strong" if the --flagfile comes at the end. --> A further "--flagfile=" CAN be nested in a flagfile. It will be expanded in exactly the spot where it is found. --> In a flagfile, a line beginning with # or // is a comment. --> Entirely blank lines should be ignored.

register_flag_by_module

register_flag_by_module(
    module_name, flag
)

Records the module that defines a specific flag.

We keep track of which flag is defined by which module so that we can later sort the flags by module.

Args:

register_flag_by_module_id

register_flag_by_module_id(
    module_id, flag
)

Records the module that defines a specific flag.

Args:

register_key_flag_for_module

register_key_flag_for_module(
    module_name, flag
)

Specifies that a flag is a key flag for a module.

Args:

remove_flag_values

remove_flag_values(
    flag_values
)

Remove flags that were previously appended from another FlagValues.

Args:

set_default

set_default(
    name, value
)

Changes the default value of the named flag object.

The flag's current value is also updated if the flag is currently using the default value, i.e. not specified in the command line, and not set by FLAGS.name = value.

Args:

Raises:

set_gnu_getopt

set_gnu_getopt(
    gnu_getopt=True
)

Sets whether or not to use GNU style scanning.

GNU style allows mixing of flag and non-flag arguments. See http://docs.python.org/library/getopt.html#getopt.gnu_getopt

Args:

unparse_flags

unparse_flags()

Unparses all flags to the point before any FLAGS(argv) was called.

write_help_in_xml_format

write_help_in_xml_format(
    outfile=None
)

Outputs flag documentation in XML format.

NOTE: We use element names that are consistent with those used by the C++ command-line flag library, from https://github.com/gflags/gflags. We also use a few new elements (e.g., ), but we do not interfere / overlap with existing XML elements used by the C++ library. Please maintain this consistency.

Args: