There is a script in the working directory which I can access with:
from . import core.py
I would also like to import * from core.py. How
To keep the exact same semantics as from . import core, you'll want to do:
from . import core
from .core import *