Relative Imports
Let's talk about relative imports and how it works.
Why do we need relative imports?
PEP 328
describes how relative imports came about and what specific
syntax was chosen. The idea behind it was to use periods to determine
how to relatively import other packages / modules
. The reason was to
prevent the accidental shadowing of standard library modules. Let’s use
the example folder structure that PEP 328
suggests and see if we can get
it to work:
Press + to interact
my_package/__init__.pysubpackage1/__init__.pymodule_x.pymodule_y.pysubpackage2/__init__.pymodule_z.pymodule_a.py
Create the files and folders above somewhere on your hard drive.
...