c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
Python

ImportError: cannot import name 'url' from 'django.conf.urls' - Django Error

| | django , python

I got this following error while running the django web project
"ImportError: cannot import name 'url' from 'django.conf.urls'"importError django

CODE:

from django.conf.urls import url

from django.contrib.auth import views as auth_views

from . import views

urlpatterns = [
url(r'^login/$', auth_views.LoginView.as_view(template_name='myaccount/login.html')), ]

SOLUTION:

Replace url() with re_path() from django.urls as needed in your URL patterns.

Instead of:
from django.conf.urls import url

Use:
from django.urls import re_path as url

VIDEO GUIDE: