Visual Studio Intellisense recognizes custom Python modules after they are correctly placed in the "site-packages" folder in the "Lib" folder in the Python directory.
For example: / Python27 / Lib / site-packages / myPython
Inside the "myPython" folder, put a simple text file named "__init__.py". Otherwise, Intellisense will not recognize your package.
You may also have to click "Update Database" on the "Python Environments" tab.

source share