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

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.57 (2018-08-15):
  • Fix that CommentedSeq could no longer be used in adding or do a copy (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.57.tar.gz (290.3 kB view details)

Uploaded Source

Built Distributions

ruamel.yaml-0.15.57-cp37-cp37m-win_amd64.whl (210.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

ruamel.yaml-0.15.57-cp37-cp37m-win32.whl (190.4 kB view details)

Uploaded CPython 3.7mWindows x86

ruamel.yaml-0.15.57-cp37-cp37m-manylinux1_x86_64.whl (637.7 kB view details)

Uploaded CPython 3.7m

ruamel.yaml-0.15.57-cp37-cp37m-macosx_10_9_x86_64.whl (238.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ruamel.yaml-0.15.57-cp36-cp36m-win_amd64.whl (210.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

ruamel.yaml-0.15.57-cp36-cp36m-win32.whl (190.4 kB view details)

Uploaded CPython 3.6mWindows x86

ruamel.yaml-0.15.57-cp36-cp36m-manylinux1_x86_64.whl (642.5 kB view details)

Uploaded CPython 3.6m

ruamel.yaml-0.15.57-cp36-cp36m-macosx_10_9_x86_64.whl (237.1 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

ruamel.yaml-0.15.57-cp35-cp35m-win_amd64.whl (206.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

ruamel.yaml-0.15.57-cp35-cp35m-win32.whl (187.4 kB view details)

Uploaded CPython 3.5mWindows x86

ruamel.yaml-0.15.57-cp35-cp35m-manylinux1_x86_64.whl (622.7 kB view details)

Uploaded CPython 3.5m

ruamel.yaml-0.15.57-cp35-cp35m-macosx_10_6_intel.whl (352.0 kB view details)

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

ruamel.yaml-0.15.57-cp34-cp34m-win_amd64.whl (209.0 kB view details)

Uploaded CPython 3.4mWindows x86-64

ruamel.yaml-0.15.57-cp34-cp34m-win32.whl (195.6 kB view details)

Uploaded CPython 3.4mWindows x86

ruamel.yaml-0.15.57-cp34-cp34m-manylinux1_x86_64.whl (632.8 kB view details)

Uploaded CPython 3.4m

ruamel.yaml-0.15.57-cp34-cp34m-macosx_10_6_intel.whl (365.3 kB view details)

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

ruamel.yaml-0.15.57-cp27-cp27mu-manylinux1_x86_64.whl (590.9 kB view details)

Uploaded CPython 2.7mu

ruamel.yaml-0.15.57-cp27-cp27m-win_amd64.whl (213.9 kB view details)

Uploaded CPython 2.7mWindows x86-64

ruamel.yaml-0.15.57-cp27-cp27m-win32.whl (195.6 kB view details)

Uploaded CPython 2.7mWindows x86

ruamel.yaml-0.15.57-cp27-cp27m-manylinux1_x86_64.whl (590.9 kB view details)

Uploaded CPython 2.7m

ruamel.yaml-0.15.57-cp27-cp27m-macosx_10_9_x86_64.whl (241.8 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57.tar.gz
  • Upload date:
  • Size: 290.3 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.57.tar.gz
Algorithm Hash digest
SHA256 7921e9dc0410dc32dd7cb3857b8648f1ab1f29346c24e1edd07f9f4986d6fa23
MD5 6755c629ee8cc20b8804a5b75dc9e4bd
BLAKE2b-256 41777f06c338365e2e84a877239142a3a01e083e83d35024033b50f90473eec1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 210.3 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.57-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d2a150071a71d0dafa5ab4f42cdfb3ce6e9895a642d6c6d197820efe1fa5750b
MD5 201adbdfe4a8e3f79ac9e81c679662de
BLAKE2b-256 d92d7f2f1d991aea95486b550ce75905cd846961075bcf86dd35875210f98d25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 190.4 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.57-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7b91704c54852216b5bff7650f236dec91e0add45c05cd6c10787a5f3b70edb8
MD5 bccc39bffd6081e4f66c060e26c0fdc4
BLAKE2b-256 6860bcf7ade3f713e11a24392419ffe37bbe780fe8604c78cbd365ac85d85b80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 637.7 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.57-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d6692017f4f69413c9eea4e2850492f1e9dd47b227ab94189011c4e954d6482c
MD5 f19a5734c74a960b5bb5dfa27bd12836
BLAKE2b-256 54a323d47d6c57f4f08a03054f8425a531581ba12c5ac74037b5e5cdebee5e60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 238.1 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.57-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47c70190d42f706a6d2927e3383ad6ac4041db82f4b81036566a41738da05bcd
MD5 ea9f87940d6123c0866812f44d3cdbeb
BLAKE2b-256 13a5052dcc3eac51f1e09d45a890864e6f0a17162ca5ba3f64770b8f39be2130

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 210.1 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.57-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a82707994d13f71f8d4570b5c0082749eb44eecd771678fe3620de8863f6bbac
MD5 961d3b90ce3aa9d64568d6c5539dba8b
BLAKE2b-256 51bec7d976e67ca33f3a5d14e618986edd4dac758498e3e3c89a3e7daec49446

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 190.4 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.57-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8c5e38974b02fef355798a7223cef768cee4d93fe727ff9b4863d4ef81c71b29
MD5 c22f6507334a98a5aaab472db5b670a0
BLAKE2b-256 40d606fb1494d56cf4885b73d7af025a0f318e321de3d0452528d2a67135e920

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 642.5 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.57-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5da8dd8d55e680d9ee0565ba05d44b4a67f2adf6da07538e67a6cb82b08c11a6
MD5 81ea90fa2bd0ad206a4b429749895434
BLAKE2b-256 c822f163be20d987a1a8e9c7112b0e2db0fc06a7ae19b5af5f70e2874ab076cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 237.1 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.57-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ebe096ca09bf0b12857fb13f27c1d279b4b291bb997d28fdf3e22973db78bb7
MD5 482c8941423a2fed642fad9f4fe4f5ff
BLAKE2b-256 cc1d88d0be03a89b3c45c8d658e92f0ac3b878651b62e7cc0a4b98af80fca4ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 206.9 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.57-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4fd29a55e735a8fede54c183e371b128c5c57c655ca81d3150fcc025ac3d3c5b
MD5 5555f6877d060f8e91939fcfb155d58e
BLAKE2b-256 7efcb96f88ffb31463015553291d9f66b24170fd2d97511f921c6a13853fa966

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 187.4 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.57-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ed195f1e6d8b23f11f02d4b7acf8b546e72cfa0bd4e23c8718886e5b5873fcb6
MD5 6d2953397b5274e4b55bc2477e3b0672
BLAKE2b-256 1b93e73ab4caa32c3d4f9a7e43b0a728ef367f1fb28b0b6ef05a3cb57017c54d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 622.7 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.57-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 164e0ef2b908a6f99bdfa1f9082aba8f7ba36baf2f073f87019ff90c3ffeaf41
MD5 7b4c1005cbecd8106f72d3910ecf6085
BLAKE2b-256 88f5dd3170ba3e25c8291d8efd75c3e50111a0f6407a6cdda8be1482fcc436c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 352.0 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.57-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4567a9b7b6885a2ec3035a15654b7caaa179c4c9ad6f9133adb53d27d170cdff
MD5 ca70531c116e9223bd507ef420f176a9
BLAKE2b-256 23d68e3a48fc2c505a1ea21a72a2054312047ca8a08d629af985c466492a8305

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 209.0 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.57-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 ea5cb7068c3727d8b40348855a214215ebcdaf6bbbd7e434e436a2c626eb3d97
MD5 d856045af0d693dda606f59adde0de70
BLAKE2b-256 68c24a76731d7d012ba887d51d27123425bd7a2f03c785ea95dda3b074ce71b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 195.6 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.57-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 192243536b7ed86d7c3d102bc687ac41b603a3bfa8ab163995a65a95dfb5a5b4
MD5 424d6bba89f66ff596fb71b83236b08c
BLAKE2b-256 5744015244b92965ad8e9d0e885625cbb932a3787a236c918ffbc4a3148f6880

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 632.8 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.57-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0c3cb48f829687069e2c48a4185f17723e44f0a8470042c0a6757248ec4496b7
MD5 7c1fa61a0187bcf7a8900173de3dca87
BLAKE2b-256 7c86593abcf28d19e5c9e14f6a70c177e00a395f9dc91ec440a59ea013a34644

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 365.3 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.57-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 611951f393fbfbb48ff5faea35939d60ec00750e0dcb467a9a79ef9a385abdcf
MD5 fedfc6d1d4236c30ae0b17390433f952
BLAKE2b-256 e5320dd8d81f6f2feaf55ccba98bb43df8a3fdfe0993b82c223835bbf225d5f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 590.9 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.57-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 da81f649f5279c7b067ce25b7567a7d8bcb0adb72852f54f83c66caec520ae01
MD5 9274e8cfb97e550fe6c8d70352fa9444
BLAKE2b-256 3cbf6be7b1510270d785ca53193d06ba64c2f2bd969db732d108e2a82cbc9a0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 213.9 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.57-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3be085d4841e9e293fd77ecbe326ff8194c7b524f74baafedf4f0f2f5538b7c8
MD5 a78d6a6b8e30e8c1ee5a81572d4d96fe
BLAKE2b-256 59a525a07101b76da8057459a99cb33de9e9834835fe9367aab858d5249454a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 195.6 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.57-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 ac1da1031f88948f4726f995852d5b5bb33fe7795375ec9dc59ca38b970875f7
MD5 fc0707936f7e238637e226c55a8c6e84
BLAKE2b-256 aefb1b2a3669f49a01c7c1e64f3688d2c065c4a2f1d48f89d0b46ac4a6d767df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 590.9 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.57-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1c5d38df4c3f654708bfddd49091831647416d55a056585afa08c5d171859280
MD5 99b978ed2f456f7ac4934222d381f0b6
BLAKE2b-256 055e62061e0c80598a0ba478d1766cb25b1641441e0e9e35eec89657b83ae1f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.57-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 241.8 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.57-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1c0f8cc9e10eb156c8bec80a9a5a4474424e9ca34f3ae86b6db9fcb4af84c46
MD5 8b375f072659a313d66e7cb6365870a2
BLAKE2b-256 c03eb66f26fbb5b8c619c6c090156c05b19beb013cf3077dab4f44dca3439888

See more details on using hashes here.

Supported by

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