Intro to Python Programming
__getattr__ is a special method in Python that allows you to customize the behavior of attribute access for an object. It is called when an attribute is accessed on an object, but that attribute is not found in the object's namespace.
congrats on reading the definition of __getattr__. now let's actually learn it.