mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
14 lines
345 B
Python
14 lines
345 B
Python
class Downloader():
|
|
"""Download music source from Youtube with a music name"""
|
|
|
|
def __init__(self) -> None:
|
|
pass
|
|
|
|
def download(self, track_name: str) -> str:
|
|
if type(track_name) != str:
|
|
return
|
|
|
|
def download_many(self, track_list: list) -> list:
|
|
if type(track_list) != list:
|
|
return
|