Skip to main content

ruamel.yaml

Starting with 0.10.7 the package has been reorganise and the commandline utility is in its own package ruamel.yaml.cmd (so installing ruamel.yaml doesn’t pull in possible irrelevant modules only used in the commandline 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:

  • intergrated 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 transformation 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 for speeded 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 of 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 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 support for ordered mappings and sets. It supports scalars are of various types including dates and datetimes (missing in JSON) as a list of 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 6 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 build 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 en 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 the 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.12.tar.gz (234.7 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.12-cp34-none-win_amd64.whl (71.1 kB view details)

Uploaded CPython 3.4Windows x86-64

ruamel.yaml-0.10.12-cp34-none-win32.whl (71.0 kB view details)

Uploaded CPython 3.4Windows x86

ruamel.yaml-0.10.12-cp33-none-win_amd64.whl (71.0 kB view details)

Uploaded CPython 3.3Windows x86-64

ruamel.yaml-0.10.12-cp33-none-win32.whl (71.0 kB view details)

Uploaded CPython 3.3Windows x86

ruamel.yaml-0.10.12-cp27-none-win_amd64.whl (71.1 kB view details)

Uploaded CPython 2.7Windows x86-64

ruamel.yaml-0.10.12-cp27-none-win32.whl (137.2 kB view details)

Uploaded CPython 2.7Windows x86

ruamel.yaml-0.10.12-cp26-none-win_amd64.whl (71.1 kB view details)

Uploaded CPython 2.6Windows x86-64

ruamel.yaml-0.10.12-cp26-none-win32.whl (71.1 kB view details)

Uploaded CPython 2.6Windows x86

File details

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

File metadata

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

File hashes

Hashes for ruamel.yaml-0.10.12.tar.gz
Algorithm Hash digest
SHA256 2bfd7d00c0ca859dbf1a7abca79969eedd25c76a976b7d40f94e1891a6e73f2c
MD5 6b932474a12085f05f21b2c39d89a2a1
BLAKE2b-256 1efc9931abc77b598be6a37f400a2e6ddf372fd0942aa1f6ea16f17d4fc1df15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.12-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 b0e7cf156aab4113d3e006e70cca07a019a5047c79806c9215322a6114f57933
MD5 f3447ef9919b70a80b472781c9f26ac5
BLAKE2b-256 12b40d631999bb4c37b44247ce004024a712a564c319cd242b357a216168c66c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.12-cp34-none-win32.whl
Algorithm Hash digest
SHA256 8e970b5c88a60c3a1aa1c5c83edce504260c5ab9035d7c728bc7b473b72c14a3
MD5 546b8928ff519b8eb43ceb1250441bd3
BLAKE2b-256 f9963e4654500c0b6d23fb9f333fe24448787949ebd553fb399000f7106c40f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.12-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 c948784df74a7ea7b3e42f9299f0352aab5302ff3a82944e05cd83ac43d180c3
MD5 24915e8f2eeabf1a76ba177117ec2de0
BLAKE2b-256 229cf2f5325828df00246ad25b7488c4432935f473b119487f5a640e7022e85b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.12-cp33-none-win32.whl
Algorithm Hash digest
SHA256 805fa671feabdb4ab1dd4beef668708a9bf76af2fc68c7cb2b05ce9dd0d9dec6
MD5 8d228d8e6ba4988e8247b95819145cc1
BLAKE2b-256 f992e8e66f9fef1eb8f3c00994606333927bd479b7bc2e8a41cf2b3f934d7a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.12-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 43090dcc6fad800e3e4bee2aef9d91ce60b60f10d54c627b7d87ceb034008cbf
MD5 8f54272e93566c1cedb3eaa7a27b1b23
BLAKE2b-256 6e753bbf1fec87c96c8ade94f4bcf092abce8057fb7c885dc3333ec36d3a48a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.12-cp27-none-win32.whl
Algorithm Hash digest
SHA256 faecb21e838f9e968717080e6d07a0d12f0ffaace62e6fc7842441df2d6319d2
MD5 0a7c53275459bd1c4812a329c60963f3
BLAKE2b-256 e45eafd148e42921afbf1547f6492935329bbea90849c7e85878b7e69e1790a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.12-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 e8e1417b2f07b545f61db5acda624cc45b28be339f18166aa953ecddbf9b6b39
MD5 4e600481437b94ca672dbdf1c1a5e520
BLAKE2b-256 d3595061ec1e72aa13222926c68030c74ea6381deae710fe784c46322a8d225c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.12-cp26-none-win32.whl
Algorithm Hash digest
SHA256 86146a3ec40ce18703481db04d89ff6b40a1e7710c27c0f670338dfd0fd7e73c
MD5 2cd417819ca041cd8adf49d3f9becf7b
BLAKE2b-256 e3a9473e113cf725c6c3093b34244d42d62d03aa2c15a11340c5a9db7ae6eed6

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 Sentry Error logging StatusPage Status page