Skip to main content

ruamel.yaml

ruamel.yaml is a YAML 1.2 loader/dumper package for Python.

version:

0.15.46

updated:

2018-07-29

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

ChangeLog

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

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.46.tar.gz (281.6 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.46-cp37-cp37m-win_amd64.whl (205.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

ruamel.yaml-0.15.46-cp37-cp37m-win32.whl (185.5 kB view details)

Uploaded CPython 3.7mWindows x86

ruamel.yaml-0.15.46-cp37-cp37m-manylinux1_x86_64.whl (632.8 kB view details)

Uploaded CPython 3.7m

ruamel.yaml-0.15.46-cp37-cp37m-macosx_10_9_x86_64.whl (233.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

ruamel.yaml-0.15.46-cp36-cp36m-win_amd64.whl (205.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

ruamel.yaml-0.15.46-cp36-cp36m-win32.whl (185.5 kB view details)

Uploaded CPython 3.6mWindows x86

ruamel.yaml-0.15.46-cp36-cp36m-manylinux1_x86_64.whl (644.3 kB view details)

Uploaded CPython 3.6m

ruamel.yaml-0.15.46-cp36-cp36m-macosx_10_9_x86_64.whl (232.2 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

ruamel.yaml-0.15.46-cp35-cp35m-win_amd64.whl (202.0 kB view details)

Uploaded CPython 3.5mWindows x86-64

ruamel.yaml-0.15.46-cp35-cp35m-win32.whl (182.5 kB view details)

Uploaded CPython 3.5mWindows x86

ruamel.yaml-0.15.46-cp35-cp35m-manylinux1_x86_64.whl (624.7 kB view details)

Uploaded CPython 3.5m

ruamel.yaml-0.15.46-cp35-cp35m-macosx_10_6_intel.whl (347.0 kB view details)

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

ruamel.yaml-0.15.46-cp34-cp34m-win_amd64.whl (204.1 kB view details)

Uploaded CPython 3.4mWindows x86-64

ruamel.yaml-0.15.46-cp34-cp34m-win32.whl (190.7 kB view details)

Uploaded CPython 3.4mWindows x86

ruamel.yaml-0.15.46-cp34-cp34m-manylinux1_x86_64.whl (634.9 kB view details)

Uploaded CPython 3.4m

ruamel.yaml-0.15.46-cp34-cp34m-macosx_10_6_intel.whl (360.4 kB view details)

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

ruamel.yaml-0.15.46-cp27-cp27mu-manylinux1_x86_64.whl (593.0 kB view details)

Uploaded CPython 2.7mu

ruamel.yaml-0.15.46-cp27-cp27m-win_amd64.whl (208.9 kB view details)

Uploaded CPython 2.7mWindows x86-64

ruamel.yaml-0.15.46-cp27-cp27m-win32.whl (190.7 kB view details)

Uploaded CPython 2.7mWindows x86

ruamel.yaml-0.15.46-cp27-cp27m-manylinux1_x86_64.whl (592.9 kB view details)

Uploaded CPython 2.7m

ruamel.yaml-0.15.46-cp27-cp27m-macosx_10_9_x86_64.whl (236.8 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46.tar.gz
  • Upload date:
  • Size: 281.6 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.46.tar.gz
Algorithm Hash digest
SHA256 8f048085a58ca59353c2c283e5f14af387ab6a1a7ae5d6ec26056bc2e7a396f0
MD5 5cdbb785b73d58662b8582a97390f6d6
BLAKE2b-256 3d46a08f44a2a919e32689dca849ebfcb4f71f5e91e18f840bd49a88dc157a14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 205.4 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.46-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 49ea842ce503ecf8d68762cf8110f38aa8c71d143a0043d86d770762a50d9879
MD5 e7ebe2c90349b7bdee5ed399d96133f5
BLAKE2b-256 232c566a55ecd08075e9f876d5bc0949af509f5b60ff8e86ebb4f52b48ad0009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 185.5 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.46-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2047d90872c88f01b6031b47e2b916d8e0845ffbe2c78ba8395841df090e7603
MD5 538c73a14e76145d07875da6ea1c0627
BLAKE2b-256 d5bfb8b81d903a58e262659a526f3704af4d239bc441baa62b1bfe13063d3c56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 632.8 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.46-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9dabdd59d55a8acc3869397701f9325e396fde1e2b3247411d5a9336e24a9014
MD5 1d0e30cea53273e22d966acda3b541e6
BLAKE2b-256 5b8b523140adb2b21c757282df0be91929e6696deec04b27443923137da80692

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 233.2 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.46-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e87664d8f8d58c0804169ef6be13c7006723ccab54c99199672f0c2957b01dd
MD5 adbf941e165b59dc7a88579a322a2ccb
BLAKE2b-256 4933f58e278e7eb168dc8add633cc6b4de522ce50175d3504b14ab9aab94310c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 205.2 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.46-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b301b432ced59daa8363528a84c13db3bb513e932b1f48002314254897898888
MD5 b8a58659de7f38e60262a69667af4052
BLAKE2b-256 3f1f647dc9c0493272ed6fef4fcb028991ab3c2195f4a3e28e463c8526cd46e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 185.5 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.46-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0f5e77b388ee9a9f7408ddfeebb480d0090ad0dfff4d1d1195996ea48c49d47d
MD5 e1c4e1c81ba571241923ba6984fae599
BLAKE2b-256 4cb6858de0e146efdfcdacbb1724dc6646bf9e4764eb0b42473cde5ce2f4540f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 644.3 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.46-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f9fb6cdbda7f43d54be62bed60abc21afa391384be91be30a9fbc8cee9b9cd4f
MD5 76fe01b9a330f719ee8fd7e056b4a1e8
BLAKE2b-256 bf6bb75ca2a3005e70b6c47c6fef2e1248859d721c830c5f963e08907e8f6562

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 232.2 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.46-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d172c59575676b28673d206f07c891e93b197bb7a85e4a640168f607c3c7ecb7
MD5 2a38165af43e73f9dc1b67269ed0009b
BLAKE2b-256 216f79f5dea548f3c8c975868de1fa28631e5cadcabbf3bfb60915a3dcc0bbcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 202.0 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.46-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b9852bc77f3a305b78f5b4af63e3e30388333fc5f2910d8c508bed324fd719a2
MD5 3e2ff2417d07dd757ef4f530bc78e74e
BLAKE2b-256 9fe275679fb4a61c8ce46ca5a6f8944d7c3ea898dbc78aacbfbcfcd31b4839aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 182.5 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.46-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 17de22a169560c07d722624410edc7434a226d8330cb55c9ee6c67878db5916f
MD5 77df211795e862f7944cae714b9e4ac9
BLAKE2b-256 d1b0efe808c53e59d5866bd6558bb04f949a1fd99eb02c85d28b0d3c674524c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 624.7 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.46-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ea6d9f3ef81d009d6921cc79e4b9084f46e7114185f49b197b33882850c46057
MD5 19dd9daa794e69c0350a7c6fcf323743
BLAKE2b-256 fe9ca6493b83fc4a38f83aee8e48e07b340f4be4f67304e85785019c9aa19110

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 347.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.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.46-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 cb75c69f6d02e8e080fc3a5d24dc7dffed7bde28c072fc098fcb618534d5ae1f
MD5 88bcf23d7228bc81eb255084b5206714
BLAKE2b-256 51bae4cd5bee4acbb448342ec04957d726bb1282a5fb15211acb3c13f7fe5343

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 204.1 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.46-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 f7c908aa7e4cc48176f0cd0a9b3d55bbd34a4a6a52f34db788f3ea3e2b8d1433
MD5 a356c088d91bd7a8bfec5941a49fd888
BLAKE2b-256 213830ac0bc090011b448cf56ddc7268f6a1bd1f92e35e2bad6eda8d327ec936

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 190.7 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.46-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 10ede570c5f4c3cb575fcef98b39ff995ef1ffcc48724f6b9d10bd52d5cc2d8c
MD5 fb7c40990f560fd8afdaf5e900026981
BLAKE2b-256 440ea6a2e1a791f28b6ee8aa10c2c24cb95bcc6efb4251caa74579817e9154fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 634.9 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.46-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 499aa7cd2b1f0caae511b766846266911719c1b00dddf282ac5b649a351667d5
MD5 f29e5a0a930971072eb8cacc00b7b522
BLAKE2b-256 2de24abe02a4e8a7b770eb99878db467ee610b75746f0fa323cbc4d66d6d48dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 360.4 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.46-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4ce9ca97df5bc48ba2b3ec08bca9a180d550118c2882c0c62cc64809e8d1ef24
MD5 525cfec2d613af85319c251bedb390dd
BLAKE2b-256 312b7cf0103dc623f2da6d6795ee6d3a3f5721c3df69d82be1ecb0b1f02dcb77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 593.0 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.46-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8931d528a8a83f88ed40b264efb725c638a8eff664cfe4e92ddbdf66613e5518
MD5 ef0a561ac86c6ebfe98d22bd977835e3
BLAKE2b-256 b1303d5c9bc3955136027177a7bbe4cf9ec94504d8cba851ce391eb2e9633db5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 208.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.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.46-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a280e18d7623f10cf3c5c5a085eac7f3754f231091b42bdbb3676a5a96ce0832
MD5 464f23490097e4619236412d52b2ddc5
BLAKE2b-256 7079337d043310c8b9fe7978a9ab72b7838b8088785a66a69cb6558771a19969

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 190.7 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.46-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c24a0eee22b73b91335d971d57a2131ebd68ec9ab961fc2528f18156fa4ad62c
MD5 9a65e516f0c2a366e9cfe2aeadb158e7
BLAKE2b-256 002d05bccd2fa9cb7114f922a4903b73b817de68bd5d4ed63340102905aac09a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 592.9 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.46-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 edf5fa31fb95271ea2e96e2b7d8c79b455bee5baf5e1dc814b413ddb301414ae
MD5 8cf8aea08f1799a4d88114b3811d7227
BLAKE2b-256 339638f288fc864f8effee0604b5a4bf5f1d855a7caac3a0935e4a671858a181

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ruamel.yaml-0.15.46-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 236.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.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.46-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 002ccecd78a487e205fd05216b9d645dac2541a4a60d600b3207f196e537d07e
MD5 53c2a81c34e505c1aeeaaec17b89f536
BLAKE2b-256 cd0e0e21d703e775f94447d6889ec231309679cb684347868b4b1e73e08510fd

See more details on using hashes here.

Release history Release notifications | RSS feed

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