8 lines
216 B
Python
8 lines
216 B
Python
# youtube/utils.py
|
|
|
|
YOUTUBE_SCOPES = [
|
|
'https://www.googleapis.com/auth/youtube.readonly',
|
|
'https://www.googleapis.com/auth/youtube.force-ssl'
|
|
]
|
|
YOUTUBE_API_SERVICE_NAME = 'youtube'
|
|
YOUTUBE_API_VERSION = 'v3' |