Maybe you should read the documentation first ? :))

2018-04-06 22:03 GMT+02:00 Mukesh Jha <talklikemuk...@gmail.com>:

> 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
> <https://groups.google.com/d/msgid/django-users/84a010c6-2d11-49d9-956a-0a547870d6df%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CAO_JuYN3PyMm8%3D1kPHT28WOrqJ4nSMhgY120kAQ6tjTaW%3Dj4BA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to