
Both @jlowdermilk and I have tried to use this for initial configuration work. It's cheaper just to import it for now: Name: PyYAML Version: 3.11 Summary: YAML parser and emitter for Python Home-page: http://pyyaml.org/wiki/PyYAML Author: Kirill Simonov Author-email: xi@resolvent.net License: MIT Download-URL: http://pyyaml.org/download/pyyaml/PyYAML-3.11.tar.gz Description: YAML is a data serialization format designed for human readability and interaction with scripting languages. PyYAML is a YAML parser and emitter for Python. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle support, capable extension API, and sensible error messages. PyYAML supports standard YAML tags and provides Python-specific tags that allow to represent an arbitrary Python object. PyYAML is applicable for a broad range of tasks from complex configuration files to object serialization and persistance.
52 lines
1.3 KiB
Python
52 lines
1.3 KiB
Python
|
|
import yaml
|
|
|
|
class AnInstance:
|
|
|
|
def __init__(self, foo, bar):
|
|
self.foo = foo
|
|
self.bar = bar
|
|
|
|
def __repr__(self):
|
|
try:
|
|
return "%s(foo=%r, bar=%r)" % (self.__class__.__name__,
|
|
self.foo, self.bar)
|
|
except RuntimeError:
|
|
return "%s(foo=..., bar=...)" % self.__class__.__name__
|
|
|
|
class AnInstanceWithState(AnInstance):
|
|
|
|
def __getstate__(self):
|
|
return {'attributes': [self.foo, self.bar]}
|
|
|
|
def __setstate__(self, state):
|
|
self.foo, self.bar = state['attributes']
|
|
|
|
def test_recursive(recursive_filename, verbose=False):
|
|
context = globals().copy()
|
|
exec(open(recursive_filename, 'rb').read(), context)
|
|
value1 = context['value']
|
|
output1 = None
|
|
value2 = None
|
|
output2 = None
|
|
try:
|
|
output1 = yaml.dump(value1)
|
|
value2 = yaml.load(output1)
|
|
output2 = yaml.dump(value2)
|
|
assert output1 == output2, (output1, output2)
|
|
finally:
|
|
if verbose:
|
|
print("VALUE1:", value1)
|
|
print("VALUE2:", value2)
|
|
print("OUTPUT1:")
|
|
print(output1)
|
|
print("OUTPUT2:")
|
|
print(output2)
|
|
|
|
test_recursive.unittest = ['.recursive']
|
|
|
|
if __name__ == '__main__':
|
|
import test_appliance
|
|
test_appliance.run(globals())
|
|
|