Visual Studio Code – Import from python file located in sub folder
I'm using vs code. I'm running file1.py, it imports a function from file2.py. The file structure is as follows: feeds ├── bulk_load │ ├── __init__.py (empty) │ └── file2.py ├── __init__.py (empty) └── file1.py in file1.py the following works: from…