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

updated:

2018-08-03

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.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.48.tar.gz (283.2 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.48-cp37-cp37m-win_amd64.whl (206.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

ruamel.yaml-0.15.48-cp37-cp37m-win32.whl (186.2 kB view details)

Uploaded CPython 3.7mWindows x86

ruamel.yaml-0.15.48-cp37-cp37m-manylinux1_x86_64.whl (633.6 kB view details)

Uploaded CPython 3.7m

ruamel.yaml-0.15.48-cp37-cp37m-macosx_10_9_x86_64.whl (234.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ruamel.yaml-0.15.48-cp36-cp36m-win_amd64.whl (205.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

ruamel.yaml-0.15.48-cp36-cp36m-win32.whl (186.2 kB view details)

Uploaded CPython 3.6mWindows x86

ruamel.yaml-0.15.48-cp36-cp36m-manylinux1_x86_64.whl (638.4 kB view details)

Uploaded CPython 3.6m

ruamel.yaml-0.15.48-cp36-cp36m-macosx_10_9_x86_64.whl (232.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

ruamel.yaml-0.15.48-cp35-cp35m-win_amd64.whl (202.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

ruamel.yaml-0.15.48-cp35-cp35m-win32.whl (183.3 kB view details)

Uploaded CPython 3.5mWindows x86

ruamel.yaml-0.15.48-cp35-cp35m-manylinux1_x86_64.whl (618.5 kB view details)

Uploaded CPython 3.5m

ruamel.yaml-0.15.48-cp35-cp35m-macosx_10_6_intel.whl (347.8 kB view details)

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

ruamel.yaml-0.15.48-cp34-cp34m-win_amd64.whl (204.9 kB view details)

Uploaded CPython 3.4mWindows x86-64

ruamel.yaml-0.15.48-cp34-cp34m-win32.whl (191.5 kB view details)

Uploaded CPython 3.4mWindows x86

ruamel.yaml-0.15.48-cp34-cp34m-manylinux1_x86_64.whl (628.7 kB view details)

Uploaded CPython 3.4m

ruamel.yaml-0.15.48-cp34-cp34m-macosx_10_6_intel.whl (361.2 kB view details)

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

ruamel.yaml-0.15.48-cp27-cp27mu-manylinux1_x86_64.whl (586.7 kB view details)

Uploaded CPython 2.7mu

ruamel.yaml-0.15.48-cp27-cp27m-win_amd64.whl (209.7 kB view details)

Uploaded CPython 2.7mWindows x86-64

ruamel.yaml-0.15.48-cp27-cp27m-win32.whl (191.4 kB view details)

Uploaded CPython 2.7mWindows x86

ruamel.yaml-0.15.48-cp27-cp27m-manylinux1_x86_64.whl (586.7 kB view details)

Uploaded CPython 2.7m

ruamel.yaml-0.15.48-cp27-cp27m-macosx_10_9_x86_64.whl (237.6 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48.tar.gz
  • Upload date:
  • Size: 283.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48.tar.gz
Algorithm Hash digest
SHA256 15f203230c5100bf361b954a49cf28961fc71a9a2dbcab7c6494ad2ab806eed4
MD5 12e12814b7e89854250db56902782f57
BLAKE2b-256 a7682429de61a7fcba5bda68c3aeaa618205a0fc5e4fe8678be9f347409b0f1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 206.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 39bb726a668870090ffefe3aaab01553436fbe2937d1cc9d1335566f250d8bca
MD5 88f71c87658601fe1bfe9135558aede3
BLAKE2b-256 8e46d20e0e8a08beb1e91b53fc1ac6625d1df636cc652627919a7ebadc4f74dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 186.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0217bf237f8b7b9d14141da398e179c8ac71a06f95cb226af3ff7e378452080c
MD5 7e25448df230785d9ffe82ecc7972e6c
BLAKE2b-256 a73c8a11ad983ef6216f8524fec359082855b7f7528823103285075b3f12b5cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 633.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 34a4ac6dc50fc10106ce646f23389873c702d0397bb451868bf0d0956c8cb075
MD5 3e075009f8e3d1bc5a27071cbee3685a
BLAKE2b-256 53a9b070cc76c09f40faecd31411e8f49611b633fa101f57c0ef3f9bcb022951

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 234.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2218a6a64002f8755ced780084ab189338da5f62d333a47f972a4097be234d7b
MD5 bb1b28a284711c4cac4970c330eaf01a
BLAKE2b-256 b3ab999660350b6c3634f451b072bb42a06279e5479990068314fd0a61922736

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 205.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5aaefff7c8d14a4966db43f39ed2686cb9bbaf5ed6700e49ff3e6c3315d9e202
MD5 3a2b8e3115ab3f312e86018450cd9fa5
BLAKE2b-256 63cadf5d044d7f0ed78e85479f05bf228d284c01c06a54bac9137f7abfc6ba0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 186.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2332cca40e15e9ed50ba892f5bf38d42f49953be4848091d565d9b03b34a7736
MD5 f308018c1bcc7756ac27a1d195da0c9e
BLAKE2b-256 1b2b403b6809323231dead76a31a0f34cb847e8304d9430f063368c266b64302

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 638.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c73bb64dfb3910210805751f520a8772eaaafa6ee536a28d086682038fff059a
MD5 48714acf98d4c8187f6815622e4b7ea7
BLAKE2b-256 b34cc06858317b9bea633215a04e11d6245051db2ebec8a4c62897ec2fcd9c28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 232.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9561a75e7a668a6b8a307d3779d16221c9fca229d2f1730cdd5eb363449acd03
MD5 45f2c14c633fd9de2c099d654dd2058d
BLAKE2b-256 a8639b26562b0270101a36cf6a9fbe63d1581faa458feede4dbc3ce50366ecd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 202.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 efc86ae20f2963c4f03e17417b5838630d3351a6a0b68e9243693d9bcfd85497
MD5 91ecd41c4ae9936b865ab28e93d0b900
BLAKE2b-256 8479bae02113e9cdc80d86e2246fd820e03b9a79cd19f3dc09b13672100750ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 183.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8d9977d7a8a419fab487c9b3237d15c94cb23c2d5734eb8c760d52ddc63b9580
MD5 987d24a11e746449644398725f7e9a56
BLAKE2b-256 35b70d029bc33fd2e6269675829f63940116561adb4fc2f746bccb3e46532daa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 618.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 38faec52ea50a29aec4cf7123c538e4ad5264322be7eac08968da6972e3ed76a
MD5 78abea7713af28388636b010f0dfc5b0
BLAKE2b-256 2ef7fbc8cf571939a769fe378ccd4e118e6f21979050f845471410ee28190ec6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 347.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 757c29b1e2a01eb99fc113282681bbfb8f86cdb493e5a063d0bcc26b2d346e3c
MD5 f7cec23a2bc2886d583e5491dd234a94
BLAKE2b-256 79011dd634dc2ed5bc964f6d08c41646e1c1fc02b512a23e53350c2fd5ae2b99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 204.9 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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 efce07323c66f83f596cdc9e5ec421c5673d24855b4e15527a011046c15aea3e
MD5 fc5b353ab03a1fb0d35b1bc0819eeaac
BLAKE2b-256 85666454b9000b7b15e9c462f09af32b64c4a030cccf77653a2893878b98c317

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 191.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 83bd322bb2d6dba33dd83c438ff8c4c4d78f84311d474d8b5613ae77e5ab4f80
MD5 9acbbb1878bd280033fbeef06fa6bab4
BLAKE2b-256 b59b2cc2066880b468c932c2069b1f797b18a43d0f35dbb4eac4000d234930d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 628.7 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cdf7a5e058113dbd04aeafdfed542ca65fc16a7d60407be6bb1a3e3e838b33c7
MD5 2e296e47917340e47e2568a9d20dd7d3
BLAKE2b-256 693977dff0a0b77a5cd4421331f59891da0eb4a9ddcc09d1d5e9c090e0063ac9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 361.2 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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 74428b862b5b26d9f77f8e2fd21b2a4bee49e8bb5b56b017be69eae79e0127ac
MD5 a6aa83d668309d92e21387b6002e5520
BLAKE2b-256 63036602fda15fb84a947e69092e3b73c9654d16d86703149dca67fabdab8252

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 586.7 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d32e3d8fb3e69e1eb500bf8871c1f3b6cd767c3e1f8dc18fd10291c01b4c34f5
MD5 2240c23b48e0f62b7b7ea64c750681c0
BLAKE2b-256 f841941d0a209cb97606b2d6b208a1f19ed7061a62a3d7d5f9029bb8c0b8a5e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 209.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 bfcd3b5881087c346bd04d1c44f0825ec3b49d4fb8c2a9fb9b9e042e6614458b
MD5 ab11be7e7a01d9deedb719da2391c12b
BLAKE2b-256 c6c714cb5552aed79f31727f3a45a6a29efc084572f64708f9330d44d93342b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 191.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6011959e5c91fa4e6f41b354120f7c6e37e5b50a46570a6ef18815fecb3d9b38
MD5 30eec567291a33d403d8756c3b6a275c
BLAKE2b-256 e2c909b9535968c407b9fac94533bd658162aa85371b01363efca01672e4e7a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 586.7 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 331d013cd3d8cacc0865b11db67451bc0e8e252bb62ef40073f50fe5d0f7779c
MD5 a392fc2a01a1ab5892e9d2e4d060fa6f
BLAKE2b-256 8f6ebb5a59f1f61b8fa763679933c67104294a2298d771ba05136ea8b6c1138e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.48-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 237.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.0 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.2

File hashes

Hashes for ruamel.yaml-0.15.48-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b53bb275e1f1c39b08a7993c86bfc4bf99e27fd4446f388faa8ba4bf30bc8d7
MD5 1f737196d10c77ddc1e24d2ee92f22e2
BLAKE2b-256 52d7413ae2b979aa5cbf89217cdbc94c2c2b73e2f09361ef347771a46dbd4b15

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