I just installed Oscar
module for my website and all tables are stored in database, but now i am using this module on my urls.py file but it's giving me an error ModuleNotFoundError: No module named 'oscar.app'
Please help me to solve this issue...
Here is my urls.py file....
from django.conf.urls import include, url
from django.urls import path, re_path
from django.contrib import admin
from oscar.app import application
urlpatterns = [
url(r'^i18n/', include('django.conf.urls.i18n')),
url(r'^admin/', admin.site.urls),
(r'', include(application.urls)),
# path('', include("frobshop.urls")),
]