I'd like to get PyYAML's loader to load mappings (and ordered mappings) into the Python 2.7+ OrderedDict type, instead of the vanilla dict and list of pairs it currently uses.
What's the best way to do that?
|
I'd like to get PyYAML's loader to load mappings (and ordered mappings) into the Python 2.7+ OrderedDict type, instead of the vanilla What's the best way to do that? |
|||
|
|
|
I doubt very much that this is the best way to do it, but this is the way I came up with, and it does work. Also available as a gist.
|
|||||
|
|
There is a PyYAML ticket on the subject opened 5 years ago. It contains some relevant links, including the link to this very question :) I personally grabbed gist 317164 and modified it a little bit to use OrderedDict from Python 2.7, not the included implementation (just replaced the class with |
|||
|