Django
Django
urlpatterns =[
path('',views.index,name='index')
]
def index(requests):
return HttpsResponse('We are at index function we created')
''')
-Here abve cannot be done again and again so inorder to skip it go to app
folder and create two directories named "static" "template".
Also create a "utility" directory in static and template as we might
have some conflicting files of different apps.
static-->"utilities"
templates-->"utilities"-->"index.html"