Update webdriver utility functions and add a sample celery task for scraping Google search

This commit is contained in:
Keannu Christian Bernasol 2024-09-24 16:08:28 +08:00
parent 0e902b1f04
commit 9e2e32fba8
11 changed files with 193 additions and 25 deletions

View file

@ -111,7 +111,8 @@ INSTALLED_APPS = [
'payments',
'billing',
'emails',
'notifications'
'notifications',
'search_results'
]
if DEBUG:
@ -393,5 +394,5 @@ CELERY_BEAT_SCHEDULER = 'django_celery_beat.schedulers:DatabaseScheduler'
DATA_UPLOAD_MAX_NUMBER_FIELDS = 20480
GRAPH_MODELS = {
'app_labels': ['accounts', 'user_groups', 'billing', 'emails', 'payments', 'subscriptions']
'app_labels': ['accounts', 'user_groups', 'billing', 'emails', 'payments', 'subscriptions', 'search_results']
}