Object - Inheritance in Python
class DerivedClass(BaseClass)
where:
See Python Type - Dynamic Class
To directly access the attributes or methods of a superclass, use the built-in super function.
class DerivedClass(Base):
def some_method(self):
super(DerivedClass, self).methode()
where: