There is __init__.py , which loads ( from ploader import * ) python script ploader.py . Other classes are loaded in ploader.py . So, the question is actually how to expand the already declared classes in scripts (which ploader.py loads).
For example, the CommonThread class is declared in CommonThread , which will be necessary in all scripts in the future, since they must extend it. Is this even possible?
Tried by:
class MyThread(CommonThread) ... He says that there is no such class ( CommonThread ) and nothing to inherit.