You can get details about any module, object, function, etc. (within QAMgr or otherwise) using Python’s built-in help command.
Note that when requesting help for functions, there is a difference between help(some_function) and help(some_function()): The former shows help for the function itself, and the latter shows help for whatever the function returns, which could be any Python object or datatype (including None, if the function simply performs an action without returning a result).
Friendly reminder: The term “method” simply refers to a function that is part of a class.
For example:
# initialize
from qamgr import *
q = QAMgr()
# view help
help(qamgr) # module
help(q) # class
help(q.profile) # class method
help(q.profile()) # class method's result (in this case, a matplotlib.pyplot.Figure object)
help(ls) # function
help(ls()) # function's result (in this case, a list)Finally, if at any point there is a problem that you cannot resolve, please contact me.
Good luck!