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

updated:

2018-08-17

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.

https://readthedocs.org/projects/yaml/badge/?version=stable https://bestpractices.coreinfrastructure.org/projects/1128/badge https://bitbucket.org/ruamel/yaml/raw/default/_doc/_static/license.svg https://bitbucket.org/ruamel/yaml/raw/default/_doc/_static/pypi.svg https://bitbucket.org/ruamel/oitnb/raw/default/_doc/_static/oitnb.svg http://www.mypy-lang.org/static/mypy_badge.svg

ChangeLog

0.15.59 (2018-08-17):
0.15.58 (2018-08-17):
  • simple mappings can now be used as keys when round-tripping:

    {a: 1, b: 2}: hello world

    although using the obvious operations (del, popitem) on the key will fail, you can mutilate it by going through its attributes. If you load the above YAML in d, then changing the value is cumbersome:

    d = {CommentedKeyMap([(‘a’, 1), (‘b’, 2)]): “goodbye”}

    and changing the key even more so:

    d[CommentedKeyMap([(‘b’, 1), (‘a’, 2)])] = d.pop(

    CommentedKeyMap([(‘a’, 1), (‘b’, 2)]))

    (you can use a dict instead of a list of tuples (or ordereddict), but that might result in a different order, of the keys of the key, in the output)

  • check integers to dump with 1.2 patterns instead of 1.1 (reported by Lele Gaifax)

0.15.57 (2018-08-15):
  • Fix that CommentedSeq could no longer be used in adding or do a sort (reported by Christopher Wright)

0.15.56 (2018-08-15):
  • fix issue with python -O optimizing away code (reported, and detailed cause pinpointed, by Alex Grönholm)

0.15.55 (2018-08-14):
  • unmade CommentedSeq a subclass of list. It is now indirectly a subclass of the standard collections.abc.MutableSequence (without .abc if you are still on Python2.7). If you do isinstance(yaml.load('[1, 2]'), list)) anywhere in your code replace list with MutableSequence. Directly, CommentedSeq is a subclass of the abstract baseclass ruamel.yaml.compat.MutableScliceableSequence, with the result that (extended) slicing is supported on ``CommentedSeq``. (reported by Stuart Berg)

  • duplicate keys (or their values) with non-ascii now correctly report in Python2, instead of raising a Unicode error. (Reported by Jonathan Pyle)

0.15.54 (2018-08-13):
  • fix issue where a comment could pop-up twice in the output (reported by Mike Kazantsev and by Nate Peterson)

  • fix issue where JSON object (mapping) without spaces was not parsed properly (reported by Marc Schmidt)

  • fix issue where comments after empty flow-style mappings were not emitted (reported by Qinfench Chen)

0.15.53 (2018-08-12):
  • fix issue with flow style mapping with comments gobbled newline (reported by Christopher Lambert)

  • fix issue where single ‘+’ under YAML 1.2 was interpreted as integer, erroring out (reported by Jethro Yu)

0.15.52 (2018-08-09):
  • added .copy() mapping representation for round-tripping (CommentedMap) to fix incomplete copies of merged mappings (reported by Will Richards)

  • Also unmade that class a subclass of ordereddict to solve incorrect behaviour for {**merged-mapping} and dict(**merged-mapping) (reported independently by Tim Olsson and Filip Matzner)

0.15.51 (2018-08-08):
  • Fix method name dumps (were not dotted) and loads (reported by Douglas Raillard)

  • Fix spurious trailing white-space caused when the comment start column was no longer reached and there was no actual EOL comment (e.g. following empty line) and doing substitutions, or when quotes around scalars got dropped. (reported by Thomas Guillet)

0.15.50 (2018-08-05):
  • Allow YAML() as a context manager for output, thereby making it much easier to generate multi-documents in a stream.

  • Fix issue with incorrect type information for load() and dump() (reported by Jimbo Jim)

