My main project is to collect and show the results from news site of a 
particular topic. I have use the guardian's api and I have been given 4 
keywords. If I click on any one of the keyword, I need to display all the 
recent articles related to it. Now what I have understood is:

import json,urllib.request
data = json.load(urllib.request.urlopen('
https://content.guardianapis.com/search?q=gst&api-key=test'))
lurl=[]      #list to store the url of articles
ldate=[]   #list to store the date of publish of url
for i in range(0,10):
      lurl.append(data['response']['results'][i]['webUrl'])
      ldate.append(data['response']['results'][i]['webPublicationDate'])
for i in range(0,10):
      print(ldate[i]+" : ",end="")
      print(lurl[i])

Now I have to store all such values in my database and call it in views 
page.

class tesla(models.Model):
    id1=models.CharField(max_length=10000)
    webTitle=models.CharField(max_length=10000)
    webUrl=models.CharField(max_length=10000)
    apiUrl=models.CharField(max_length=10000)
    webPublicationDat=models.CharField(max_length=10000)

How can I do it? Please help.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/84a010c6-2d11-49d9-956a-0a547870d6df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to