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

updated:

2018-07-31

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 view-source:https://img.shields.io/badge/License-MIT-blue.svg

ChangeLog

0.15.47 (2018-07-31):
  • fix broken 3.6 manylinux1 (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.47.tar.gz (281.9 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.47-cp37-cp37m-win_amd64.whl (205.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

ruamel.yaml-0.15.47-cp37-cp37m-win32.whl (185.6 kB view details)

Uploaded CPython 3.7mWindows x86

ruamel.yaml-0.15.47-cp37-cp37m-manylinux1_x86_64.whl (632.9 kB view details)

Uploaded CPython 3.7m

ruamel.yaml-0.15.47-cp37-cp37m-macosx_10_9_x86_64.whl (233.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ruamel.yaml-0.15.47-cp36-cp36m-win_amd64.whl (205.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

ruamel.yaml-0.15.47-cp36-cp36m-win32.whl (185.6 kB view details)

Uploaded CPython 3.6mWindows x86

ruamel.yaml-0.15.47-cp36-cp36m-manylinux1_x86_64.whl (637.7 kB view details)

Uploaded CPython 3.6m

ruamel.yaml-0.15.47-cp36-cp36m-macosx_10_9_x86_64.whl (232.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

ruamel.yaml-0.15.47-cp35-cp35m-win_amd64.whl (202.1 kB view details)

Uploaded CPython 3.5mWindows x86-64

ruamel.yaml-0.15.47-cp35-cp35m-win32.whl (182.6 kB view details)

Uploaded CPython 3.5mWindows x86

ruamel.yaml-0.15.47-cp35-cp35m-manylinux1_x86_64.whl (617.9 kB view details)

Uploaded CPython 3.5m

ruamel.yaml-0.15.47-cp35-cp35m-macosx_10_6_intel.whl (347.1 kB view details)

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

ruamel.yaml-0.15.47-cp34-cp34m-win_amd64.whl (204.2 kB view details)

Uploaded CPython 3.4mWindows x86-64

ruamel.yaml-0.15.47-cp34-cp34m-win32.whl (190.8 kB view details)

Uploaded CPython 3.4mWindows x86

ruamel.yaml-0.15.47-cp34-cp34m-manylinux1_x86_64.whl (628.0 kB view details)

Uploaded CPython 3.4m

ruamel.yaml-0.15.47-cp34-cp34m-macosx_10_6_intel.whl (360.5 kB view details)

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

ruamel.yaml-0.15.47-cp27-cp27mu-manylinux1_x86_64.whl (586.1 kB view details)

Uploaded CPython 2.7mu

ruamel.yaml-0.15.47-cp27-cp27m-win_amd64.whl (209.1 kB view details)

Uploaded CPython 2.7mWindows x86-64

ruamel.yaml-0.15.47-cp27-cp27m-win32.whl (190.8 kB view details)

Uploaded CPython 2.7mWindows x86

ruamel.yaml-0.15.47-cp27-cp27m-manylinux1_x86_64.whl (586.1 kB view details)

Uploaded CPython 2.7m

ruamel.yaml-0.15.47-cp27-cp27m-macosx_10_9_x86_64.whl (236.9 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47.tar.gz
  • Upload date:
  • Size: 281.9 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.47.tar.gz
Algorithm Hash digest
SHA256 4b9de78a8b54ce0fcc04cdddeba16cd506f879189efc15ec865061ea7c93843a
MD5 897a064b1c87e217383399de7f514045
BLAKE2b-256 d05da4ef414c7ff9a0206c734894b5e525daec580046ac9dd80e9c31adfd96f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 205.5 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.47-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 642f7728605e0adb528987d55ebefe53a9602cd485325e227cdfadecb4f96d3d
MD5 bd683d214172f188600721515cfd60f3
BLAKE2b-256 d8d0b733647a15d626edd797a8c35bbc8e071a77eddd9673aa62671a2b70b080

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 185.6 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.47-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4db8af1cefad214920297c178923eb161d405555f05e0bbbc2ef94461a6d6d6c
MD5 9e2a153732fe57a5ab98cfaba5f5cf29
BLAKE2b-256 5e8c7ec247f5e91878fb8af36caba78ab33dbcbc376bf37c7ef10f864b02b20e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 632.9 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.47-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d08c39d18c8a8153707f438172e208fc9d2e71c815236134b39f67f3005e2a96
MD5 168466270c2860537dbef252c30389d5
BLAKE2b-256 d0503eb824997118330e1054accebdd3b2f2ae8872ec0b561848465e82d8a8b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 233.3 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.47-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 041335981d89f999244f58ca538c55d2c5c3ca882121f3d54c25fa353cf441ad
MD5 524b34d9f372be812cd01e136b5d00da
BLAKE2b-256 8f07ca7c2f6084243c855225e193627aea41d6d870b7024f5bff369f9eead641

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 205.3 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.47-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2da38bdfe7021c30dbef2c710cad67f341507225613ea1a48a1d9dec33fb943e
MD5 9dc758e9a463d5f0337120060ecf3f07
BLAKE2b-256 f4573e2ff771692559ed2ea80e6be33edc65cf987f7dfdfce980f000bfe5fb8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 185.6 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.47-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b3e445cd15c545c47f9c8abb755cc27e084fe06081cffd37b6cebb800afb26ed
MD5 67ca11bfd50f6a46bb646d2a2823b35d
BLAKE2b-256 b609da6067a14c39f797309019ab5214749644ffd9ae161be47933bb47233278

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 637.7 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.47-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d93ba3163c87ddbd043940ff7a738a27655c3818fdadda14e5f8149d8662d616
MD5 065b191bed16b9c10ed56cc516d6b5f0
BLAKE2b-256 4bbcc7a08688723a6327f000645babe33e92bbcd983effaa297180f3850d76bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 232.3 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.47-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18449746049b8eab51c8730f8a7ebc314af2ee471fdf542ec4affb67bd8d5c42
MD5 b80e2d77b04fd8e512d3d6548319199a
BLAKE2b-256 7fa31cd0e6cad148df1081db6697f897373e23fb8fee31f951a485aa04b8b88b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 202.1 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.47-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8ba5cb735dd11eb9ba5651520d8a4ec83758b38df3f790efb71a2d12d2beff0c
MD5 8ad1e0e359cc0265d40524106c4889d6
BLAKE2b-256 cd78e861a758f4743b52414680a282270089bb4fd56133ca225beb07be4eb2d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 182.6 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.47-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 376fc396dafa2541d656c410fec23e03f9818dbcedfe8f855c09199660474cf3
MD5 b17bef3fab489798260e1e45aa2978c8
BLAKE2b-256 6c71886d212f06b7231e1eb705eb707311c0c7904babe2d41eae8903c9b792ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 617.9 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.47-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aad048a0b80c538aa82ea885c3ca48329037abebb33e10f3d93bfed79b25675c
MD5 65a01bf07acb65f4e865123e58c0eb15
BLAKE2b-256 bbab3ad60e9c6d1bddfccfe8fe54cf8ba1871c22f14ef64909dce118de66d8d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 347.1 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.47-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 f39f747b8d65487e253682a94697d8e352d9b6a02bda02b0f73cd352d8c627f9
MD5 544efb3a0fad44055a4cbc79985fd0ef
BLAKE2b-256 a4418a1a6e3d296ae7e63dc44095b7467cd299170c979fbae82636adaa70b6b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 204.2 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.47-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 ac017f15fb7a8d6a9afb16df79a1e85c9c706a36a2effefbfa147cccdf6afaf9
MD5 3721aef130aa96c32b63cda8a3841e76
BLAKE2b-256 df356082ee6e878138cb10b531bd2972cd078d4021cb20138b6aaac6dc6e88f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 190.8 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.47-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 df2db416963f06e7a1654b6c0159d60a468f2d308860ec67e0916257c46b2b7a
MD5 fad6e95f2aaac870c06b8554ad59df86
BLAKE2b-256 29a016c8213481a8e2d4c778f1f35fbc0ab3c0107616699245f0a37f79c476e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 628.0 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.47-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b365b9761a3365b3287bd335d385ec1a76559438dde941c81960ed955d8ab9d9
MD5 539a5472d45ee90e189de1113467a099
BLAKE2b-256 85ba10b1c69250600fdfa0bf35d06a9907b482f8c80475b52e47934cc69aa005

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 360.5 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.47-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 0223a923c368a3d60f9c113e9d53973aaa9e67031b68b9345194d0f672a9fad3
MD5 7ef823005d223b65bf5fbe1611b87a0d
BLAKE2b-256 7491855277a5fc3e029c811b3027aef7615b220ad7c5a2280631cbb7ffe919fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 586.1 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.47-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4abe0c556ad8b1427b1e5ef22499f145645672a428e8ae9ebcd0adfe930cfa65
MD5 942f8d4614919ca0203367c1dd6e37ca
BLAKE2b-256 247fd6a09ab874fc007376bcb1b300fcb20641cc1436f219b16b44d5e5745624

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 209.1 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.47-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b6d608aa7634ad9811688cdb00bb42283c8792551ced0d54d9ee469f215a1bb4
MD5 7b0dcde33d079399e233319d02245ccd
BLAKE2b-256 24ce25772bc0479515a3ce6f7ca60d5d22838a3af5b0f9db01e6ab67ca54c48b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 190.8 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.47-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b3f92041e59b207d1fe84067b22eed1f54b6c2547533a26cea10f3f36139085d
MD5 a4cf2500b8ab6c80afa8d40c76506a76
BLAKE2b-256 fa12a3a020da2f103fb2fbd461dd1568532fde3eb80de0d78503a332f3dc4c2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 586.1 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.47-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 566273fcdc63795eb1341dc018f129200353d655217f674334f1b2382654fe28
MD5 73702cfc809e3f9c6db6d582a506a62e
BLAKE2b-256 1b2b516f571f62af48b0bf6eb1236449b241e2084e3f5204144b34d00ea36c10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.47-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 236.9 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.47-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b8bcfda46d807d5cc85bf25aa5bebf04abad21e3ff5b98445e6df50675d2dad
MD5 78bbfd6c6e690c2a39258fcc87b429e2
BLAKE2b-256 392b38debfab97e40e3cc5ab251e5f6c1c88a6599fa4aab88299553645db627c

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