[Fixed]-ModuleNotFound error in django in Django tastypie web application

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.

Leave a comment