Skip to content

Instantly share code, notes, and snippets.

View commandlinetips's full-sized avatar
🏠
Working from home

Commandlineq8 commandlinetips

🏠
Working from home
View GitHub Profile
@commandlinetips
commandlinetips / suno_download_by_username.py
Created October 25, 2025 14:43 — forked from Always-Self-Hosted/suno_download_by_username.py
I wrote this script because beginbot is publishing absolute fire on suno right now and looking around all the current scripts/cli tools only work if you give them song ids or at best a playlist id, But i just wanted an easy way to give a username and get all the songs downloaded
#!/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