Skip to main content

ruamel.yaml

Starting with 0.10.7 the package has been reorganised and the command line utility is in its own package ruamel.yaml.cmd (so installing ruamel.yaml doesn’t pull in possibly irrelevant modules only used in the command line utility)

ruamel.yaml is a YAML package for Python. It is a derivative of Kirill Simonov’s PyYAML 3.11 which supports YAML1.1

Major differences with PyYAML 3.11:

  • integrated Python 2 and 3 sources, running on Python 2.6, 2.7 (CPython, PyPy), 3.3 and 3.4.

  • round trip mode that includes comments (block mode, key ordering kept)

  • support for simple lists as mapping keys by transforming these to tuples

  • !!omap generates ordereddict (C) on Python 2, collections.OrderedDict on Python 3, and !!omap is generated for these types.

  • some YAML 1.2 enhancements (0o octal prefix, \/ escape)

  • pep8 compliance

  • tox and py.test based testing

  • Tests whether the C yaml library is installed as well as the header files. That library doesn’t generate CommentTokens, so it cannot be used to do round trip editing on comments. It can be used to speed up normal processing (so you don’t need to install ruamel.yaml and PyYaml). See the section Optional requirements.

  • Basic support for multiline strings with preserved newlines and chomping ( ‘|’, ‘|+’, ‘|-’ ). As this subclasses the string type the information is lost on reassignment. (This might be changed in the future so that the preservation/folding/chomping is part of the parent container, like comments).

  • RoundTrip preservation of flow style sequences ( ‘a: b, c, d’) (based on request and test by Anthony Sottile)

  • anchors names that are hand-crafted (not of the form``idNNN``) are preserved

  • merges in dictionaries are preserved

  • adding/replacing comments on block-style sequences and mappings with smart column positioning

  • collection objects (when read in via RoundTripParser) have an lc property that contains line and column info lc.line and lc.col. Individual positions for mappings and sequences can also be retrieved (lc.key('a'), lc.value('a') resp. lc.item(3))

  • preservation of whitelines after block scalars. Contributed by Sam Thursfield.

Round trip including comments

The major motivation for this fork is the round-trip capability for comments. The integration of the sources was just an initial step to make this easier.

adding/replacing comments

Starting with version 0.8, you can add/replace comments on block style collections (mappings/sequences resuting in Python dict/list). The basic for for this is:

from __future__ import print_function

import ruamel.yaml

inp = """\
abc:
  - a     # comment 1
xyz:
  a: 1    # comment 2
  b: 2
  c: 3
  d: 4
  e: 5
  f: 6 # comment 3
"""

data = ruamel.yaml.load(inp, ruamel.yaml.RoundTripLoader)
data['abc'].append('b')
data['abc'].yaml_add_eol_comment('comment 4', 1)  # takes column of comment 1
data['xyz'].yaml_add_eol_comment('comment 5', 'c')  # takes column of comment 2
data['xyz'].yaml_add_eol_comment('comment 6', 'e')  # takes column of comment 3
data['xyz'].yaml_add_eol_comment('comment 7', 'd', column=20)

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

Resulting in:

abc:
- a       # comment 1
- b       # comment 4
xyz:
  a: 1    # comment 2
  b: 2
  c: 3    # comment 5
  d: 4              # comment 7
  e: 5 # comment 6
  f: 6 # comment 3

If the comment doesn’t start with ‘#’, this will be added. The key is the element index for list, the actual key for dictionaries. As can be seen from the example, the column to choose for a comment is derived from the previous, next or preceding comment column (picking the first one found).

Config file formats

There are only a few configuration file formats that are easily readable and editable: JSON, INI/ConfigParser, YAML (XML is to cluttered to be called easily readable).

Unfortunately JSON doesn’t support comments, and although there are some solutions with pre-processed filtering of comments, there are no libraries that support round trip updating of such commented files.

INI files support comments, and the excellent ConfigObj library by Foord and Larosa even supports round trip editing with comment preservation, nesting of sections and limited lists (within a value). Retrieval of particular value format is explicit (and extensible).

