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

updated:

2018-08-05

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.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.49.tar.gz (283.8 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.49-cp37-cp37m-win_amd64.whl (206.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

ruamel.yaml-0.15.49-cp37-cp37m-win32.whl (186.6 kB view details)

Uploaded CPython 3.7mWindows x86

ruamel.yaml-0.15.49-cp37-cp37m-manylinux1_x86_64.whl (634.0 kB view details)

Uploaded CPython 3.7m

ruamel.yaml-0.15.49-cp37-cp37m-macosx_10_9_x86_64.whl (234.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ruamel.yaml-0.15.49-cp36-cp36m-win_amd64.whl (206.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

ruamel.yaml-0.15.49-cp36-cp36m-win32.whl (186.6 kB view details)

Uploaded CPython 3.6mWindows x86

ruamel.yaml-0.15.49-cp36-cp36m-manylinux1_x86_64.whl (638.8 kB view details)

Uploaded CPython 3.6m

ruamel.yaml-0.15.49-cp36-cp36m-macosx_10_9_x86_64.whl (233.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

ruamel.yaml-0.15.49-cp35-cp35m-win_amd64.whl (203.2 kB view details)

Uploaded CPython 3.5mWindows x86-64

ruamel.yaml-0.15.49-cp35-cp35m-win32.whl (183.7 kB view details)

Uploaded CPython 3.5mWindows x86

ruamel.yaml-0.15.49-cp35-cp35m-manylinux1_x86_64.whl (618.9 kB view details)

Uploaded CPython 3.5m

ruamel.yaml-0.15.49-cp35-cp35m-macosx_10_6_intel.whl (348.2 kB view details)

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

ruamel.yaml-0.15.49-cp34-cp34m-win_amd64.whl (205.2 kB view details)

Uploaded CPython 3.4mWindows x86-64

ruamel.yaml-0.15.49-cp34-cp34m-win32.whl (191.9 kB view details)

Uploaded CPython 3.4mWindows x86

ruamel.yaml-0.15.49-cp34-cp34m-manylinux1_x86_64.whl (629.1 kB view details)

Uploaded CPython 3.4m

ruamel.yaml-0.15.49-cp34-cp34m-macosx_10_6_intel.whl (361.5 kB view details)

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

ruamel.yaml-0.15.49-cp27-cp27mu-manylinux1_x86_64.whl (587.1 kB view details)

Uploaded CPython 2.7mu

ruamel.yaml-0.15.49-cp27-cp27m-win_amd64.whl (210.1 kB view details)

Uploaded CPython 2.7mWindows x86-64

ruamel.yaml-0.15.49-cp27-cp27m-win32.whl (191.8 kB view details)

Uploaded CPython 2.7mWindows x86

ruamel.yaml-0.15.49-cp27-cp27m-manylinux1_x86_64.whl (587.1 kB view details)

Uploaded CPython 2.7m

ruamel.yaml-0.15.49-cp27-cp27m-macosx_10_9_x86_64.whl (238.0 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49.tar.gz
  • Upload date:
  • Size: 283.8 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.49.tar.gz
Algorithm Hash digest
SHA256 6c8d082bc22adeb65ba2123c17cd399a59e3b1e1004ed3f52969d0dcc6be4e39
MD5 7560cf597cbf042272f9741e037e708b
BLAKE2b-256 7b2ebe578ee125f006f6fa93a07e3330e9c12c8e197800e8e771af202a87876d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 206.6 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.49-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 94e05d209281094fd072dfc0116253cad349f286ec056527c10a9b991cd0442a
MD5 49d9090b4168c396eae2451b1272840b
BLAKE2b-256 493938b4ab3200d7aca58cb778d9afa4fc42c6fdefc8d58148eb2d39f625842b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 186.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.49-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 be5d0e3fc827c2ae5fe1048e3294d29e3cd5b50643dd2c40f5a77343c193b4b7
MD5 48c78756ee0dd1d8f79782d1a34f2e67
BLAKE2b-256 0a05a837c13a8fc8587fc80b548f628ab007a6a5cd6f82e626a480d08cc0b04d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 634.0 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.49-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e34322f3232fef827256b870f5927cfc710465418d202a1c75bd46d7c68efee2
MD5 8433ce2a117f2a0d12a189459b207a8a
BLAKE2b-256 dfbc4d7d8144bdd9dbd0c96f9773ab0b0bdcd51e0dbea455c42e7815fd7e9e6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 234.4 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.49-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f685c5265573f73b0da091e31c6626209283da8fadce1b06ed825a6590c948cb
MD5 43d086ec0917b48e1296d0101f1279f3
BLAKE2b-256 b26eddcfa877201a62a38cf543fa770678b85896bfc4beca23b04a92db4b589c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 206.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.49-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 eaf7ce86ba166dce5ef4ec9c4fafd6009116c43b1a421ffa97ba3fe0d56a43da
MD5 782be93f8db7623f92a353dee87322bc
BLAKE2b-256 a6e86ce62cf1b1778adaf40e0c42bccca68c09747a5830d6d94a11f6876df4b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 186.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.49-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4b36adc854496fa413cbc9b8d96ca829a730889bd635545af2664ea9a1baa5b6
MD5 def7c184c7c7e9c52084952697d1687a
BLAKE2b-256 0d278807b02f4ac5222815604aa28c21a0d379148f868fabe90177be5a4ee564

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 638.8 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.49-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b2a3bde103f1c5a9c812ed11331ffff16f888ca73e839174d0db8096897acdd3
MD5 f2ff5d055ba4b8d2734e49ab022604e2
BLAKE2b-256 1de74808d04ef9282d6af120a7a474e3418052ae308332c8c9a178761e9e7cfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 233.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.49-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2473bbc03446e28d4c7d3c664537c067e3185ec33a0a9cf572de0d56553e5878
MD5 5f41b1b079b6e0f94815d66e61209af6
BLAKE2b-256 58dc64ae529f9a5924b1cc14de4071337f38718490a69db9e6143e89b8fefd7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 203.2 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.49-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 80790903b20a11471282f78ec76eddb0af31f59001d7da0216017f269c187d69
MD5 11a6e045e3c6d297345dc670738d556e
BLAKE2b-256 a7fea1b8f7a156f65cdcb78646e73c163e4af9ac40570ca405422f3f549b049f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 183.7 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.49-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 3e3dfdb4c481c9226d848eec033a4fbfb8933dacd37dbf0ce3c68f3f257de196
MD5 48e1ba36fc9a32e659b8e8c320279284
BLAKE2b-256 ce3001fc6524cb23d46e26b8bd3fb555a6b40a8843c2df9b9467b5ce6ede460f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 618.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.49-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4fb1d58fd8bb5d3d0bb1292defd58a49d263590b92277e1e247d82297f0bd782
MD5 6d9149b764e7140a0579af01026a0f70
BLAKE2b-256 484f088eac14bf674bbdbe1f1a78c390121fd8d57e0ecefa3939eb1ea5afa053

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 348.2 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.49-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 38c94651f41515eaf8d8929574f2062ee3b1751cd35373d0b91049a75121a3a2
MD5 03be115fc3043c3435b9ee34f6983f4a
BLAKE2b-256 9d3b5065f588cf84cfc99e445b132edc7cb20a95f31832b92143c0a4456c4d7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 205.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.49-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 0770aaf4b20701d9374238a1ff0701c828b620aee9df7fa2424386945a2900d7
MD5 8b89e59021ad1af6c2d617e21c3ce68f
BLAKE2b-256 09b06c5d307e3d4d6bd1d37393d430ba8a8f39d6fa1dcc9c710a43a215bbf40a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 191.9 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.49-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 07b0f2e243ea780b278bc73a1060155fbc30b47e29d2908183d75a3ca8970321
MD5 df2033589122488a347575fe0b289d16
BLAKE2b-256 394303d80189ba03df661defe298be2ec3758c193f0542a1cbc95335ec0615ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 629.1 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.49-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b29356ec84729b2c59baea2e81ab3d19e772392fa9b277ae49ac5c4dd56e5595
MD5 fae9c6a60742328e0e66d76808cfedd7
BLAKE2b-256 09c77b1fd340e461df313b8c43456f592f618fdac6460c6d0ac7b7a97ed2b209

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 361.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.49-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 64759f1f2ec09ede66feb7dd0595da14adb66f5eb13c8922fc317b82bd5c3e34
MD5 f90edc5593a0ca977f0d5d6c89827769
BLAKE2b-256 39f89b3db2cd6f1d5eae59cd25c68acf0c33500d3cf73ecefc3be3680dd1e387

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 587.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.49-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b366d574d915dd6f60958eb675c49837ffa3d7e5138db4c3e4265e2e7c295d41
MD5 8b01caddcd2fea9838c27455a7d26ecb
BLAKE2b-256 d887e4c7a448dfb3609706ecdd80c741eceaec908a0e2a5069fe461831e387fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 210.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.49-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0463be452d780229990fa68d3941edeba28e9450ed707acd8a63fabf399c34cb
MD5 80ce718b201213b52f74a9f7bf1b6588
BLAKE2b-256 3eba074bd58412eeab5bcaece6035c926465c2ecaf2db6611ea7e2fd43a3e020

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 191.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.49-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 51592b2cde044ad69267942dc0c3b2f8e767ed178d3197b577863d1f365e8926
MD5 d30e53cfd0b53af1e3889177fd39700d
BLAKE2b-256 79e2b667967c94a14594fa598e64c9eaf6e140cc0a88c4e47cc748d8041b980e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 587.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.49-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b3fa3de482cd7b401dc028258104c57953a19237e2b5ad00093c5263c1f571fe
MD5 9a1c749a1fd42484283d48211a06fac5
BLAKE2b-256 f3ce0ed57d23bee082119e8a6a2a6e836ace425b425df3fe3a01f3ed535f4146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.49-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 238.0 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.49-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcc41b7e40ae7530f4d6d60cc0fed63abbdd8ca48cad7062eae2385a7d2cb0cf
MD5 dcc0cac6818115ff580fa027cfdf3f56
BLAKE2b-256 f01825e651216d8626487644feb5dca5037d229ac5408379872bf1a6a1e2df77

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