In Django, I can do this:
test = Test.objects.get(id=1) test.name
I want to be able to access the properties using dynamically generated st
You can use python's built in getattr() function:
getattr(test, 'name')