If my project is structured like this:
I have the following folder structure.
project
├── main
│ └── daily.py
└── utils
└── config.py
How can I import utils.config from main/daily.py when I run "python project\main\daily.py"?
If my project is structured like this:
I have the following folder structure.
project
├── main
│ └── daily.py
└── utils
└── config.py
How can I import utils.config from main/daily.py when I run "python project\main\daily.py"?