YAML has basic mapping and sequence structures as well as support for ordered mappings and sets. It supports scalars various types including dates and datetimes (missing in JSON). YAML has comments, but these are normally thrown away.

Block structured YAML is a clean and very human readable format. By extending the Python YAML parser to support round trip preservation of comments, it makes YAML a very good choice for configuration files that are human readable and editable while at the same time interpretable and modifiable by a program.

Extending

There are normally six files involved when extending the roundtrip capabilities: the reader, parser, composer and constructor to go from YAML to Python and the resolver, representer, serializer and emitter to go the other way.

Extending involves keeping extra data around for the next process step, eventuallly resulting in a different Python object (subclass or alternative), that should behave like the original, but on the way from Python to YAML generates the original (or at least something much closer).

Smartening

When you use round-tripping, then the complex data you get are already subclasses of the built-in types. So you can patch in extra methods or override existing ones. Some methods are already included and you can do:

yaml_str = """\
a:
- b:
  c: 42
- d:
    f: 196
  e:
    g: 3.14
"""


data = yaml.load(yaml_str, Loader=yaml.RoundTripLoader)

assert data.mlget(['a', 1, 'd', 'f'], list_ok=True) == 196

Examples

Basic round trip of parsing YAML to Python objects, modifying and generating YAML:

from __future__ import print_function

import ruamel.yaml

inp = """\
# example
name:
  # details
  family: Smith   # very common
  given: Alice    # one of the siblings
"""

code = ruamel.yaml.load(inp, ruamel.yaml.RoundTripLoader)
code['name']['given'] = 'Bob'

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

Resulting in

# example
name:
  # details
  family: Smith   # very common
  given: Bob      # one of the siblings

YAML handcrafted anchors and references as well as key merging is preserved. The merged keys can transparently be accessed using [] and .get():

import ruamel.yaml

inp = """\
- &CENTER {x: 1, y: 2}
- &LEFT {x: 0, y: 2}
- &BIG {r: 10}
- &SMALL {r: 1}
# All the following maps are equal:
# Explicit keys
- x: 1
  y: 2
  r: 10
  label: center/big
# Merge one map
- <<: *CENTER
  r: 10
  label: center/big
# Merge multiple maps
- <<: [*CENTER, *BIG]
  label: center/big
# Override
- <<: [*BIG, *LEFT, *SMALL]
  x: 1
  label: center/big
"""

data = ruamel.yaml.load(inp, ruamel.yaml.RoundTripLoader)
assert data[7]['y'] == 2

Optional requirements

If you have the C yaml library and headers installed, as well as the header files for your Python executables then you can use the non-roundtrip but faster C loader and emitter.

On Debian systems you should use:

sudo apt-get install libyaml-dev python-dev python3-dev

you can leave out python3-dev if you don’t use python3

For CentOS (7) based systems you should do:

sudo yum install libyaml-devel python-devel

Testing

