Utilities for traversing and transforming data structures
Project description
Utilities for traversing and transforming data structures
Inspired by Hapi framework for .js (especially the Hoek plugin), I really missed some of these utilities in python so decided to port them over.
reach(source, pattern, [options])
Converts an object key chain string to reference
options - optional settings
separator - string to split chain path on, defaults to ‘.’
default - value to return if the path or value is not present, default is None
strict - if true, will throw an error on missing member, default is False
A pattern including negative numbers will work like negative indices on an array.
If pattern is False-y, the object itself will be returned.
from schleppy import reach
pattern = 'a.b.c'
source_obj = {'a' : {'b' : { 'c' : 1}}}
reach(source_obj, pattern) # returns 1
pattern = 'a.b.-1'
source_obj = {'a' : {'b' : [2,3,6]}}
reach(source_obj, pattern) # returns 6
transform(source, transform, [options])
Transforms an existing object into a new one based on the supplied obj and transform map. options are the same as the reach options. The first argument can also be an array of objects. In that case the method will return an array of transformed objects. Note that options.separator will be respected for the keys in the transform object as well as values.
from schleppy import transform
source = {
'address': {
'one': '123 main street',
'two': 'PO Box 1234'
},
'title': 'Warehouse',
'state': 'CA'
}
result = transform(source, {
'person.address.lineOne': 'address.one',
'person.address.lineTwo': 'address.two',
'title': 'title',
'person.address.region': 'state'
})
# Results in
# {
# 'person': {
# 'address': {
# 'lineOne': '123 main street',
# 'lineTwo': 'PO Box 1234',
# 'region': 'CA'
# }
# },
# 'title': 'Warehouse'
# }
Project details
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
File details
Details for the file schleppy-1.1.22.tar.gz
.
File metadata
- Download URL: schleppy-1.1.22.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.26.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 566edecf1abe51bb880036dc276a0d1da8576e312715c26b685e2aa95fc0c9f7 |
|
MD5 | 3859a5c9033ff8bc4566cfddb3cd206f |
|
BLAKE2b-256 | 7f5213fa2603ff1e38fd33efd4668984a73b72b4122c925a340419aa718ca3e2 |
File details
Details for the file schleppy-1.1.22-py3-none-any.whl
.
File metadata
- Download URL: schleppy-1.1.22-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.26.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d8dbac7cd518bf60c7fbbdf12ed9eeaea44d54e897217591eb813243dd45870 |
|
MD5 | f961f8a77cec63eb65f2bcec0f481288 |
|
BLAKE2b-256 | 7d69a11c9f19b9ab4ba00903c9679ec0af80e661eec8cd09b68b6707a700517c |