folder structure
root/
fisrt/
x.py
y.py
# x.py
from . import y
This will get an error , ImportError: attempted relative import with no known parent package
I have seached a lot of relavtive module import
information.
There are other question in stackoverflow talk about import, but I still can not figure out.