I found this, but that's not quite what I want to do.
I want to import all the classes in all the files in a directory. Basically, I want to replace this:
from A import *
from B import *
from C import *
With something dynamic, so that I don't have keep editing my __init__.py
every time I add another file.
The glob
solution seems to be the equivalent of
import A
import B
import C
which is not the same at all.