I'm relatively new to Python thus the question.
I'm working inside a python package a
(as in a folder with init.py in it), now in my local directory I have a package b
which has a set of classes(for example say user.py
).
How do I import user
into a file inside package a
.
I tried,
import a
This doesn't work.