In my project , i should use tree structure. after seeing documentation of treebeard ,i thought it is well suitable. thanks for providing clear documentation. In documentation, provided the example
node = get(root.pk).add_child(name='Memory')
get(node.pk).add_sibling(name='Hard Drives')
<Category: Category: Hard Drives>
get(node.pk).add_sibling(name='SSD')
<Category: Category: SSD>
get(node.pk).add_child(name='Desktop Memory')
In the above code if i want add child for sibling(ex:Hard Drives),how i can do that