Check the location of the generated modules.
Download the visual studio code extension for Python and restart the visual studio code.
Add the path for the auto completion from Visual Studio.
- Click File > Preferences > Settings.
- On
settings.json
page, add the generated modules path topython.autoComplete.extraPaths
- Example of settings.json
{
"python.autoComplete.extraPaths": [
"<path-to-generated-modules>"
]
}