+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),  

 

]

Related questions

0 votes
asked May 17, 2020 in Python by sharadyadav1986
0 votes
asked Jun 12, 2020 in Python by Robindeniel
...