Python list of class attributes - Python
import inspect class aClass: aMember = 1 def aFunc(): pass inst = aClass() print inspect.getmembers(inst)
Python list of class attributes - Python
import inspect class aClass: aMember = 1 def aFunc(): pass inst = aClass() print inspect.getmembers(inst)