Visual Studio Code – How to enable IDE IntelliSense with dynamic imported python classes?
I have thousands of models in my package, each of them contains one class. Users can choose model they want to use by: from myproject.type1.models.m1 import m1 Very inconvenient. The subfolder looks like: type1/ ├── __init__.py ├── constant.py ├── decorator.py…