Django is a high-level framework which is written in Python which allows us to create server-side web applications. In this article, we will see how to create a News application using Django.
We will be using News Api and fetch all the headline news from the api. Read more about the api here news api.
Do the Following steps in command prompt or terminal:

Open the newsproject folder using a text editor. The directory structure should look like this

Create a “templates” folder in your newsapp and it in settings.py
Settings .py

In views.py –
In views, we create a view named index which takes a request and renders an html as a response. Firstly we import newsapi from NewsApiClient.
from django.shortcuts import render
from newsapi import NewsApiClient
def index(request):
newsapi = NewsApiClient(api_key = 'YOURAPIKEY' )
top = newsapi.get_top_headlines(sources = 'techcrunch' )
l = top[ 'articles' ]
desc = []
news = []
img = []
for i in range ( len (l)):
f = l[i]
news.append(f[ 'title' ])
desc.append(f[ 'description' ])
img.append(f[ 'urlToImage' ])
mylist = zip (news, desc, img)
return render(request, 'index.html' , context = { "mylist" :mylist})
|
Create a index.html in templates folder.
html
<!DOCTYPE html>
< html lang = "en" dir = "ltr" >
< head >
< meta charset = "utf-8" >
< title ></ title >
</ head >
< body >
< div class = "jumbotron" style = "color:black" >
< h1 style = "color:white" >
Get The latest news on our website
</ h1 >
</ div >
< div class = "container" >
{% for new, des, i in mylist %}
< img src = "{{ i }}" alt = "" >
< h1 >news:</ h1 > {{ new }}
{{ value|linebreaks }}
< h4 >description:</ h4 >{{ des }}
{{ value|linebreaks }}
{% endfor %}
</ div >
</ body >
</ html >
|
Now map the views to urls.py
from django.contrib import admin
from django.urls import path
from newsapp import views
urlpatterns = [
path(' ', views.index, name =' index'),
path( 'admin/' , admin.site.urls),
]
|
Your output of the project should look like this –
Last Updated :
14 Dec, 2020
Like Article
Save Article
Vote for difficulty