Anyone knows how to import an entire script from another folder without using os ? specifically I want to import the script utils_database.py
in basic_etl.py
I tried to use from utils import utils_database
in basic_etl.py but it does not work.
Thanks!