see attributes of object python code example
Example 1: python get attributes of object
getattr(object, 'attribute_name')
Example 2: see attributes of object python
>>> class new_class():
... def __init__(self, number):
... self.multi = int(number) * 2
... self.str = str(number)
...
>>> a = new_class(2)
>>> a.__dict__
{'multi': 4, 'str': '2'}
>>> a.__dict__.keys()
dict_keys(['multi', 'str'])