Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/oyaml-0.9.dist-info/METADATA @ 0:26e78fe6e8c4 draft
"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author | shellac |
---|---|
date | Sat, 02 May 2020 07:14:21 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:26e78fe6e8c4 |
---|---|
1 Metadata-Version: 2.1 | |
2 Name: oyaml | |
3 Version: 0.9 | |
4 Summary: Ordered YAML: drop-in replacement for PyYAML which preserves dict ordering | |
5 Home-page: https://github.com/wimglenn/oyaml | |
6 Author: Wim Glenn | |
7 Author-email: hey@wimglenn.com | |
8 License: MIT | |
9 Platform: UNKNOWN | |
10 Requires-Dist: pyyaml | |
11 | |
12 |travis|_ |coveralls|_ |pypi|_ |womm|_ | |
13 | |
14 .. |travis| image:: https://img.shields.io/travis/wimglenn/oyaml.svg?branch=master | |
15 .. _travis: https://travis-ci.org/wimglenn/oyaml | |
16 | |
17 .. |coveralls| image:: https://img.shields.io/coveralls/wimglenn/oyaml.svg | |
18 .. _coveralls: https://coveralls.io/github/wimglenn/oyaml?branch=master | |
19 | |
20 .. |pypi| image:: https://img.shields.io/pypi/v/oyaml.svg | |
21 .. _pypi: https://pypi.org/project/oyaml | |
22 | |
23 .. |womm| image:: https://cdn.rawgit.com/nikku/works-on-my-machine/v0.2.0/badge.svg | |
24 .. _womm: https://github.com/nikku/works-on-my-machine | |
25 | |
26 | |
27 oyaml | |
28 ===== | |
29 | |
30 oyaml is a drop-in replacement for `PyYAML <http://pyyaml.org/wiki/PyYAML>`_ which preserves dict ordering. Both Python 2 and Python 3 are supported. Just ``pip install oyaml``, and import as shown below: | |
31 | |
32 .. code-block:: python | |
33 | |
34 import oyaml as yaml | |
35 | |
36 You'll no longer be annoyed by screwed-up mappings when dumping/loading. | |
37 | |
38 |