variables are not appearing in vs code for python interpreter code example
Example 1: pipenv with vscode
pipenv --py
take the output of this and put it in the "select interperter"
pipenv install --dev pylint
for error validation
Example 2: visual studio code import library python
"python.linting.pylintArgs": [
"--init-hook",
"import sys; sys.path.append('/path/to/Functions')"
]
# OR
sys.path.append("/path/to/parent")
# option 1
from Functions import functions
functions.copy()
functions.delete()
# option2
from Functions.functions import copy, delete
copy()
delete()