Reputation: 2238
I am trying to use Django dynamic scraper in my app and when I try to run the server I get this error message
RuntimeError: Model class dynamic_scraper.models.ScrapedObjClass doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
but I have this in my installed apps
dynamic_scraper
What seems to be the issue?
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# local
'blog',
# Third party
'crispy_forms',
'taggit',
'haystack',
'whoosh',
'pagedown',
'markdown_deux',
'dynamic_scraper'
)
Upvotes: 0
Views: 113