how to create urls in django

Solutions on MaxInterview for how to create urls in django by the best coders in the world

showing results for - "how to create urls in django"
Noemi
30 Apr 2017
1from django.urls import path 
2 from . import views
3 urlpatterns = [
4    path('', views.hola, name='Hola!!!' ),
5 ]
6