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

updated:

2018-08-15

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.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.56.tar.gz (290.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.15.56-cp37-cp37m-win_amd64.whl (210.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

ruamel.yaml-0.15.56-cp37-cp37m-win32.whl (190.2 kB view details)

Uploaded CPython 3.7mWindows x86

ruamel.yaml-0.15.56-cp37-cp37m-manylinux1_x86_64.whl (637.6 kB view details)

Uploaded CPython 3.7m

ruamel.yaml-0.15.56-cp37-cp37m-macosx_10_9_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ruamel.yaml-0.15.56-cp36-cp36m-win_amd64.whl (209.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

ruamel.yaml-0.15.56-cp36-cp36m-win32.whl (190.2 kB view details)

Uploaded CPython 3.6mWindows x86

ruamel.yaml-0.15.56-cp36-cp36m-manylinux1_x86_64.whl (642.4 kB view details)

Uploaded CPython 3.6m

ruamel.yaml-0.15.56-cp36-cp36m-macosx_10_9_x86_64.whl (236.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

ruamel.yaml-0.15.56-cp35-cp35m-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

ruamel.yaml-0.15.56-cp35-cp35m-win32.whl (187.3 kB view details)

Uploaded CPython 3.5mWindows x86

ruamel.yaml-0.15.56-cp35-cp35m-manylinux1_x86_64.whl (622.5 kB view details)

Uploaded CPython 3.5m

ruamel.yaml-0.15.56-cp35-cp35m-macosx_10_6_intel.whl (351.8 kB view details)

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

ruamel.yaml-0.15.56-cp34-cp34m-win_amd64.whl (208.8 kB view details)

Uploaded CPython 3.4mWindows x86-64

ruamel.yaml-0.15.56-cp34-cp34m-win32.whl (195.5 kB view details)

Uploaded CPython 3.4mWindows x86

ruamel.yaml-0.15.56-cp34-cp34m-manylinux1_x86_64.whl (632.7 kB view details)

Uploaded CPython 3.4m

ruamel.yaml-0.15.56-cp34-cp34m-macosx_10_6_intel.whl (365.1 kB view details)

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

ruamel.yaml-0.15.56-cp27-cp27mu-manylinux1_x86_64.whl (590.7 kB view details)

Uploaded CPython 2.7mu

ruamel.yaml-0.15.56-cp27-cp27m-win_amd64.whl (213.7 kB view details)

Uploaded CPython 2.7mWindows x86-64

ruamel.yaml-0.15.56-cp27-cp27m-win32.whl (195.4 kB view details)

Uploaded CPython 2.7mWindows x86

ruamel.yaml-0.15.56-cp27-cp27m-manylinux1_x86_64.whl (590.7 kB view details)

Uploaded CPython 2.7m

ruamel.yaml-0.15.56-cp27-cp27m-macosx_10_9_x86_64.whl (241.6 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56.tar.gz
  • Upload date:
  • Size: 290.0 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.56.tar.gz
Algorithm Hash digest
SHA256 d25bb159802430a3141fba6ebabb171a5839939c4bbecca05369ebeca57e441e
MD5 d3baf3aa28549938b47970c8df5bd316
BLAKE2b-256 71f3065abaecf9f6c097e0740de1a5325e7947d51c42d926fb3be3cbeae25f7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 210.2 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.56-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 788454c80824452ab0dcb682de1d596c66edf25ba7cca1a2db65125d563fafbd
MD5 2b60301162837f6d185338822a4f4b41
BLAKE2b-256 4633ef19a1180afffd3049f913771ef902c706352a3b85042aef76e41b3d4743

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 190.2 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.56-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bba0b2fbeb6837576e841f9902624a2355aae599b384b651ce34e6458953cf42
MD5 07bbf0f6192057ffae99c7545dd26425
BLAKE2b-256 4c183e232525a0423388cf5e5a4db3397f78cad86871b3edf693b10131192396

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 637.6 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.56-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e4a95088118d8bd860a2b15be6c79bc48e788fb77f61ef8e655d27dbcb56adfb
MD5 aee0aebb115aca256ffc2b092f874732
BLAKE2b-256 2ef589a58e36dd7f528a03abb3546c2af1859232dcb430519c5e827d19e165b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 238.0 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.56-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fca00c105f2a467c8a55f261e79e1dccd1692cf35e8194482e375793774be7a3
MD5 c1f23e0760cb22d293d38825941c5226
BLAKE2b-256 53887eb856d1880163f22a9e9dea454a98b59ffe9b194e4c547a85c4f34090ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 209.9 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.56-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 08ff61c93333e7bfe10eaa3bb8c3d644c4f92ec927c71a251dd1b1ca48ccdde0
MD5 ff62cc0587104f0c76fce70d5a259363
BLAKE2b-256 237805bd2d74b22f901002df3afde1304b673b8ee395230d777c32ff44013d56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 190.2 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.56-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3446df8107655b7675c55ae6ce4286be8ea356dd832f9b1e165903f200d27b95
MD5 ae9e1b3cd8a53a2eb88f4d7c502a108e
BLAKE2b-256 71d514d14d987117056fa468e388a8be72c690c0707b28e30283e56304b4d535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 642.4 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.56-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 64d4371dcac8684c367fddcd0cc0d35587314ba7a672a18858e1364ea166874b
MD5 d2bd81da33c2e3a8f4651a8536e0edb5
BLAKE2b-256 645a898a9af2bcc348f3f8693a91b8c109d54268977f7eec5da0702dfc47e5a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 236.9 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.56-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2005364612b77655cd5337d26314f04a0f9058ad644ff2f421744ed956b6f456
MD5 5360eb7a2c4a510d2d3396ef60fedd91
BLAKE2b-256 810959ca5d041ab9ce7f392cb9d4fc7110ce8f5ce134b94a0793780d5ca7ef30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 206.8 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.56-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e0f136f72306ae154765b12155e22f64efbe00e2fd28f2311895f4da9199abc2
MD5 2ccd101dc6eb2ecc1d3b9a821a6fe9fc
BLAKE2b-256 c828e95a1c827ad5eed55e0cc93a5639c841ebe7844a147fc895b6ba5ff32515

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 187.3 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.56-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6fe9da9fca739fe45b51212ab58922b1bd7ce72d4cc1a1c812d4baab551207e3
MD5 6da9f33449b8acad347adb7a226483a3
BLAKE2b-256 495df4986dd40c9dc65f0586bdfcad2476bc8738b5aee8476e6eb32a9777e36e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 622.5 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.56-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fcd259a9cd34f8a7089d947c62059a5266110fe28f741718c27a62eae44e8008
MD5 7ecfab6580cbe711bb2f08ebfb84f7ca
BLAKE2b-256 d8e7cac0f042ec0e67cc94430f234a01e4aaef0e3feece77f2805a36a83e05fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 351.8 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.56-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 0315a6d39aff7f5d242cdb878befc3ba6f94a86cb36417178b8afc0393b17e07
MD5 e8d5f9fd49adc26bcb916fc921dfb23d
BLAKE2b-256 1bcb0c8552d82bd6261966e3d0e0a7da7a96d63b61690a9d91d0ca43191762c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 208.8 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.56-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 142cea8dd95ded3f308aaa74204f91b819ba357f477da377177805c4335919c7
MD5 486ffbdf729f59249f177bf55b7ee860
BLAKE2b-256 2584df9ecbb844dc5ae54115607e20be5554981014cf04ad39950699215fbcce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 195.5 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.56-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 64809198a4fd390f3962ba35fe8bedef508c8455111254740b7dd30d9453f76c
MD5 e8db5e7fdd3fdecad2a6ca13c682f278
BLAKE2b-256 9ec7d33c7eaa3808a48341e13b0992099ed10311d85bd7ef7f470251d0d36d4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 632.7 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.56-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 56b26e1a10753280d7c8ca9fbe974dddc0546cf721d11dd43235835aa99cfc77
MD5 f7c573b28c56707ae3df2e7211f40fc2
BLAKE2b-256 10ff3e88f18f78f82d7fb701dca78a6204d20225bd633067b462e728641a5ed7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 365.1 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.56-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 ea9750f5691130472a4483c42532c51317c2dfa299302e4956bd243adfac45ce
MD5 ccd34a8d4ea86071b8d81e71bc597aff
BLAKE2b-256 36971565f4d46a4c49046909e58ab8752035436f85ec802ae84c9238a7a555ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 590.7 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.56-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a2e02815299f29ba5f782ff2486db6b17975c8cfb36b49eea5f2b2ba06f6e4c7
MD5 f8856fa582b69092bcbdc170085e83c4
BLAKE2b-256 07326347191f747fde436c2bcabe3654c739ca8d9407953be2e5a29245c72a58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 213.7 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.56-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 48313ef5f617b1af660289c0be7738092c686da49076ddc673d7b7e350077d6b
MD5 c1649b9515ef45e8de7f5ddf7a8c66b7
BLAKE2b-256 20e567b7556a77c21563617222af54b9537f13ae3f9e9746cbc8556c6fa32ffe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 195.4 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.56-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2ab7d69a55773a31ce6559b7243030ff37ca7ced472b7f813ef2dba90b8d7f7c
MD5 a24f2ea881baa2210b06a548de388912
BLAKE2b-256 a3be60e67ff27a0a6b4cc59a20d45c9a3efe4c7be831c9a03c0d683318ba291e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 590.7 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.56-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0915a9e33fa5e312bb707d99b53a02e8aebf945aa0507c985a46e3cf18db2f70
MD5 f03b0fdca7b6ca5df859fbe0771b67b0
BLAKE2b-256 d2e1e5ada52925d160c0302a0edc9ed468750da3d3caf9259f7175f67ee50be5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.56-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 241.6 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.56-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4710651b8efaa09b8a6b16c1623e84feeec70ee78940db590a70c4165e6715ce
MD5 e4b1c731045829edf92813e019171551
BLAKE2b-256 b5b493902c042cb775ac84e1eb810972a50cab2b28ebec46c7226b85da9c91fa

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