Re: Get data from an external api into my database.

2018-03-20 Thread 'Tom Evans' via Django users
On Tue, Mar 20, 2018 at 10:23 AM, Mukesh Jha wrote: > I want to access a api from http://open-platform.theguardian.com/ or > https://newsapi.org/ and load it into my sqlite database. The data in these > site is in json format and I want them to get converted into my

Re: Get data from an external api into my database.

2018-03-20 Thread Jani Tiainen
Hi. Requests library will be your friend. ti 20. maaliskuuta 2018 klo 14.05 Mukesh Jha kirjoitti: > I want to access a api from http://open-platform.theguardian.com/ or > https://newsapi.org/ and load it into my sqlite database. The data in > these site is in json

Get data from an external api into my database.

2018-03-20 Thread Mukesh Jha
I want to access a api from http://open-platform.theguardian.com/ or https://newsapi.org/ and load it into my sqlite database. The data in these site is in json format and I want them to get converted into my database model format and store in it and later on use them as when queried. I am