Creating the Polls app
python manage.py startapp polls
polls/
    __init__.py
    admin.py
    apps.py
    migrations/
        __init__.py
    models.py
    tests.py
    views.py

Write our first view

from django.http import HttpResponse

def index(request):
    return HttpResponse("Hello, world. You're at the polls index.")
xxxxxxxxxxxxxxxxxxxxxx