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
Try to put in your crontab:
* * * * * python /path/to/your/script.py
rather than
* * * * * /path/to/your/script.py
Also the shebang line is #!/usr/bin/env python in some environments. env is an executable, and you have to know where it lives with "$ which env".
#!/usr/bin/env python
$ which env