13 lines
240 B
Python
13 lines
240 B
Python
import ytmusicapi
|
|
|
|
from .downloader import Downloader
|
|
from .song import Songs
|
|
|
|
|
|
class YouTube(object):
|
|
def __init__(self):
|
|
self.ytm = ytmusicapi.YTMusic()
|
|
|
|
self.download = Downloader
|
|
self.songs = Songs(self.ytm)
|