Search Results

2
votes

How can I dynamically get the set of classes from the current python module?

classes = [x for x in globals().values() if isinstance(x, type)] …