summaryrefslogtreecommitdiff
path: root/example/so_13517753.py
blob: af1fc2ab7e7feb391060aeef8d56d2089c72ea64 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from __future__ import print_function

# import sys
import ruamel.yaml
from ruamel.yaml.comments import CommentedMap

# class MyObj():
#     name = "boby"
#     age = 34
#
# print(ruamel.yaml.dump(MyObj())) # , Dumper=ruamel.yaml.RoundTripDumper), end='')
#
# inp = """\
# boby:       # this is the name
#    age: 34  # in years
# """
#
# print('====', ruamel.yaml.load(inp))
#
#
# data1 = ruamel.yaml.load(inp, Loader=ruamel.yaml.RoundTripLoader)
# print('<<<', data1.ca.items)
# print(ruamel.yaml.dump(data1, Dumper=ruamel.yaml.RoundTripDumper), end='')
#
# print('----------------')


class MyObj():
    name = "boby"
    age = 34

    def convert_to_yaml_struct(self):
        x = CommentedMap()
        a = CommentedMap()
        x[data.name] = a
        x.yaml_add_eol_comment('this is the name', 'boby', 11)
        a['age'] = data.age
        a.yaml_add_eol_comment('in years', 'age', 11)
        print('>>>', x.ca.items)
        return x

    @staticmethod
    def yaml_representer(dumper, data, flow_style=False):
        assert isinstance(dumper, ruamel.yaml.RoundTripDumper)
        return dumper.represent_dict(data.convert_to_yaml_struct())


ruamel.yaml.RoundTripDumper.add_representer(MyObj, MyObj.yaml_representer)

data = MyObj()

print(ruamel.yaml.dump(data, Dumper=ruamel.yaml.RoundTripDumper), end='')