python print all object attributes and values code example
Example 1: python dump object print
print(dir(your_variable))
Example 2: python display object attributes
object_name.__dict__
print(dir(your_variable))
object_name.__dict__