summaryrefslogtreecommitdiffstats
path: root/support/testing/tests/package/sample_python_pyyaml_enc.py
blob: 30759949e21409f7de795042f89a4cfdfc100866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import yaml

data = {
    "name": "python-pyyaml",
    "versions": ["1", "2"],
    "group": {
        "is_a_package": True,
        "value": 42
    }
}
serialized = yaml.dump(data, default_flow_style=False)
print(serialized)
with open("/tmp/data.yml", "w") as f:
    f.write(serialized)
OpenPOWER on IntegriCloud