+1 vote
in Python by
How can we handle URLs in Django?

1 Answer

0 votes
by

from django.contrib import admin 

 

from django.urls import path  

 

  urlpatterns = [  

 

path('appmajix/', appmajix.site.urls),  

 

]

...