1👍
✅
Removing quotes from include will solve the problem
urlpatterns = [
url(r'^api/',include(article_resource.urls))
]
NOTE: Django include
functions uses python’s import_module
to import the module from string, but here, the article_resource
is only available in your local scope.
Source:stackexchange.com