Make a simple Hello World
Example using your django.
let's make sure that you have django installed on your PC first.
open a terminal and type: python -c "import django"
-->if no error comes that means django is already installed.
Now lets create a project in django. For that write below command on terminal:
django-admin startproject HelloWorld
Above command will create a directory named HelloWorld.
Directory structure will be like:
HelloWorld
|--helloworld
| |--init.py
| |--settings.py
| |--urls.py
| |--wsgi.py
|--manage.py
Writing Views (Reference from django documentation)
A view function, or view for short, is simply a Python function that takes a Web request and returns a Web response. This response can be the HTML contents of a Web page or anything.Documentation says we can write views function any where but its better to write in views.py placed in our project directory.
Here's a view that returns a hello world message.(views.py)
from django.http import HttpResponse
define helloWorld(request):
return HttpResponse("Hello World!! Django Welcomes You.")
let's understand the code, step by step.
First, we import the class HttpResponse from the django.http module.
Next, we define a function called helloWorld. This is the view function. Each view function takes an HttpRequest object as its first parameter, which is typically named request.
Note that the name of the view function doesn’t matter; it doesn’t have to be named in a certain way in order for Django to recognise it. we called it helloWorld here, so that, it will be clear what it does.
The view returns an HttpResponse object that contains the generated response. Each view function is responsible for returning an HttpResponse object.
For more info on django views click here
Mapping URLs to views
To display this view at a particular URL, you’ll need to create a URLconf;
Before that let's understand how django processes requests.
Here’s how our URLconf look alike:
from django.conf.urls import url
from . import views #import the views.py from current directory
urlpatterns = [
url(r'^helloworld/$', views.helloWorld),
]
For more info on django Urls click here
Now change directory to HelloWorld and write below command on terminal.
python manage.py runserver
by default the server will be run at 127.0.0.1:8000
Open your browser and type 127.0.0.1:8000/helloworld/. The page will show you "Hello World!! Django Welcomes You."