summaryrefslogtreecommitdiffstats
path: root/libraries/python-ruamel.yaml/README
diff options
context:
space:
mode:
author Alexander Verbovetsky <alik@ejik.org>2019-11-02 01:02:15 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2019-11-02 01:02:15 +0700
commitfcbcf721767ffdd1481b0ea1fc9161be7b788d65 (patch)
tree158191eae3b1108dc62936945400141ab71548e4 /libraries/python-ruamel.yaml/README
parent75af4c0d656103c9c1707bf263e6c68c229c61b4 (diff)
downloadslackbuilds-fcbcf721767ffdd1481b0ea1fc9161be7b788d65.tar.gz
slackbuilds-fcbcf721767ffdd1481b0ea1fc9161be7b788d65.tar.xz
libraries/python-ruamel.yaml: Added (YAML 1.2 parser and emitter).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/python-ruamel.yaml/README')
-rw-r--r--libraries/python-ruamel.yaml/README15
1 files changed, 15 insertions, 0 deletions
diff --git a/libraries/python-ruamel.yaml/README b/libraries/python-ruamel.yaml/README
new file mode 100644
index 0000000000..28dd43dc00
--- /dev/null
+++ b/libraries/python-ruamel.yaml/README
@@ -0,0 +1,15 @@
+YAML is a human friendly data serialization standard for all programming
+languages. It is commonly used for configuration files, logs, etc.
+
+ruamel.yaml is a YAML 1.2 loader/dumper package for Python. It is a
+derivative of Kirill Simonov’s PyYAML 3.11.
+
+ruamel.yaml supports YAML 1.2 and has round-trip loaders and dumpers
+that preserves, among others:
+
+* comments
+* block style and key ordering are kept, so you can diff the
+ round-tripped source
+* flow style sequences ( ‘a: b, c, d’)
+* anchor names that are hand-crafted (i.e. not of the form``idNNN``)
+* merges in dictionaries are preserved