Testing is done using tox, which uses virtualenv and pytest.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ruamel.yaml-0.10.13.tar.gz (234.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ruamel.yaml-0.10.13-cp34-none-win_amd64.whl (71.1 kB view details)

Uploaded CPython 3.4Windows x86-64

ruamel.yaml-0.10.13-cp34-none-win32.whl (71.1 kB view details)

Uploaded CPython 3.4Windows x86

ruamel.yaml-0.10.13-cp33-none-win_amd64.whl (71.1 kB view details)

Uploaded CPython 3.3Windows x86-64

ruamel.yaml-0.10.13-cp33-none-win32.whl (71.1 kB view details)

Uploaded CPython 3.3Windows x86

ruamel.yaml-0.10.13-cp27-none-win_amd64.whl (71.2 kB view details)

Uploaded CPython 2.7Windows x86-64

ruamel.yaml-0.10.13-cp27-none-win32.whl (71.2 kB view details)

Uploaded CPython 2.7Windows x86

ruamel.yaml-0.10.13-cp26-none-win_amd64.whl (71.2 kB view details)

Uploaded CPython 2.6Windows x86-64

ruamel.yaml-0.10.13-cp26-none-win32.whl (71.2 kB view details)

Uploaded CPython 2.6Windows x86

File details

Details for the file ruamel.yaml-0.10.13.tar.gz.

File metadata

  • Download URL: ruamel.yaml-0.10.13.tar.gz
  • Upload date:
  • Size: 234.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for ruamel.yaml-0.10.13.tar.gz
Algorithm Hash digest
SHA256 562b52d3a8d328961a7abd8d6de7967bc212cf6528d8cb81bf9db55469b13565
MD5 b75f26de99274d9bc107b02fc4552d31
BLAKE2b-256 9ec4a7b8832418274bbf13d95c70ffe331b8904624b09408168d06be467cfb5e

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.10.13-cp34-none-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.10.13-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 0af8a42c62713f8fc391b98b5cdcab2dbc1792a03401aef50d39ffc7b4b151b6
MD5 29dd03f7d2fb393d031cd6f16d8d35e1
BLAKE2b-256 7e88c15bfe95b6bd0ff63ec064ffd36d1b36db3f057ee0f00d3f6bc688a26e32

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.10.13-cp34-none-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.10.13-cp34-none-win32.whl
Algorithm Hash digest
SHA256 1d486dc9234befba4e04ebbb878103dde8cb3fba49b44dc4728e8ae2b65bf5e0
MD5 0bddbf3635cbdc92c04a11026c0a166e
BLAKE2b-256 ffa2b2df6e2df6cc1bd57963f89b229bdf55ff0790560f8eae11281673e6c98a

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.10.13-cp33-none-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.10.13-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 c1883e1ded2026b3b2add6b7f2738eb5dd4202a42a3423defc574c17e8bf2407
MD5 e8d315e5039f01436ce966cb2c6b3642
BLAKE2b-256 ba302299c74216d63903c67f806caa9f3d4b9d980c196eddd3eee777e8ea62dc

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.10.13-cp33-none-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.10.13-cp33-none-win32.whl
Algorithm Hash digest
SHA256 ffa72efbd86013bbcbfa647bf2c9df81cff5075f8c540a1b55c89d1f48b734c8
MD5 50a0ae116baa89b5bdff10fd3f5feb96
BLAKE2b-256 82b314bbc398bdb6cf5d667da0c8aaa43e1c6b46de13d0d78e62f4d4a6645c77

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.10.13-cp27-none-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.10.13-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 76e5d2554eccd2780a04bacf360fd066cba0b9ef1a4a436c19bb2afdf322f226
MD5 c2aa6ef469f7ccad707b85f567b89006
BLAKE2b-256 7b0053a179b1c02cf3611f301ee3f05360a88c1f390867e496383910fbba7fd9

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.10.13-cp27-none-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.10.13-cp27-none-win32.whl
Algorithm Hash digest
SHA256 b195841579faa11b9c1b6c18fe91f53323991e9c8b18ae9919217ede0e94759f
MD5 f6af80a6bb3cb62af2faae59eb5e8910
BLAKE2b-256 dba651750155e06637728bc2b220aef62b3af55d6a65f4f9e8ff3648cc51eff6

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.10.13-cp26-none-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.10.13-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 0e244d36db816a3079ef961e754b1bdb1a3ceab3e8169d239325032d866a068c
MD5 f4535fc627bb6d84a93cdcf910d78db5
BLAKE2b-256 82027399811fa58027e5022eab000af5693b1ea1e3b7f78b0975b1aea02cc605

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.10.13-cp26-none-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.10.13-cp26-none-win32.whl
Algorithm Hash digest
SHA256 c3bc2db10e93f9140f43bd4458b60a6352553371bca413110cd15697d9f69e82
MD5 1c1cd17dea84407a6431b9c7f090dedb
BLAKE2b-256 820f737becda97b653c9636df12867ebd66a7169f722663fc7b5935bb7d3d705

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page