YTapp / __init__.py
nexusbert's picture
Initial Ytapp app
825e544
raw
history blame contribute delete
328 Bytes
from .ytmusic_client import (
YouTubeMusicError,
search_songs,
get_song_info,
search_artists,
get_artist_songs,
recommend_song_for_emotion,
)
__all__ = [
"YouTubeMusicError",
"search_songs",
"get_song_info",
"search_artists",
"get_artist_songs",
"recommend_song_for_emotion",
]