Skip to main content

🎧 dj-soundcloud-digger

Python Version License Built with Textual Version

The ultimate crate-digging companion for DJs and electronic music collectors. Instantly extract purchase links, free downloads, and download gates from SoundCloud playlists, user likes, or artist profiles—then preview tracks and manage your library in a high-performance terminal interface.

dj-digger https://soundcloud.com/someone/sets/that-playlist

⚡ Highlights & Features

  • 🚀 Ultra-Fast API v2 Digging: Digs a 300-track playlist in ~3 seconds using batch hydration API calls—no browser scrolling or DOM scraping required.
  • 🏷️ Smart Store & Gate Classification: Group links automatically into Bandcamp, Beatport, Traxsource, JunoDownload, Record Shops, Download Gates (Hypeddit, Toneden, etc.), Smart links, and Direct SoundCloud Downloads.
  • 🎶 In-Memory Audio Preview: Zero-latency streaming and seeking powered by miniaudio. Pre-fetches upcoming tracks and renders dynamic 16-level block waveforms with reactive audio level meters.
  • 📦 Multi-Crate Local Library: Save dig sessions as local crates in ~/.local/share/dj-digger/crates/. Switch, refresh, or search across crates seamlessly.
  • 🧠 Cross-Crate Track Memory: Track decisions (got it / skipped) are stored globally by SoundCloud track ID. Buying a track once marks it across all future playlists.
  • 🔓 Download Gate Automation: Resolves follow-to-download gates (Hypeddit, ToneDen, GateRush, Droploud) by replaying their step-completion calls. No browser automation, no Playwright.
  • 🔗 Link-Hub Expansion: A purchase link that turns out to be a list of shops rather than a download—an ampsuite release page, a gate running in smart-link mode—is opened, and the Bandcamp and Beatport links behind it are added to the track directly instead of a gate badge.
  • 🆕 New Since Last Refresh: Refreshing a crate marks whatever the playlist gained with NEW and sorts it to the top.
  • 📄 Saved-HTML Fallback: Fully supports saved HTML pages (Ctrl+S) for private or unlisted SoundCloud playlists.
  • ⚙️ CLI & Non-Interactive Mode: Export crates directly to JSON or CSV for automated pipelines and scripts.

📦 Installation

Recommended (via uv or pipx)

# Install with audio preview support (requires miniaudio)
uv tool install 'dj-soundcloud-digger[play]'

or with pipx:

pipx install 'dj-soundcloud-digger[play]'

From Source (Development)

git clone https://github.com/fbialogrecki/dj-soundcloud-digger.git
cd dj-soundcloud-digger
uv venv
uv pip install -e '.[play,dev]'

Requires Python 3.12 or newer.

Note on optional extras:

  • play: Enables in-memory audio preview via miniaudio. If installed without [play], the tool runs normally and displays an advisory if audio playback is requested.

🔗 Supported Input Links

Input Type Supported URL Pattern What You Get
Playlist / Set soundcloud.com/user/sets/playlist-name Every track in the playlist
User Likes soundcloud.com/user/likes Every track liked by the user
Artist Profile soundcloud.com/user All tracks uploaded by the artist
Single Track soundcloud.com/user/track-name Single track metadata & purchase links
Saved HTML playlist.html Private / unlisted playlist saved locally
Interactive Prompt Run without arguments Prompts for a link or opens saved crates

🖥️ Interactive TUI Workflow

Launching dj-digger opens an interactive Textual browser divided into three key areas:

  1. Crate Sidebar (Ctrl+B): Switch between saved crates, add new links (d), or refresh existing crates (r).
  2. Track Table: Displays tracks with status badges (· untouched, opened, got, skipped), position, artist/title, available store badges, genre, and duration.
  3. Player & Waveform Bar: Shows playback state, position, volume, real-time VU level meter, and a 16-level waveform display.
▸ 0 all  1 soundcloud·18  2 bandcamp·12  3 gate·53      83/83 tracks · got 0 · skipped 4

Keybinding Reference

Press ? inside the TUI at any time to view the full grouped keybinding modal.

Track Navigation & Status Marks

Key Action
Up / Down / j / k Navigate track rows
o or Enter Open the best link (or active store filter) in your default web browser
w Download artist-provided SoundCloud MP3/WAV directly to ~/Downloads
g Mark track as Got () and move to next track
s Mark track as Skipped () and move to next track
u Clear track status mark (·)
x Remove track from current crate (Ctrl+Z to undo)
y Copy the path of the local file that matches this track (📁 in the row)

Audio Preview Controls

Key Action
Space Play / Pause highlighted track
[ / ] Seek backward / forward 10 seconds
n / p Advance to Next / Previous track
- / = Decrease / Increase playback volume (m to mute/unmute)
Mouse Click Click anywhere on the waveform display to seek immediately

Filtering, Stores & Library

Key Action
/ Live search/filter by artist, title, or genre
f / F Step forward / backward through store filters
19 Jump directly to store category filter
0 Reset store filter (show all tracks)
h Toggle hiding handled tracks (got / skipped)
a Open all visible store links in browser (asks confirmation for >20 links)
e Export visible rows to file
d Add a new crate from a SoundCloud URL
r Refresh current crate from SoundCloud (preserves local deletions)
Ctrl+B Toggle Crate Sidebar

🏷️ Store & Gate Categories

Links are parsed and categorized using strict domain-boundary matching:

