I\'ve already seen the following question but it doesn\'t quite get me where I want: How can I get a list of all classes within current module in Python?
In particul
from pyclbr import readmodule clsmembers = readmodule(__name__).items()