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)

  • 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

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

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

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 html <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

This version

0.9.4

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.9.4.tar.gz (169.0 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.9.4-cp34-none-win_amd64.whl (70.1 kB view details)

Uploaded CPython 3.4Windows x86-64

ruamel.yaml-0.9.4-cp34-none-win32.whl (70.1 kB view details)

Uploaded CPython 3.4Windows x86

ruamel.yaml-0.9.4-cp33-none-win_amd64.whl (70.1 kB view details)

Uploaded CPython 3.3Windows x86-64

ruamel.yaml-0.9.4-cp33-none-win32.whl (70.0 kB view details)

Uploaded CPython 3.3Windows x86

ruamel.yaml-0.9.4-cp27-none-win_amd64.whl (70.1 kB view details)

Uploaded CPython 2.7Windows x86-64

ruamel.yaml-0.9.4-cp27-none-win32.whl (70.1 kB view details)

Uploaded CPython 2.7Windows x86

ruamel.yaml-0.9.4-cp26-none-win_amd64.whl (70.1 kB view details)

Uploaded CPython 2.6Windows x86-64

ruamel.yaml-0.9.4-cp26-none-win32.whl (70.1 kB view details)

Uploaded CPython 2.6Windows x86

File details

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

File metadata

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

File hashes

Hashes for ruamel.yaml-0.9.4.tar.gz
Algorithm Hash digest
SHA256 1ae47329c0b413be5c50d139fc80afd27cd816ca62c7f8a54197e0c45aeea9c0
MD5 a51498bc9937631d41e9c2a7aca3fd3e
BLAKE2b-256 859ff7dd835b64572a704c71d0a3c69aa8728b9a8b8075c8ef56479e66012cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.9.4-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 a3dabb8fa82e7e7dada4b69843241c89e3b996a1991298c264f46aa17d86c550
MD5 7eb4f80ca26a5185ab97ede6fcd212d5
BLAKE2b-256 8524afeeff2d0a1c46de24a211af0d1a034679cc22304a42822099567d67acfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.9.4-cp34-none-win32.whl
Algorithm Hash digest
SHA256 7fe17ab8c8f151af1ac6266b33e329e78732d0f4bba01df69a9990a12a7152d0
MD5 85b560c498f026579a5e27c85b98d03e
BLAKE2b-256 5c6a9b6f01e39d9e78a83675822b0ff0e6347395035c0a42d1287816f267e152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.9.4-cp33-none-win_amd64.whl
Algorithm Hash digest
SHA256 b32483830850f4abf38236c11dc63ce30022451098646748622315bac1758d02
MD5 482e2a53863af80252b595befe2ff918
BLAKE2b-256 de72ab35fb564efe4807467e2965937bc702d1ab005687e0a55746839c4d6df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.9.4-cp33-none-win32.whl
Algorithm Hash digest
SHA256 09e84bb6f5abd1bdeb16d36a9bf28a67bf365418a401f2834aeac6c2eb6939ad
MD5 529bd68ba5ab1670ebef5e9d1f4c6a85
BLAKE2b-256 9abefdc4d110d38f6f1e0ef9cd79b6615c35f10418e6c496a9e8076efac83202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.9.4-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 7f4e966fc822474236154e291b0cc5f9a083dade3f0ac49a6c5be184e88fe608
MD5 efaa7e4be4c71828fffc45f73203ddf0
BLAKE2b-256 1ac773687afe97d11fe83fe867467ffee8072dda1f29a49eec38696df53be382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.9.4-cp27-none-win32.whl
Algorithm Hash digest
SHA256 3d48b074af5784364179405cead75e0af34f595e0c19d83506db0af0116bff4a
MD5 f586614a06e5dad05b8a0b3008b4a5e6
BLAKE2b-256 198a72a2fc048f471a1862c92785aaaf1f0127bf0e5bdb824a417bd423d2f671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.9.4-cp26-none-win_amd64.whl
Algorithm Hash digest
SHA256 0ddcfb56e7afa1af41bd91fefcacc10895fbd4490f0563bd4f663b82b6a68b73
MD5 42946d8217efc02e859d1d335e5a8f97
BLAKE2b-256 a0d525a450ae3d5397d1fc7f0abf25ee1687653a3974fcc9563089aa0672d533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ruamel.yaml-0.9.4-cp26-none-win32.whl
Algorithm Hash digest
SHA256 2e9dbfb78db5c7beaa18a37b7b4e5f12b1e21d43bc9b15d7134e07dd23bba512
MD5 e05e981cb0231048e4ef7d1ba1118c8a
BLAKE2b-256 4da47450ae4246ba0b52e8feccf55305337cf11b34c8dcaf401db5879d668988

See more details on using hashes here.

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