My python script is not running under my crontab.
I have placed this in the python script at the top:
#!/usr/bin/python
I hav
What happens when you type
/home/me/project/myscript.py
into the shell?
Can you explicitly use /usr/bin/python
in your crontbb command?
Can you either use an absolute path to your test.db
or cd
to the correct directory then execute your python script?
This is helpful to have debug statements in your python and log some data. Crontab can be very tricky to debug.