[Answered ]-Is there a tool to view the child class and all its attributes and methods inherited from multiple parents in Django / Python?

2👍

I’m not sure if you’re looking for something more customizable to your project, but you can take a look at Classy Django which does what you’re looking for with Django’s built-in class based views.

If that’s not going to cut it, you can always install IPython and explore instances of each class or classes themselves by pressing the tab key to view all members on an instance/class.

Leave a comment