Iterating through YAML list in python

Rikg09

I'm trying to read a YAML file and print out the list I have on there in order of what it is in the file.

So YAML:

b: ...
a: ...

And my python is:

for key, value in yaml.load(open(input_file)).items():
    print(str(key))

The output becomes:

a
b

However I need it to be b then a. I've also tried iteritems(), and I get the same result.

Anthon

If your YAML file contains:

b: 2
a: 1

Then parsing like this:

from ruamel.yaml import YAML

yaml = YAML()
input_file = 'input.yaml'

for key, value in yaml.load(open(input_file)).items():
    print(str(key))

will print b first. If you however use the (faster):

yaml = YAML(typ='safe')

this is not guaranteed, as the order of mapping keys is not guaranteed by by the YAML specification.

If you are using YAML 1.1 and PyYAML, there is no such guarantee of order, but then you should not be using yaml.load() in the first place, because it is unsafe.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related