1from openap import WRAP 2 3wrap = WRAP('A320') 4 5for func in dir(wrap): 6 if callable(getattr(wrap, func)): 7 if not func.startswith('_'): 8 print(getattr(wrap, func)()) 9 10