I am using PyOrgMode to process the nodes of an orgmode file. I have had no problem with the OrgDataStructure class, but, as you can see https://github.com/bjonnh/PyOrgMode/blob/master/PyOrgMode.py the drawer and properties are parsed by another class, OrgDrawer, and I cannot, i.e., I am not so fluent in python to view the link between OrgDataStructure and OrgDrawer. Can anyone help me? My minimal code: import PyOrgMode tree = PyOrgMode.OrgDataStructure() tree.load_from_file('test.org') for i in tree.root.content:    print i And what else to get the properties of, let's say, tree.root.content[0]? TIA