Place a setting.py under root and fill in the blanks.
DATABASES = {
'default': {
'ENGINE': '',
'NAME': '',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}
INSTALLED_APPS = ["db"]
Use Django migration
3. Set your YouTube API Key
Set it as environment variable YOUTUBE_API_KEY or through init_youtube_client(key)
Run main.py