0.15.49 (2018-08-05):
  • fix preservation of leading newlines in root level literal style scalar, and preserve comment after literal style indicator (| # some comment) Both needed for round-tripping multi-doc streams in ryd.

0.15.48 (2018-08-03):
  • housekeeping: oitnb for formatting, mypy 0.620 upgrade and conformity

0.15.47 (2018-07-31):
  • fix broken 3.6 manylinux1, the result of an unclean build (reported by Roman Sichnyi)

0.15.46 (2018-07-29):
0.15.45 (2018-07-26):
0.15.44 (2018-07-14):
  • Correct loading plain scalars consisting of numerals only and starting with 0, when not explicitly specifying YAML version 1.1. This also fixes the issue about dumping string ‘019’ as plain scalars as reported by Min RK, that prompted this chance.

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)

  • register_class() now returns class (proposed by Mike Nerone}

0.15.42 (2018-07-01):
  • fix regression showing only on narrow Python 2.7 (py27mu) builds (with help from Marcel Bargull 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 by 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

  • fixes issue #201: decoding unicode escaped tags on Python2, reported by Dan Abolafia

0.15.39 (2018-06-17):
  • merge PR27 improving package startup time (and loading when regexp not actually used), provided by Marcel Bargull

0.15.38 (2018-06-13):
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 by 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.

  • 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 by 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), 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):
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

  • 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 Stack Overflow Q&A)

0.15.16 (2017-07-01):
  • minor typing issues (reported and fix provided by Manvendra Singh

  • small doc improvements

0.15.15 (2017-06-27):
0.15.14 (2017-06-25):
  • fix for issue 133, in setup.py: change ModuleNotFoundError to ImportError (reported and fix by Asley Drake)

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)

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)

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

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

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

Uploaded Source

Built Distributions

