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 1.2 loader/dumper package for Python.

:version: 0.15.43
:updated: 2018-07-12
:documentation: http://yaml.readthedocs.io
:repository: https://bitbucket.org/ruamel/
:pypi: https://pypi.org/project/ruamel.yaml/


Starting with version 0.15.0 the way YAML files are loaded and dumped
is changing. See the API doc for details. Currently existing
functionality will throw a warning before being changed/removed.
**For production systems you should pin the version being used with
``ruamel.yaml<=0.15``**. There might be bug fixes in the 0.14 series,
but new functionality is likely only to be available via the new API.

If your package uses ``ruamel.yaml`` and is not listed on PyPI, drop
me an email, preferably with some infomormation on how you use the
package (or a link to bitbucket/github) and I'll keep you informed
when the status of the API is stable enough to make the transition.

* `Overview <http://yaml.readthedocs.org/en/latest/overview.html>`_
* `Installing <http://yaml.readthedocs.org/en/latest/install.html>`_
* `Basic Usage <http://yaml.readthedocs.org/en/latest/basicuse.html>`_
* `Details <http://yaml.readthedocs.org/en/latest/detail.html>`_
* `Examples <http://yaml.readthedocs.org/en/latest/example.html>`_
* `API <http://yaml.readthedocs.org/en/latest/api.html>`_
* `Differences with PyYAML <http://yaml.readthedocs.org/en/latest/pyyaml.html>`_

.. image:: https://readthedocs.org/projects/yaml/badge/?version=stable
:target: https://yaml.readthedocs.org/en/stable

.. image:: https://bestpractices.coreinfrastructure.org/projects/1128/badge
:target: https://bestpractices.coreinfrastructure.org/projects/1128

ChangeLog
=========

.. should insert NEXT: at the beginning of line for next key (with empty line)

0.15.43 (2018-07-12):
- merge PR33: Python2.7 on Windows is narrow, but has no
``sysconfig.get_config_var('Py_UNICODE_SIZE')``. (merge provided by
`Marcel Bargull <https://bitbucket.org/mbargull/>`__)
- ``register_class()`` now returns class (proposed by
`Mike Nerone <https://bitbucket.org/Manganeez/>`__}

0.15.42 (2018-07-01):
- fix regression showing only on narrow Python 2.7 (py27mu) builds
(with help from
`Marcel Bargull <https://bitbucket.org/mbargull/>`__ and
`Colm O'Connor <>`__).
- run pre-commit ``tox`` on Python 2.7 wide and narrow, as well as
3.4/3.5/3.6/3.7/pypy

0.15.41 (2018-06-27):
- add detection of C-compile failure (investigation prompted by
`StackOverlow <https://stackoverflow.com/a/51057399/1307905>`__ by
`Emmanuel Blot <https://stackoverflow.com/users/8233409/emmanuel-blot>`__),
which was removed while no longer dependent on ``libyaml``, C-extensions
compilation still needs a compiler though.

0.15.40 (2018-06-18):
- added links to landing places as suggested in issue 190 by
`KostisA <https://bitbucket.org/ankostis/>`__
- fixes issue #201: decoding unicode escaped tags on Python2, reported
by `Dan Abolafia <https://bitbucket.org/danabo/>`__

0.15.39 (2018-06-17):
- merge PR27 improving package startup time (and loading when regexp not
actually used), provided by
`Marcel Bargull <https://bitbucket.org/mbargull/>`__

0.15.38 (2018-06-13):
- fix for losing precision when roundtripping floats by
`Rolf Wojtech <https://bitbucket.org/asomov/>`__
- fix for hardcoded dir separator not working for Windows by
`Nuno André <https://bitbucket.org/nu_no/>`__
- typo fix by `Andrey Somov <https://bitbucket.org/asomov/>`__

0.15.37 (2018-03-21):
- again trying to create installable files for 187

