Python - Modules and Code Organization
Given this package structure:
Running
service/ __init__.py api.py helpers.pyIn
api.py, the code is:from helpers import process process()
Running
api.py directly causes ModuleNotFoundError. How to fix?