I have a directory that stores all the .py files.
bin/ main.py user.py # where class User resides dir.py # where class Dir resides
If user.py and dir.py are not including classes then
from .user import User from .dir import Dir
is not working. You should then import as
from . import user from . import dir