0.15.36 (2018-02-07):
- fix issue 187, incompatibility of C extension with 3.7 (reported by
Daniel Blanchard)

0.15.35 (2017-12-03):
- allow ``None`` as stream when specifying ``transform`` parameters to
``YAML.dump()``.
This is useful if the transforming function doesn't return a meaningful value
(inspired by `StackOverflow <https://stackoverflow.com/q/47614862/1307905>`__ by
`rsaw <https://stackoverflow.com/users/406281/rsaw>`__).

0.15.34 (2017-09-17):
- fix for issue 157: CDumper not dumping floats (reported by Jan Smitka)

0.15.33 (2017-08-31):
- support for "undefined" round-tripping tagged scalar objects (in addition to
tagged mapping object). Inspired by a use case presented by Matthew Patton
on `StackOverflow <https://stackoverflow.com/a/45967047/1307905>`__.
- fix issue 148: replace cryptic error message when using !!timestamp with an
incorrectly formatted or non- scalar. Reported by FichteFoll.

0.15.32 (2017-08-21):
- allow setting ``yaml.default_flow_style = None`` (default: ``False``) for
for ``typ='rt'``.
- fix for issue 149: multiplications on ``ScalarFloat`` now return ``float``
(reported by jan.brezina@tul.cz)

0.15.31 (2017-08-15):
- fix Comment dumping

0.15.30 (2017-08-14):
- fix for issue with "compact JSON" not parsing: ``{"in":{},"out":{}}``
(reported on `StackOverflow <https://stackoverflow.com/q/45681626/1307905>`__ by
`mjalkio <https://stackoverflow.com/users/5130525/mjalkio>`_

0.15.29 (2017-08-14):
- fix issue #51: different indents for mappings and sequences (reported by
Alex Harvey)
- fix for flow sequence/mapping as element/value of block sequence with
sequence-indent minus dash-offset not equal two.

0.15.28 (2017-08-13):
- fix issue #61: merge of merge cannot be __repr__-ed (reported by Tal Liron)

0.15.27 (2017-08-13):
- fix issue 62, YAML 1.2 allows ``?`` and ``:`` in plain scalars if non-ambigious
(reported by nowox)
- fix lists within lists which would make comments disappear

0.15.26 (2017-08-10):
- fix for disappearing comment after empty flow sequence (reported by
oit-tzhimmash)

0.15.25 (2017-08-09):
- fix for problem with dumping (unloaded) floats (reported by eyenseo)

0.15.24 (2017-08-09):
- added ScalarFloat which supports roundtripping of 23.1, 23.100,
42.00E+56, 0.0, -0.0 etc. while keeping the format. Underscores in mantissas
are not preserved/supported (yet, is anybody using that?).
- (finally) fixed longstanding issue 23 (reported by `Antony Sottile
<https://bitbucket.org/asottile/>`__), now handling comment between block
mapping key and value correctly
- warn on YAML 1.1 float input that is incorrect (triggered by invalid YAML
provided by Cecil Curry)
- allow setting of boolean representation (`false`, `true`) by using:
``yaml.boolean_representation = [u'False', u'True']``

0.15.23 (2017-08-01):
- fix for round_tripping integers on 2.7.X > sys.maxint (reported by ccatterina)

0.15.22 (2017-07-28):
- fix for round_tripping singe excl. mark tags doubling (reported and fix by Jan Brezina)

