mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
15 lines
933 B
Python
15 lines
933 B
Python
from Config.Configs import Singleton
|
|
|
|
|
|
class TestsConstants(Singleton):
|
|
def __init__(self) -> None:
|
|
if not super().created:
|
|
self.EMPTY_STRING_ERROR_MSG = 'Downloader with Empty String should be empty list.'
|
|
self.SPOTIFY_TRACK_URL = 'https://open.spotify.com/track/7wpnz7hje4FbnjZuWQtJHP'
|
|
self.MUSIC_TITLE_STRING = 'Experience || AMV || Anime Mix'
|
|
self.YT_MUSIC_URL = 'https://www.youtube.com/watch?v=MvJoiv842mk'
|
|
self.YT_MIX_URL = 'https://www.youtube.com/watch?v=ePjtnSPFWK8&list=RDMMePjtnSPFWK8&start_radio=1'
|
|
self.YT_PERSONAL_PLAYLIST_URL = 'https://www.youtube.com/playlist?list=PLbbKJHHZR9ShYuKAr71cLJCFbYE-83vhS'
|
|
# Links from playlists in channels some times must be extracted with force by Downloader
|
|
self.YT_CHANNEL_PLAYLIST_URL = 'https://www.youtube.com/watch?v=MvJoiv842mk&list=PLAI1099Tvk0zWU8X4dwc4vv4MpePQ4DLl'
|