I have a folder (python package):
app/
__init__.py
bases.py
store.py
in store.py
I have a the the code
from .bases import BaseStore
class Store(BaseStore):
# .. class
Everything works when I run the full project.
How can I run the store.py
file itself?
Running the file with Idle gives an import error.
How can I run a script in idle which will be aware to its package?