10 lines
259 B
Python
10 lines
259 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Karaoke Playlist Downloader
|
|
A Python-based Windows command-line tool that wraps yt-dlp.exe to batch-download karaoke videos from YouTube playlists.
|
|
"""
|
|
|
|
from karaoke_downloader.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main() |