Re: push yahoo finance json data into database

2015-06-09 Thread Oscar Buijten
Oh, here's a part of the model that I forgot to include. class MyichiHistoricalData(models.Model): id = models.IntegerField(db_column='ID', primary_key=True) # Field name made lowercase. symbol = models.CharField(max_length=10, blank=True, null=True) exchange =

Re: push yahoo finance json data into database

2015-06-09 Thread Oscar Buijten
Hi James, Thanks for such a detailed response. I looked at all your links (and already had come across some of them) I guess that my question wasn't specific enough :-( The table (and model) are existing. However, the keys that I retrieve in the output I shared do not correspond to (some of)

Re: push yahoo finance json data into database

2015-06-09 Thread Oscar Buijten
Hi James, Thanks for such a detailed response. I looked at all your links (and already had come across some of them) I guess that my question wasn't specific enough :-( The table (and model) are existing. However, the keys that I retrieve in the output I shared do not correspond to (some of)

Re: push yahoo finance json data into database

2015-06-08 Thread James Schneider
On Mon, Jun 8, 2015 at 1:09 PM, Oscar Buijten wrote: > > Hi there, > The python learning curve seems to be steeper than expected :-( > As yesterday, help converting my php app into python/django will be > appreciated. > > I have the following: > >

push yahoo finance json data into database

2015-06-08 Thread Oscar Buijten
Hi there, The python learning curve seems to be steeper than expected :-( As yesterday, help converting my php app into python/django will be appreciated. I have the following: snip --- from django.core.management.base import BaseCommand, CommandError