mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-28 22:16:06 -04:00
16 lines
405 B
Python
16 lines
405 B
Python
from .client import Client
|
|
from .deezer_client import DeezerClient
|
|
from .downloadable import BasicDownloadable, Downloadable
|
|
from .qobuz_client import QobuzClient
|
|
from .soundcloud_client import SoundcloudClient
|
|
from .tidal_client import TidalClient
|
|
|
|
__all__ = [
|
|
"Client",
|
|
"DeezerClient",
|
|
"TidalClient",
|
|
"QobuzClient",
|
|
"SoundcloudClient",
|
|
"Downloadable",
|
|
"BasicDownloadable",
|
|
]
|