0.15.21 (2017-07-25):
- fix for writing unicode in new API, (reported on
`StackOverflow <https://stackoverflow.com/a/45281922/1307905>`__

0.15.20 (2017-07-23):
- wheels for windows including C extensions

0.15.19 (2017-07-13):
- added object constructor for rt, decorator ``yaml_object`` to replace YAMLObject.
- fix for problem using load_all with Path() instance
- fix for load_all in combination with zero indent block style literal
(``pure=True`` only!)

0.15.18 (2017-07-04):
- missing ``pure`` attribute on ``YAML`` useful for implementing `!include` tag
constructor for `including YAML files in a YAML file
<https://stackoverflow.com/a/44913652/1307905>`__
- some documentation improvements
- trigger of doc build on new revision

0.15.17 (2017-07-03):
- support for Unicode supplementary Plane **output**
(input was already supported, triggered by
`this <https://stackoverflow.com/a/44875714/1307905>`__ Stack Overflow Q&A)

0.15.16 (2017-07-01):
- minor typing issues (reported and fix provided by
`Manvendra Singh <https://bitbucket.org/manu-chroma/>`__
- small doc improvements

0.15.15 (2017-06-27):
- fix for issue 135, typ='safe' not dumping in Python 2.7
(reported by Andrzej Ostrowski <https://bitbucket.org/aostr123/>`__)

0.15.14 (2017-06-25):
- fix for issue 133, in setup.py: change ModuleNotFoundError to
ImportError (reported and fix by
`Asley Drake <https://github.com/aldraco>`__)

0.15.13 (2017-06-24):
- suppress duplicate key warning on mappings with merge keys (reported by
Cameron Sweeney)

0.15.12 (2017-06-24):
- remove fatal dependency of setup.py on wheel package (reported by
Cameron Sweeney)

0.15.11 (2017-06-24):
- fix for issue 130, regression in nested merge keys (reported by
`David Fee <https://bitbucket.org/dfee/>`__)

0.15.10 (2017-06-23):
- top level PreservedScalarString not indented if not explicitly asked to
- remove Makefile (not very useful anyway)
- some mypy additions

0.15.9 (2017-06-16):
- fix for issue 127: tagged scalars were always quoted and seperated
by a newline when in a block sequence (reported and largely fixed by
`Tommy Wang <https://bitbucket.org/twang817/>`__)

0.15.8 (2017-06-15):
- allow plug-in install via ``install ruamel.yaml[jinja2]``

0.15.7 (2017-06-14):
- add plug-in mechanism for load/dump pre resp. post-processing

0.15.6 (2017-06-10):
- a set() with duplicate elements now throws error in rt loading
- support for toplevel column zero literal/folded scalar in explicit documents

0.15.5 (2017-06-08):
- repeat `load()` on a single `YAML()` instance would fail.

0.15.4 (2017-06-08):
- `transform` parameter on dump that expects a function taking a
string and returning a string. This allows transformation of the output
before it is written to stream. This forces creation of the complete output in memory!
- some updates to the docs

0.15.3 (2017-06-07):
- No longer try to compile C extensions on Windows. Compilation can be forced by setting
the environment variable `RUAMEL_FORCE_EXT_BUILD` to some value
before starting the `pip install`.

0.15.2 (2017-06-07):
- update to conform to mypy 0.511: mypy --strict

0.15.1 (2017-06-07):
- `duplicate keys <http://yaml.readthedocs.io/en/latest/api.html#duplicate-keys>`__
in mappings generate an error (in the old API this change generates a warning until 0.16)
- dependecy on ruamel.ordereddict for 2.7 now via extras_require

0.15.0 (2017-06-04):
- it is now allowed to pass in a ``pathlib.Path`` as "stream" parameter to all
load/dump functions
- passing in a non-supported object (e.g. a string) as "stream" will result in a
much more meaningful YAMLStreamError.
- assigning a normal string value to an existing CommentedMap key or CommentedSeq
element will result in a value cast to the previous value's type if possible.
- added ``YAML`` class for new API

0.14.12 (2017-05-14):
- fix for issue 119, deepcopy not returning subclasses (reported and PR by
Constantine Evans <cevans@evanslabs.org>)

0.14.11 (2017-05-01):
- fix for issue 103 allowing implicit documents after document end marker line (``...``)
in YAML 1.2

0.14.10 (2017-04-26):
- fix problem with emitting using cyaml

0.14.9 (2017-04-22):
- remove dependency on ``typing`` while still supporting ``mypy``
(http://stackoverflow.com/a/43516781/1307905)
- fix unclarity in doc that stated 2.6 is supported (reported by feetdust)

0.14.8 (2017-04-19):
- fix Text not available on 3.5.0 and 3.5.1, now proactively setting version guards
on all files (reported by `João Paulo Magalhães <https://bitbucket.org/jpmag/>`__)

0.14.7 (2017-04-18):
- round trip of integers (decimal, octal, hex, binary) now preserve
leading zero(s) padding and underscores. Underscores are presumed
to be at regular distances (i.e. ``0o12_345_67`` dumps back as
``0o1_23_45_67`` as the space from the last digit to the
underscore before that is the determining factor).

0.14.6 (2017-04-14):
- binary, octal and hex integers are now preserved by default. This
was a known deficiency. Working on this was prompted by the issue report (112)
from devnoname120, as well as the additional experience with `.replace()`
on `scalarstring` classes.
- fix issues 114: cannot install on Buildozer (reported by mixmastamyk).
Setting env. var ``RUAMEL_NO_PIP_INSTALL_CHECK`` will suppress ``pip``-check.

0.14.5 (2017-04-04):
- fix issue 109: None not dumping correctly at top level (reported by Andrea Censi)
- fix issue 110: .replace on Preserved/DoubleQuoted/SingleQuoted ScalarString
would give back "normal" string (reported by sandres23)

0.14.4 (2017-03-31):
- fix readme

0.14.3 (2017-03-31):
- fix for 0o52 not being a string in YAML 1.1 (reported on
`StackOverflow Q&A 43138503 <http://stackoverflow.com/a/43138503/1307905>`__ by
`Frank D <http://stackoverflow.com/users/7796630/frank-d>`__)

0.14.2 (2017-03-23):
- fix for old default pip on Ubuntu 14.04 (reported by Sébastien Maccagnoni-Munch)

0.14.1 (2017-03-22):
- fix Text not available on 3.5.0 and 3.5.1 (reported by Charles Bouchard-Légaré)

0.14.0 (2017-03-21):
- updates for mypy --strict
- preparation for moving away from inheritance in Loader and Dumper, calls from e.g.
the Representer to the Serializer.serialize() are now done via the attribute
.serializer.serialize(). Usage of .serialize() outside of Serializer will be
deprecated soon
- some extra tests on main.py functions

----

For older changes see the file
`CHANGES <https://bitbucket.org/ruamel/yaml/src/default/CHANGES>`_


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.15.43.tar.gz (280.3 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.15.43-cp37-cp37m-win_amd64.whl (205.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

ruamel.yaml-0.15.43-cp37-cp37m-win32.whl (185.1 kB view details)

Uploaded CPython 3.7mWindows x86

ruamel.yaml-0.15.43-cp37-cp37m-manylinux1_x86_64.whl (632.5 kB view details)

Uploaded CPython 3.7m

ruamel.yaml-0.15.43-cp36-cp36m-win_amd64.whl (204.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

ruamel.yaml-0.15.43-cp36-cp36m-win32.whl (185.1 kB view details)

Uploaded CPython 3.6mWindows x86

ruamel.yaml-0.15.43-cp36-cp36m-macosx_10_9_x86_64.whl (231.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

ruamel.yaml-0.15.43-cp35-cp35m-win_amd64.whl (201.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

ruamel.yaml-0.15.43-cp35-cp35m-win32.whl (182.1 kB view details)

Uploaded CPython 3.5mWindows x86

ruamel.yaml-0.15.43-cp35-cp35m-manylinux1_x86_64.whl (617.4 kB view details)

Uploaded CPython 3.5m

ruamel.yaml-0.15.43-cp35-cp35m-macosx_10_6_intel.whl (346.7 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

ruamel.yaml-0.15.43-cp34-cp34m-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.4mWindows x86-64

ruamel.yaml-0.15.43-cp34-cp34m-win32.whl (190.3 kB view details)

Uploaded CPython 3.4mWindows x86

ruamel.yaml-0.15.43-cp34-cp34m-manylinux1_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.4m

ruamel.yaml-0.15.43-cp34-cp34m-macosx_10_6_intel.whl (360.0 kB view details)

Uploaded CPython 3.4mmacOS 10.6+ Intel (x86-64, i386)

ruamel.yaml-0.15.43-cp27-cp27mu-manylinux1_x86_64.whl (585.6 kB view details)

Uploaded CPython 2.7mu

ruamel.yaml-0.15.43-cp27-cp27m-win_amd64.whl (208.5 kB view details)

Uploaded CPython 2.7mWindows x86-64

ruamel.yaml-0.15.43-cp27-cp27m-win32.whl (190.3 kB view details)

Uploaded CPython 2.7mWindows x86

ruamel.yaml-0.15.43-cp27-cp27m-manylinux1_x86_64.whl (585.6 kB view details)

Uploaded CPython 2.7m

ruamel.yaml-0.15.43-cp27-cp27m-macosx_10_9_x86_64.whl (236.5 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ruamel.yaml-0.15.43.tar.gz
Algorithm Hash digest
SHA256 4e3672846ea0ff1ea97ee2004075b108b2dc5deecaab30a93cef0c751325befd
MD5 d6afbdf604f4527e60f081e7f13365b6
BLAKE2b-256 20bc202519c9242e4923d4a12b08be439e66fbcea541dbed5ae9a36d0b9cfca2

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1611db4f4da295208b615f4ab43d65f625d72b62538c4475ae6b536698a0c1b7
MD5 0d605411c81e9d696bc957a29bb76e15
BLAKE2b-256 6485a0e1dd54b468653dd92fabfa700361a80cc3611621207ffa21ad454557a9

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 07b98762d69d6ebd0dddd35f5015506a452ed122e79c931c7b2260b403095a9d
MD5 524796dd305ccea8aa6af6920f9796d6
BLAKE2b-256 720bbcefaaebb844ec15dbf1800c1bae1f87ef6800dacc8f2cc1f4a1f56c7bba

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e7ec75fe352a0f1366369a35875898066b836c76ce1bd86a7fe1dd2cce7cd361
MD5 3d4d5e91a325b5a33c14baf5905293b4
BLAKE2b-256 d1f21b75ee0ae2795f54305107fa957c8cfe3d7358520ea5810cafee924478f5

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c1458f9e4930d9ad54e376da494f4e3b12304bcd24ff556eebc81edf94f2ef67
MD5 e5c90568ddcbb74150ebe9c2890eb546
BLAKE2b-256 d673033f282b085b3cd755f9407d52b38dd3081d62bee24d56e29179c3de040a

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f899704901e67ff586a52e91f70b01d1c7ff9d1b09d207b24e94b43031f3500f
MD5 57851ba5ef56808d3c3e2cb183144fa3
BLAKE2b-256 cd45cf757ded713ad0693bf8514fc692a0eab9d97e273acb61dc33eb78418105

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db2dc15d76c2b15d16c4bbb77f4c834cedeb723df767319d2f3eff24a7e32f00
MD5 12c75d3dc78799decffb53731f67a667
BLAKE2b-256 83f742b9ebc1ca1a647e306e4a3ffc20d0674ad1f910052376390e0059582a61

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp35-cp35m-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 fa02aeebb3eee78792b216e6ff41109bcf2c5b956b3cf557ee1fa21ded5be03a
MD5 8a2f8e40982e9865f00e687d1372070a
BLAKE2b-256 333ec6d9850d4d0ae8b89070d5a645fd1c0e25a22e63daec0e8a256bc103df9f

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp35-cp35m-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 111e68eeed1726f8f5a767d7df7edd2832ce03814af2abf624a0a030477382fa
MD5 b5f2142e7ecd3666483e187a70f3092f
BLAKE2b-256 ae7a0136f2a5f1a7ccbfc05f69994dc8f1b142d9060f9a9c8edd1bd57e71aa2c

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e475a53e975d71d94f9713ae358edbdcf02203792f304560f1a7f12bd25f236a
MD5 f96bb31b0b905c3da56b7821987a01f2
BLAKE2b-256 e786ecefe21571c74e7f20e24ad42dcdadfb9d06358ea772b2ef7ea07e17544a

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d811ea78eb4004fe914808f84ad750646127d939606d74c5caea4077c0f6bbd9
MD5 9e8229b10088ffe241aff21a3bdf668c
BLAKE2b-256 6a9352129d00e9a2d72dc211b1649207b079fe5ee06f168c9e13a6e99ab04ee7

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp34-cp34m-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 105f8b60ac6d37cf6e9d3418365e9e33ba8b8bccbf587a3ae96fbb4d500fc19b
MD5 25e975f46ab4924cb48939091b762ae8
BLAKE2b-256 863c7dc1a384232290c68bf94c0e5bb79b3eb24a73741a5367ddb56bf6ecd89a

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp34-cp34m-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 257866f78ed131b126447741a924563b6d2332569a787c603b278acb0874c938
MD5 c6616d80e3d7b5245c3daecc957bc943
BLAKE2b-256 da48e8f500bfa3d69870af2ae26aa3c63e94f92d89a74b178b55bf67f28ac00a

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c3b06771274ba75ce165aab4269145edc59164684d84538185f8edcbdabdd1a
MD5 d8b1da53c46c50fd6bf59d8a00de4a28
BLAKE2b-256 882e28c5f720f68cd6fe2f6745cb6d809f4ac1feca39f001a31ec10bf7091c5e

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp34-cp34m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3633c85aa924459fd7eac2f247ab53adc14ecd05590eef6547fc8dae20093fc6
MD5 c14f8619f18c620ee08dfa4b593156bd
BLAKE2b-256 e6a83b889ace068bd74873fcc254ab291f6532c3cc4e3e932043f72307123e5e

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dc82173e6e689221a1174cb27ae59416b96bdc2773c39e399000c36e9b95bbf1
MD5 c9e008c7549e3893502c3dae91de19f0
BLAKE2b-256 e81a19687225f9a7a2bbbf61b74ed6e07e2e6bcc32f4dbaff01d8138ffb70c21

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp27-cp27m-win_amd64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 46d746f03fdc48e338e9a69d5633760e63a34a6035221e236385a4057bb76cbc
MD5 4cab6e34be6e978c395dce699d0e42b2
BLAKE2b-256 248b4cab888278ba7995a068a16ec020d0c2d6666c182621e9a1b556e499c0e9

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp27-cp27m-win32.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9aab9b34a67fedc5bba778f5ddf126b135f2288b1153b798734838e488202a8b
MD5 3767dcf64076ac5ab0e8987172f5a8eb
BLAKE2b-256 c4f59500d36da4600ec8fc9926b9b49dad6677791111ef8468920300840d88bd

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1721e57a6ba4533605b0be8e1c744bc0c04e8e18ef0493474d92c7eb647b223a
MD5 f615670151d153d152184a3d99d802c9
BLAKE2b-256 4b3f008f9ad13b331c1663a98766bea559a8bbfc9caf5a6c65b7f2dde81ac7c9

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.43-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ruamel.yaml-0.15.43-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d56f1db8986f90473edfbec8befa969d6a3cbe14c32d45e8eb111d6e8298fac4
MD5 74d08553675e9b860272e8c4c41e83da
BLAKE2b-256 0a135ebc96b413dbc342c9cf7aa749e4972d24b66e440f9b28d1741f7c6ab724

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