Kay Jan W.
Kay Jan W.
Hi, this is implemented over here. https://bigtree.readthedocs.io/en/latest/others/tips.html#merging-trees
Hi, this is implemented over here. https://bigtree.readthedocs.io/en/latest/others/tips.html#merging-trees
Hi, this is implemented over here. https://bigtree.readthedocs.io/en/latest/bigtree/node/basenode.html#bigtree.node.basenode.BaseNode.sort
Hi, this is implemented over here. https://bigtree.readthedocs.io/en/latest/bigtree/tree/helper.html#bigtree.tree.helper.get_tree_diff
Hi, this is implemented over here. You can do a add_path_to_tree("f/b/d/j") to add Node "j" as child of Node "d" https://bigtree.readthedocs.io/en/latest/bigtree/tree/construct.html#bigtree.tree.construct.add_path_to_tree
I managed to accomplish this by adding this to my mkdocs.yml ``` plugins: - mkdocstrings: handlers: python: options: show_source: false ``` I got it from [mkdocstrings documentation](https://mkdocstrings.github.io/python/usage/configuration/general/#show_source).
Good catch. Will fix this, thanks for raising the issue!
This is fixed in v0.19.4, have updated the documentation as well. Closing this issue!
This is now supported in [bigtree](https://bigtree.readthedocs.io/stable/bigtree/tree/construct/#bigtree.tree.construct.nested_dict_key_to_tree), and can be done this way: ```python from bigtree import nested_dict_key_to_tree data = {'tax': {'a':{'c':{}, 'd':{}}, 'b': {'e':{}, 'f':{}}}} root = nested_dict_key_to_tree(data, child_key=None) root.show()...