I'm having some troubles trying to schedule the execution of one project.
The structure is:
main folder
|- lib
| |- file1.py
| |- file2.py
|
|- data
| |- file.csv
|
|- temp
| |- file.json
|
|-main.py
The contrab line is:
*/5 * * * * python3 /home/myName/main_folder/main.py
I've been trying this command line with simple python scripts without dependences and works fine. The problem is that in this case the main.py
import classes and functions inside lib
and I think it can deal with it.
On my main.py
I'm importing like this from lib import file1, file2
. Exists another way maybe using os
that the program knows the absolute path?