Recursively walk through and manipulate dict/list/tuple trees
Project description
Pywalk is a python module written for traversing trees built of dictionaries, lists and tuples in a breadth-first manner.
This module is still under development. If you’re used to mature, polished python libraries you may want to avoid pywalk. Additionally, it has only been tested against Python 2.7.1+ (what happens to be what’s on my computer) so it may not work as expected in Python 3.x. However, if you’re a more adventurous developer with an urge (or need) for manipulating nested data structures, this just might be the library for you!
Pywalk is a spiritual port of js-traverse, in that it’s meant to solve similar problems.
How It Works:
walk(tree) returns a decorator that applies a callback to each node in the tree, in a breadth-first manner. For example:
tree = {'a': 1, 'b': [9, 9, 6, 7, 6]} print("Tree before: "+repr(tree)) @walk(tree) def that_aint_my_zip_code(node): if node.value == [9, 9, 6, 7, 6] : node.set([9, 9, 7, 7, 5]) print("Tree after: "+repr(tree))
For more, visit https://github.com/jesusabdullah/pywalk .
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
File details
Details for the file pywalk-0.0.2.tar.gz
.
File metadata
- Download URL: pywalk-0.0.2.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f15e45d83bcb0dcbef452c3621f985aa7ddeacced07a411c34587af392736c1 |
|
MD5 | 8690506204cd62302e652c79b62384b6 |
|
BLAKE2b-256 | 94f8d25a4176f3c7ea43ddc6cdc724341016723ccc1d3e89c1894681edbf06fb |