
Matthew B. answered 11/12/19
Founder, CEO, and Lead Developer: Apteryx Labs | Stanford, 2015
Use .__dict__!
.__dict__ returns a dictionary mapping the names for a module's attributes to their corresponding functions/values. Foo.__dict__ might return something like:
By iterating over the keys in this dictionary, you can select which functions you want to call pretty arbitrarily!