Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Image of the errori am using anaconda(python 3.8.5) in vscode i am importing the y.py to the x.py by saying # note : both my x and y are on the same folder named blog

the statement i used for importing is

from .x import func_name

but i am having issues with the relative import saying that: ERROR:Exception has occurred: ImportError attempted relative import with no known parent package File "C:Users bw19harathwajanlogx.py", line 2, in from .models import data


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

In VSCode, when importing other files, VSCode searches for the imported file ("models.py") from the parent folder of the currently opened file ("views.py") by default, so we can use "from models import data":

enter image description here

The Python language service I use is Jedi.

"python.languageServer": "Jedi",

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...