ruamel.yaml-0.15.59-cp37-cp37m-win_amd64.whl (210.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

ruamel.yaml-0.15.59-cp37-cp37m-win32.whl (191.0 kB view details)

Uploaded CPython 3.7m Windows x86

ruamel.yaml-0.15.59-cp37-cp37m-manylinux1_x86_64.whl (638.4 kB view details)

Uploaded CPython 3.7m

ruamel.yaml-0.15.59-cp37-cp37m-macosx_10_9_x86_64.whl (238.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

ruamel.yaml-0.15.59-cp36-cp36m-win_amd64.whl (210.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

ruamel.yaml-0.15.59-cp36-cp36m-win32.whl (191.0 kB view details)

Uploaded CPython 3.6m Windows x86

ruamel.yaml-0.15.59-cp36-cp36m-manylinux1_x86_64.whl (643.1 kB view details)

Uploaded CPython 3.6m

ruamel.yaml-0.15.59-cp36-cp36m-macosx_10_9_x86_64.whl (237.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

ruamel.yaml-0.15.59-cp35-cp35m-win_amd64.whl (207.5 kB view details)

Uploaded CPython 3.5m Windows x86-64

ruamel.yaml-0.15.59-cp35-cp35m-win32.whl (188.1 kB view details)

Uploaded CPython 3.5m Windows x86

ruamel.yaml-0.15.59-cp35-cp35m-manylinux1_x86_64.whl (623.3 kB view details)

Uploaded CPython 3.5m

ruamel.yaml-0.15.59-cp35-cp35m-macosx_10_6_intel.whl (352.6 kB view details)

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

ruamel.yaml-0.15.59-cp34-cp34m-win_amd64.whl (209.6 kB view details)

Uploaded CPython 3.4m Windows x86-64

ruamel.yaml-0.15.59-cp34-cp34m-win32.whl (196.3 kB view details)

Uploaded CPython 3.4m Windows x86

ruamel.yaml-0.15.59-cp34-cp34m-manylinux1_x86_64.whl (633.4 kB view details)

Uploaded CPython 3.4m

ruamel.yaml-0.15.59-cp34-cp34m-macosx_10_6_intel.whl (365.9 kB view details)

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

ruamel.yaml-0.15.59-cp27-cp27mu-manylinux1_x86_64.whl (591.5 kB view details)

Uploaded CPython 2.7mu

ruamel.yaml-0.15.59-cp27-cp27m-win_amd64.whl (214.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

ruamel.yaml-0.15.59-cp27-cp27m-win32.whl (196.2 kB view details)

Uploaded CPython 2.7m Windows x86

ruamel.yaml-0.15.59-cp27-cp27m-manylinux1_x86_64.whl (591.5 kB view details)

Uploaded CPython 2.7m

ruamel.yaml-0.15.59-cp27-cp27m-macosx_10_9_x86_64.whl (242.4 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59.tar.gz
  • Upload date:
  • Size: 291.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59.tar.gz
Algorithm Hash digest
SHA256 e84e7f7f38b795c6f9f12a3126038ff47946f69397620179e117db3ed2d2e721
MD5 ceaddd0155d6171781836ff72257a8c6
BLAKE2b-256 146845fcc6e097eb146046f7ffd01ebf6d8d71b735a2f1cafce958c98735d61a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 210.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 be4f69133fb0c50c38f6c2a02ebd1b9b33d8a0f865f812e208b3a20c97cb8c99
MD5 57fb3849204cd011bb16486fcb5382a5
BLAKE2b-256 205146ecc4dccc0f350452deb89749046c8aff7faa88d51e9520d1e98f924697

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 191.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3705b5553a0df9fe424f4e1c2b7249e6ae52d5bc46bfc3501758c3be1204d905
MD5 7db75ceacf53e7980fc82d0c665555f4
BLAKE2b-256 5e57a841d6b9586e9204e4ce776eac286bfdcfa8355a91c58d09411928c56191

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 638.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3c71c79cbaf3472e4b1ea598682f6982436b99c2f33ba930a2c80fe40442347c
MD5 192a3d112eb20920fa9897fa4e5afd67
BLAKE2b-256 6243697359386a5d4c35813f550ac3f8bacaf32af4aa869af6db653de6ff7f4a

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.59-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 238.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb5551b677ed3ddc3376c70cbea622a6b6c544b1f81c48da8edf0a3ac49948cc
MD5 dea3e997e0b04c8c8db719e10cba24cb
BLAKE2b-256 5b7dbc07b5560c550fcbca551eccaa1b50c80a6d627d9df581d016cd811746a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 210.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b67ca233991117ebd7ca4fd804135a8f339a1bbc9b88c54720680ae1cdacd60b
MD5 719719b4013bc66d0e37306d97609276
BLAKE2b-256 ef478e38d17a0668e701889220973645a2c49aab0be3febb87a0af8c14a3236c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 191.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b2b2da4f4de6a982463a656c08aafe9420ac127eecd79b4b09e7a33416b07298
MD5 04f895815c2672a4d1c47832c1ad58ee
BLAKE2b-256 e97b2aa506d9f768e8f78adb442b6d264b002b1322bf695adcdda36ad20208ca

See more details on using hashes here.

File details

Details for the file ruamel.yaml-0.15.59-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 643.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71045e4b6fb1a6728035d6054487ffbb38959b5ad8a806ec24b11e64f4628d50
MD5 7d68af8c24da8e78707c9929b2b046ce
BLAKE2b-256 3d6847ff4c37ebe7c231c225fb701ea8a495f182da096b87f5fddbdcbb08e538

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 237.7 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a44032325d4d95e60369b543862cba4b7af16e9443289f28ffefa53cc37fb31a
MD5 1cd248cd31ecad425ee5c7571a52f7fa
BLAKE2b-256 102e7048eeac13db59836f1507dae37c78e5f46b26dc970b39e7b4357fb1f742

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 207.5 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 851fe85014bf3c94b38ef862556b54868b6e0dc93883fabe09098e7a81550233
MD5 7745f394dad4018c16251d3d14844e47
BLAKE2b-256 ea406d319245b67f62d1164b0fb84efba3d662d2e341006ca8e80684346f0454

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 188.1 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 75ae9a35122e6d86eca20109181fb47136967a257241de90613fa6bed158e082
MD5 d25c62468903f0e68c59dd3e42a8f343
BLAKE2b-256 7e2468ccd2b85cacdc97ec9e72807b56d263a33501177f98a570eae28b0919a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 623.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f5919b504513f918c42d4f918e6c98cf4f13165e09210919802a9d7d9278aa10
MD5 17c10b4945a4f0753fd504e469a7432f
BLAKE2b-256 33e57de12036ea4bc8c833572603007b50e92073544dd75e38d86a99ffc76bad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 352.6 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 2e820904ec2d0069bd0f5a39b1cb1a33db125449363f126ba0605676e1096077
MD5 705c03649489f28ec908cc67b5b7a290
BLAKE2b-256 4281c1b3bc37277413833f63c837deca6c2f2984556abb11abadf60b897f2319

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 209.6 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 6d65dbfd4fc94969c1428187803818662dd83c505195bc8cfcc4f45154778a55
MD5 1c10c5f0fdd7de771bfe2770aef67d0a
BLAKE2b-256 1d70a81e7411046091ea18728b2636a4d0ef4c2b8bf4a3678adde9147f8afeec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 196.3 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 f7160871ceaddba15ba2d262dc9530356848025a5fcc3ca9c0caf5b098c691bd
MD5 3bb82c6577e477a99628c3b0b42bd30b
BLAKE2b-256 895ead78e254a24a6c65bd1ed1545016dfa0685a0753794e195b4a65ee9ccfee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 633.4 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7ee5cf48bf043336f307432c26fdb7491defa3093e522801db28442cfa13e3f8
MD5 50b99325c275de635c5f53bb8f7041d0
BLAKE2b-256 ddc8e880a202d352c0272d6dded10de55a477bf04a8930ead981d32c5f171f43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 365.9 kB
  • Tags: CPython 3.4m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a27ab0241c99a66ae17debe11736f30d141cf9d52ae378bf1ea9cb99b6f27f53
MD5 b817e19b4f8e75c3a8a29f3c6de3c992
BLAKE2b-256 7044894d77c563a789f778dbb53f0ff60dfd290b4eeb9847a799a1add89ac88d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 591.5 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5473efedeecd65a530adc5403b9136fd640b391b070f3dfbdab930830cc7de8c
MD5 4b9a0945f047ba2af5dbd21a8a048bd5
BLAKE2b-256 1d0a4f17cb55636e3fd60a55306cee28a7e8688ceb828e3a10c2e9dc967b9dd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 214.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 8ad0c341e80f93d0ca0557f71570809c3267fa613b605727934c21eab7c2fa30
MD5 f95812505a768f20252370d04da44e80
BLAKE2b-256 3b27a5df2bfa6c0fedfd41b101b0a429562c601f003115ae70573e23f89e2e54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 196.2 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e00e551db8fb999dea3b1fe4e711f8e60084e11ca95b27a95fd3d7f38a32e100
MD5 dd40486a431b087336bbd060b6273573
BLAKE2b-256 9a6af358fc13249fa521710a1bf717fc654534613cbbf6fd2ae85b2d01520963

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 591.5 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1fa8b7011424c4a7eca2bc1ce9b5cb21243be9b24870189f3543ed6a36b59818
MD5 8a3cdb9737e88994fa9648464752cee7
BLAKE2b-256 1d812b14c77eaa6d8d9d6925a4bdcd91e3340614071c036fb58b2504545a3e06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.59-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 242.4 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for ruamel.yaml-0.15.59-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf983100445c5a05ba5966c0ef1cc6a31759e764aafa67a926eef3cf92678a9c
MD5 142af737f3cd2ee861e21482c27aad6c
BLAKE2b-256 103a355249bbf6db88d280e7259563a553fa40106c9cf84102f1f5c3e888cf37

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