Category Description / Included Domains
soundcloud Direct artist-provided download link enabled on SoundCloud
bandcamp Official Bandcamp release page
beatport Beatport purchase link
traxsource Traxsource store link
junodownload JunoDownload purchase page
apple Apple Music / iTunes Store link
shop Specialized record stores (Boomkat, Hard Wax, Clone, Decks, Deejay, Red Eye, Juno, Phonica, Rush Hour, Bleep, Gumroad)
gate Follow-to-download gates (Hypeddit, Gaterush, Droploud, Wump, Artist Union, Toneden, Pump Your Sound)
smartlink Landing pages (lnk.to, ffm.to, fanlink, smarturl, orcd.co, DistroKid, Linktree)
streaming Pure streaming platforms (Spotify, YouTube, Deezer, Tidal)
no-link No purchase or download link found
others Unrecognized external web link

🎧 In-Memory Streaming & Waveform Engine

  • Zero-Latency Playback: Decodes audio chunks directly off the network socket in memory via miniaudio.
  • Pre-Fetching & Gapless Transitions: While listening to a track, the next track's stream URL, waveform data, and initial MBs are buffered 20 seconds prior to track completion.
  • SoundCloud Waveform Rendering: Renders SoundCloud's 1800-sample waveform data into a 2-row block ASCII visualizer with logarithmic loudness scaling.
  • Reactive Audio VU Metering: Real-time RMS audio signal measurement rendered at 30 FPS.
  • Remote SSH / Headless Systems: Automatically degrades to 4 FPS under TEXTUAL_ANIMATIONS=none for smooth operation over SSH connections.

🤖 Non-Interactive CLI & Automation

Add --no-tui to run dj-digger in batch mode for terminal pipelines, cron jobs, or export scripts:

# Export playlist links to CSV
dj-digger https://soundcloud.com/user/sets/playlist --no-tui -f csv -o playlist.csv

# Limit extraction to first 20 tracks and export to JSON
dj-digger https://soundcloud.com/user/likes -n 20 -f json -o likes.json

# Re-open a previously exported JSON crate in the TUI browser
dj-digger open likes.json

# Open all Bandcamp links directly in browser from a saved crate
dj-digger open likes.json --category bandcamp

🏗️ Project Architecture

                       ┌─────────────────────────┐
                       │  SoundCloud URL / HTML  │
                       └────────────┬────────────┘
                                    │
                         ┌──────────▼──────────┐
                         │ SoundCloudClient v2 │
                         │ (Resolve & Hydrate) │
                         └──────────┬──────────┘
                                    │
                         ┌──────────▼──────────┐
                         │ Link Categorizer    │
                         │ (Store & Gate Engine│
                         └──────────┬──────────┘
                                    │
           ┌────────────────────────┼────────────────────────┐
           │                        │                        │
┌──────────▼──────────┐  ┌──────────▼──────────┐  ┌──────────▼──────────┐
│   Textual TUI App   │  │ Local Crate Library│  │ In-Memory Player   │
│ (Interactive Grid)  │  │ (~/.../crates/)    │  │ (Miniaudio & VU)   │
└─────────────────────┘  └────────────────────┘  └────────────────────┘

🧪 Testing & Quality Assurance

The codebase includes an extensive offline test suite covering unit tests, API serialization, player buffering, link parsing, and TUI reactive widgets.

# Run offline test suite (360+ tests, no network required)
uv run pytest

# Run live integration tests (verifies SoundCloud API v2 contract stability)
uv run pytest -m live

📄 License

Distributed under the Apache License 2.0. See LICENSE for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dj_soundcloud_digger-0.7.0.tar.gz (169.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dj_soundcloud_digger-0.7.0-py3-none-any.whl (105.6 kB view details)

Uploaded Python 3

File details

Details for the file dj_soundcloud_digger-0.7.0.tar.gz.

File metadata

  • Download URL: dj_soundcloud_digger-0.7.0.tar.gz
  • Upload date:
  • Size: 169.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dj_soundcloud_digger-0.7.0.tar.gz
Algorithm Hash digest
SHA256 2c9754e981e0f2ffce4aeabb9e87f89a5ef00322c589e703966dbbf7dec69d2f
MD5 938670e9cc85e13975a08ba232cc33c0
BLAKE2b-256 1186753cda66d64a653787cc45d007775dc8c6745d789cd5dc0ce786ee30c166

See more details on using hashes here.

Provenance

The following attestation bundles were made for dj_soundcloud_digger-0.7.0.tar.gz:

Publisher: publish.yml on fbialogrecki/dj-soundcloud-digger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dj_soundcloud_digger-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for dj_soundcloud_digger-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4592015c55236abbbd8beb5ff072a201a36fe02989b096af2b825ed898a2aa36
MD5 6f95f4126851d76338c997f215b0f442
BLAKE2b-256 bf93245f2e7ada78fce41378324e9c56701d8e922509957ee12408d695d8f0e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dj_soundcloud_digger-0.7.0-py3-none-any.whl:

Publisher: publish.yml on fbialogrecki/dj-soundcloud-digger

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.0.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.3

2 files

0.13.2

2 files

0.13.1

2 files

0.13.0

2 files

0.12.1

2 files

0.12.0

2 files

0.10.0

2 files

0.9.1

2 files

0.9.0

2 files

0.8.0

2 files

This release

0.7.0 This release

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.21

2 files

0.4.20

2 files

0.4.19

2 files

0.4.18

2 files

0.4.17

2 files

0.4.16

2 files

0.4.15

2 files

0.4.14

2 files

0.4.13

2 files

0.4.12

2 files

0.4.11

2 files

0.4.10

2 files

0.4.9

2 files

0.4.8

2 files

0.4.7

2 files

0.4.6

2 files

0.4.5

2 files

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page