Re: import json data into my django app

2010-01-17 Thread Bayuadji
if I were you, I also will create a django command to call the utility, it much easier that way. -djibon- On Mon, Jan 18, 2010 at 7:20 AM, nek4life wrote: > On Jan 17, 4:58 pm, lance wrote: >> Python/Django newbie question: >> >> I need to create a cron job that fetches json data from a URL, pa

Re: import json data into my django app

2010-01-17 Thread nek4life
On Jan 17, 4:58 pm, lance wrote: > Python/Django newbie question: > > I need to create a cron job that fetches json data from a URL, parses > it (presumably using simplejson) and then load the data into my > database using the Django models I've defined. > > I'm having trouble finding any tips, ex