A small utility for wrapping trees (nested dict/list) that allows filesystem-like path access, including walking up with "../".
Project description
FS Path Tree
A simple class to allow filesystem-style path access to nested dict/list structures, including support for walking "up" the tree with '..'.
Example:
config = fspathtree()
config.update( { 'desc' : "example config"
, 'time' : { 'N' : 50
, 'dt' : 0.01 }
, 'grid' : { 'x' : { 'min' : 0
, 'max' : 0.5
, 'N' : 100 }
, 'y' : { 'min' : 1
, 'max' : 1.5
, 'N' : 200 }
}
} )
# elements are accessed in the same was as a dict.
assert config['desc'] == "example config"
# sub-elements can also be accessed the same way.
assert config['grid']['x']['max'] == 0.5
# but they can also be accessed using a path.
assert config['grid/x/max'] == 0.5
# get a sub-element in the tree.
x = config['grid/x']
# again, elements of grid/x are accessed as normal.
assert x['max'] == 0.5
# but we can also access elements that are not in this branch.
assert x['../y/max'] == 1.5
# or reference elements from the root of the tree.
assert x['/time/N'] == 50
API
The fspathtree class can be default constructed, with a dict, or with another fspathtree
t1 = fspathtree()
t2 = fspathtree({'one':1})
t3 = fspathtree(t2)
Elements in the tree can be tested for presence using the in operator. They can be accessed with the
__call__ operator or the get(...) method.
t = fspathtree({'one':{'two': 2}})
assert '/one/two' in t
assert t['/one/two'] == 2
assert '/one/three' not in t
t['/one/three'] = 3
assert '/one/three' in t
assert t['/one/three'] == 3
assert t.get('/one/three', None) == 3
assert t.get('/one/missing', None) is None
The get_all_paths() method returns a list of all paths in the tree (it actually returns a generator).
get_all_leaf_node_paths() returns a list of only leaf node paths. Both accept a predicate that can
be used to filer the paths that are returned.
t = fspathtree({'one':{'two': 2}})
paths = list( t.get_all_paths() ) # returns [PathType('/'), PathType('/one'), PathType('two')]
paths = list( t.get_all_leafe_node_paths() ) # returns [PathType('two')]
paths = list( t.get_all_paths(predicate p: p.name == 'one') ) # returns [ PathType('/one')]
Install
You can install the latest release with pip.
$ pip install fspathtree
Or, even better, using pipenv
$ pipenv install fspathtree
Or, even better better, using poetry
$ poetry add fspathtree
Design
The fspathtree is a small wrapper class that can wrap any nested tree data structure. The tree that is wrapped can be accessed with
the .tree attribute. This is an improvement over the old fspathdict.pdict class, which stored nodes internally as fspathdict.pdict instances
and required "converting" to and from the standard python dict and list types.
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 fspathtree-1.1.1.tar.gz.
File metadata
- Download URL: fspathtree-1.1.1.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f8a54ae99a0e9c3875491207455fde01c6ecde718e694dab43488f24a473964
|
|
| MD5 |
6c738c6170518991b45d3f20f9382a3a
|
|
| BLAKE2b-256 |
6a40fbf18773af797258ad2167036ddcfc49aab0dfbe04ddac023d0bba37fe96
|
File details
Details for the file fspathtree-1.1.1-py3-none-any.whl.
File metadata
- Download URL: fspathtree-1.1.1-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15fd49ff89fc1de3b5e6681b99216ac660bf24290918eebe2dff8bfd13659cdb
|
|
| MD5 |
6c9738e5e09a75dbe63487720ca3d90e
|
|
| BLAKE2b-256 |
83a58e5b17f4fb7e32de3c249e874677fbac42021f595851b5b0a970ada4d971
|