Hi,
I'd like to know how to traverse an object graph in python from a String, is there any project or feature like OGNL (http://www.opensymphony.com/ognl/) or BeanUtils (http://commons.apache.org/beanutils/) in Java?
Basicaly I need to write a string "property.innerproperty = True" or "property = 'xpto'" and process it from a root object.
(I know that I could do it using reflection but I'm looking for a helper framework like the cited)
Thanksa