A few extensions to pyyaml.
Project description
aspy.yaml
Some extensions to pyyaml.
Installation
pip install aspy.yaml
aspy.yaml.ordered_load
yaml.load which respects order for dictionaries in the yaml file.
>>> from aspy.yaml import ordered_load
>>> ordered_load(
'foo: bar\n'
'bar: baz\n'
'herp: derp\n'
)
OrderedDict([('foo', 'bar'), ('bar', 'baz'), ('herp', 'derp')])
aspy.yaml.ordered_dump
yaml.dump which respects order for dictionaries in the yaml file.
>>> from aspy.yaml import ordered_dump
>>> print(ordered_dump(
OrderedDict((('a', '1'), ('b', '2'), ('c', '3'), ('d', '4'))),
default_flow_style=False,
))
a: '1'
b: '2'
c: '3'
d: '4'
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
aspy.yaml-1.3.0.tar.gz
(3.0 kB
view details)
Built Distribution
File details
Details for the file aspy.yaml-1.3.0.tar.gz
.
File metadata
- Download URL: aspy.yaml-1.3.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7c742382eff2caed61f87a39d13f99109088e5e93f04d76eb8d4b28aa143f45 |
|
MD5 | 1959a34873a6bdc1fba807023804867e |
|
BLAKE2b-256 | a1e92ee775d3e66319e08135505a1dd3cdba606b4da4caeb617eb3514d901b14 |
File details
Details for the file aspy.yaml-1.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: aspy.yaml-1.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 3.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 463372c043f70160a9ec950c3f1e4c3a82db5fca01d334b6bc89c7164d744bdc |
|
MD5 | ad96ebcbdd043f9d8f608f3aecba58e3 |
|
BLAKE2b-256 | 99ce78be097b00817ccf02deaf481eb7a603eecee6fa216e82fa7848cd265449 |