Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #45500
| Newsgroups | comp.lang.python |
|---|---|
| Date | 2013-05-18 03:12 -0700 |
| Message-ID | <bb111639-6a94-4151-a153-9bbebe75a4ea@googlegroups.com> (permalink) |
| Subject | python script is not running |
| From | Avnesh Shakya <avnesh.nitk@gmail.com> |
hi,
i want to run python script which generating data into json fromat, I am using crontab, but it's not executing...
my python code--
try.py --
import json
import simplejson as json
import sys
def tryJson():
saved = sys.stdout
correctFile = file('data.json', 'a+')
sys.stdout = correctFile
result = []
i = 1
for i in range(5):
info = {
'a': i+1,
'b': i+2,
'c': i+3,
}
result.append(info)
if result:
print json.dumps(result, indent=6)
sys.stdout = saved
correctFile.close()
tryJson()
now i m doing ion terminal-
avin@hp:~$ crontab -e
then type -
*/2 * * * * python /home/avin/data/try.py
and save
but it's not executing.
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
python script is not running Avnesh Shakya <avnesh.nitk@gmail.com> - 2013-05-18 03:12 -0700
Re: python script is not running Chris Angelico <rosuav@gmail.com> - 2013-05-18 23:28 +1000
Re: python script is not running Roy Smith <roy@panix.com> - 2013-05-18 09:44 -0400
Re: python script is not running Terry Jan Reedy <tjreedy@udel.edu> - 2013-05-18 12:35 -0400
Re: python script is not running woooee <woooee@gmail.com> - 2013-05-18 10:35 -0700
Re: python script is not running Chris Angelico <rosuav@gmail.com> - 2013-05-19 03:59 +1000
Re: python script is not running Vincent Vande Vyvre <vincent.vandevyvre@swing.be> - 2013-05-18 20:43 +0200
Re: python script is not running Chris Angelico <rosuav@gmail.com> - 2013-05-19 09:33 +1000
csiph-web