Converting back to a dictionary
Syntax:
dict(Node)
This is pretty straightforward, as shown above. The command will make a new dictionary. If you want to directly manipulate a Node's data instead, you can simply perform methods on the called function, like so:
db = Node("sample.pyn")
db.a = [1, 2, 3]
db.a().append(4) # <---
print(db.a()) # [1,2,3,4]