StartApp Django
python3 manage.py startapp "projectAppName"
Samuel Jarvis
python3 manage.py startapp "projectAppName"
...\> py -m django --version
Everything you need to know about Django
https://docs.djangoproject.com/en/dev/
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the polls index.")