__init__([description, doc, implicit, ...])
|
|
add(name, config, **kwargs)
|
|
clear()
|
|
declare(name, config)
|
Declare a new configuration item in the ConfigDict |
declare_as_argument(*args, **kwds)
|
Map this Config item to an argparse argument. |
declare_from(other[, skip])
|
|
display([content_filter, indent_spacing, ...])
|
Print the current Config value, in YAML format. |
domain_name()
|
|
generate_documentation([block_start, ...])
|
Document the this Config object. |
generate_yaml_template([indent_spacing, ...])
|
Document Config object, in YAML format. |
get(k[,d])
|
|
import_argparse(parsed_args)
|
Import parsed arguments back into this Config object |
initialize_argparse(parser)
|
Initialize an ArgumentParser with arguments from this Config object. |
items()
|
|
iteritems()
|
DEPRECATED. |
iterkeys()
|
DEPRECATED. |
itervalues()
|
DEPRECATED. |
keys()
|
|
name([fully_qualified])
|
|
pop(k[,d])
|
If key is not found, d is returned if given, otherwise KeyError is raised. |
popitem()
|
as a 2-tuple; but raise KeyError if D is empty. |
reset()
|
|
set_default_value(default)
|
|
set_domain(domain)
|
|
set_value(value[, skip_implicit])
|
|
setdefault(k[,d])
|
|
unused_user_values()
|
|
update([E, ]**F)
|
If E present and has a .keys() method, does: for k in E.keys(): D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v |
user_values()
|
|
value([accessValue])
|
|
values()
|
|