This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # Copyright (c) 2025 Ash <always-self-hosted@protonmail.com> | |
| # This file is released under MIT license | |
| """This script accepts a suno username and will download all public songs found.""" | |
| from argparse import ArgumentParser, Namespace | |
| from datetime import datetime | |
| from enum import Enum | |
| from json import loads |