29 lines
769 B
Python
29 lines
769 B
Python
# Social Utils - All Platform Utils
|
|
# This module contains utility constants and classes for all social platforms
|
|
|
|
from .linkedin import LinkedInConstants
|
|
from .google import SCOPES, API_VERSION_MYBUSINESS, API_VERSION_ACCOUNT_MGMT
|
|
from .meta import BASE_GRAPH_URL, META_SCOPES
|
|
from .tiktok import TikTokConstants
|
|
from .x import XConfig
|
|
from .youtube import YOUTUBE_SCOPES, YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION
|
|
|
|
__all__ = [
|
|
# LinkedIn
|
|
'LinkedInConstants',
|
|
# Google
|
|
'SCOPES',
|
|
'API_VERSION_MYBUSINESS',
|
|
'API_VERSION_ACCOUNT_MGMT',
|
|
# Meta
|
|
'BASE_GRAPH_URL',
|
|
'META_SCOPES',
|
|
# TikTok
|
|
'TikTokConstants',
|
|
# X
|
|
'XConfig',
|
|
# YouTube
|
|
'YOUTUBE_SCOPES',
|
|
'YOUTUBE_API_SERVICE_NAME',
|
|
'YOUTUBE_API_VERSION',
|
|
] |