Skip to main content

ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order

Project description

ruamel.yaml

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

  • 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.

yaml utlity

A utility name yaml is included and allows for basic operations on files:

  • yaml round-trip <file_name> for basic roundtrip testing of YAML files

  • yaml json <file_name> for conversion of JSON file(s) to a single YAML block style document

  • yaml ini <file_name> for conversion of an INI/config file (ConfigObj comment and nested sections supported) to a YAML block style document. This requires configobj to be installed (pip install configobj)

  • yaml from-csv <file_name> for conversion CSV to a YAML file to a a table in an HTML file.

  • yaml htmltable <file_name> for conversion of the basic structure in a YAML file to a a table in an HTML file. The YAML file:

    title:
    - fruit
    - legume
    local:
    - apple
    - sprouts
    import:
    - orange
    - broccoli

    is converted into the table:

    title

    fruit

    legume

    local

    apple

    sprouts

    import

    orange

    broccoli

See yaml --help for more information on the availble commands

Project details


Release history Release notifications | RSS feed

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.5.tar.gz (176.7 kB view details)

Uploaded Source

Built Distributions

ruamel.yaml-0.10.5-cp34-none-win_amd64.whl (75.9 kB view details)

Uploaded CPython 3.4 Windows x86-64

ruamel.yaml-0.10.5-cp34-none-win32.whl (75.9 kB view details)

Uploaded CPython 3.4 Windows x86

ruamel.yaml-0.10.5-cp33-none-win_amd64.whl (75.9 kB view details)

Uploaded CPython 3.3 Windows x86-64

ruamel.yaml-0.10.5-cp33-none-win32.whl (75.9 kB view details)

Uploaded CPython 3.3 Windows x86

ruamel.yaml-0.10.5-cp27-none-win_amd64.whl (75.9 kB view details)

Uploaded CPython 2.7 Windows x86-64

ruamel.yaml-0.10.5-cp27-none-win32.whl (75.9 kB view details)

Uploaded CPython 2.7 Windows x86

ruamel.yaml-0.10.5-cp26-none-win_amd64.whl (75.9 kB view details)

Uploaded CPython 2.6 Windows x86-64

ruamel.yaml-0.10.5-cp26-none-win32.whl (75.9 kB view details)

Uploaded CPython 2.6 Windows x86

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5.tar.gz
Algorithm Hash digest
SHA256 24247dc7f19f6730d5afd14f6504ef76631f73634f44a4978c4fc38571af6054
MD5 c3db0ba7cb1a201445d34c35fa93f04f
BLAKE2b-256 98b1d924fe972dcb9d23e6fa7040f4009850530e6a043bdaa04047d426ab31b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 a5bb0e4cfae226a3fba1fd13c0f350e6097d9bafc9aa54430a273083ddff4f69
MD5 a5e1048d909e67ac6bf23dab7a5b3b44
BLAKE2b-256 274c98e2680edd553f3d9c9e0d26e148c4fe72a10644144c1efa638c8958994c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5-cp34-none-win32.whl
Algorithm Hash digest
SHA256 b0757a68f9ded4735f35009339ea31ea9213dfa215dd9e29e0e9b7590a2e1a98
MD5 ba78d0308f3ec450b985c8d1b2388f39
BLAKE2b-256 122953c5a6c02559d423c788e777e6228452746c5c6b55627046fd75f505635c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 fc6484572664fdade4ae5b7920b76e3cbfd7ac7a8bebe71169243cdc54773164
MD5 4ab6296fc13ae3a95c88c2771b2a2bf2
BLAKE2b-256 ea93eba79658f7fb4e9eade9a2f93a06a08aaac5419ebc90b0d4434f7f68e1de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5-cp33-none-win32.whl
Algorithm Hash digest
SHA256 22eb8c8c90d21b4c5e644a907fc2d2c962f9c557a754ed893a5de2451a91c97a
MD5 18ab6b5ec25ece6c5c1e46fd4d02c396
BLAKE2b-256 a9658e7b97ca664ad9aee5fc028064c6541f15c9b03ab56d698edf0e164e92ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 6d1108968fa55b2984e78391451cfc614cddc10cb8e2a53c574756276d1f9712
MD5 352a8fb5275c70767d17e50ca85bbf92
BLAKE2b-256 f3afd1c80e75fe63d65f42dea0c30b92f4b6bc26d919976ead47bebf3d5732ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5-cp27-none-win32.whl
Algorithm Hash digest
SHA256 53b7fb0634b1847f0c45e28548f4d53a53c6288ef1567565f3624d01a26e161f
MD5 ee1b03769526963fa1500f6545cd4f58
BLAKE2b-256 656c931d0cc967875d3d664227e8d701972c67e32449699478df64e91fc98111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 77609e948c2e52b26e4ae01eafafb6bb74c5003a8a63413af90abf6614c0f1b5
MD5 04837b2fa23342a7d2f6466780bf943d
BLAKE2b-256 0f6a4f325339ac3b177f44282f8ae2475aa5229ba26c93f00595dc8213a918d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.10.5-cp26-none-win32.whl
Algorithm Hash digest
SHA256 c3267e33bbc306be7c5278d74e4926a913512e31f46291f71618d8b2c4c8e9b2
MD5 f5e8f2f53a91dc244c17578d2630290d
BLAKE2b-256 ff8986980946ecff4886ac364121a284bc78ad6e049ec3a82fc9e04ee93e77c8

See more details on using hashes here.

Supported by

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