Ordered value getter from Dictionary type value.
Project description
Ordered value getter from Dictionary type value.
Requirements
Python 2.7 upper and 3.x
From a dictionary type, this can acquire a value in order of a methodical keys.
Install
pip install OrderedFormat
Usage
QuickStart
import OrderedFormat.formatter as odf
yml_txt_data = """
human:
name: John
age: 22
"""
yml_key_txt = """
human:
- name
- age
- name
"""
ordered_keys = odf.load_ordered_keys(None, raw_txt=yml_key_txt, load_type="yaml")
ordered_data = odf.kflatten(yml_txt_data, ordered_keys, load_type="yaml")
# ordered_data = ("John", "John", 22, "John")
Currentry, kflatten method return flat tuple value.
When you load keys value or dict value (json/yaml file type), you can use two method.
Using Load File Data
ordered_keys = odf.load_ordered_keys("<keys_file.json | keys_file.yaml>")
dict_data = odf.load_dict_val("<dict_file.json | dict_file.yaml>")
odf.kflatten(dict_data, ordered_keys)
Available extension is “.yaml” , “.yml” and “json”.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file OrderedFormat-0.0.2.tar.gz.
File metadata
- Download URL: OrderedFormat-0.0.2.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc561b14ef183fea172b4f8993032e3c3da27636874a966e2b1bf3465ef6c57f
|
|
| MD5 |
7e6f57a099c80062209a9dedafe77944
|
|
| BLAKE2b-256 |
0685dac043bfbb14434f5ff691b9b15fd8155bb32c4922922ac40b0cc330c106
|
File details
Details for the file OrderedFormat-0.0.2-py2.py3-none-any.whl.
File metadata
- Download URL: OrderedFormat-0.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da0dbd8e60ff136746bee9be03398151ff0a581c71988cff0c6a94a41a464f9c
|
|
| MD5 |
21748f2ac7e0440c3f7f8a4c398283a7
|
|
| BLAKE2b-256 |
5f2a7c9047d65cb72af9036660236a72a278f4e3544b0b8fa190d72577cec773
|