I'd like to know if it is possible to automatically import all subclasses of a class in python without writing import subclassxy for every subclass.
|
|
|
Here is a draft example that can give you idea about what you want to do: my_module.py
in another file.py
PS: i don't advice you to do this !!!! |
|||||
|
|
You cannot, in general. The interpreter has no way of knowing whether or not a specific package defines a subclass of your class of interest. In principle, you can write a new package or module tomorrow defining a new subclass. It will now need to get imported. For the interpreter to keep track of all of this would be very burdensome. You can construct a package that imports all subclasses of interest. |
||||
|
|
|
You can make a module that does the |
|||
|
|
|
This simply isn't possible, because Python has no way of knowing what subclasses exist until it has already seen them (at which point they'll be in the base class's subclasses attribute). Why don't you tell us what you really want to achieve? That way, we can help you find a solution. |
|||
|