Deathwing
<Bronze Donator>
I don't, not directly. Python lets the super know about its subs though, so that's what I'm doing. I've been told that's not a good idea though.Again, I don' t know Python, only how I would do it in C#. But does this Stackoverflow thread help?
How to dynamically load a Python class
From one of the replies:
Code:def import_class(cl): d = cl.rfind(".") classname = cl[d+1:len(cl)] m = __import__(cl[0:d], globals(), locals(), [classname]) return getattr(m, classname)
Problem is, you don't know what "classname" is, right? Only the abstract class name. Which might work? No idea.