CLI toolkit for exploring and analyzing your Spotify listening data
Project description
streamd
A CLI toolkit for exploring and analyzing your Spotify listening data. Bring your own Spotify data export, and streamd enriches it with metadata from the Spotify API to surface insights about your listening habits.
Architecture overview — how the codebase is structured, rate limiting strategy, and how to add new subcommands.
Commands
albums
Ranks every album you've listened to since a cutoff date by how many unique songs you played from it. Cross-references your streaming history with Spotify's API to map tracks to albums, then aggregates the results.
Albums found: 142
Rank | Unique songs | Total plays | Album — Album artist
------------------------------------------------------------------------------------------
1 | 14 | 87 | In Rainbows — Radiohead
2 | 12 | 63 | Blonde — Frank Ocean
3 | 11 | 45 | Igor — Tyler, The Creator
More commands are planned — streamd is designed to be extended with new subcommands that build on top of your Spotify export and the API. See the architecture doc for how subcommands work.
Install
Requires Python 3.10+.
# Recommended — installs in an isolated environment
pipx install spotify-streamd
# Or with pip
pip install spotify-streamd
To install from source:
git clone https://github.com/prabhask5/spotify-streamd.git
cd spotify-streamd
pip install -e .
Setup
1. Configure credentials
streamd setup
This walks you through creating a Spotify developer app and saves your credentials to ~/.streamd/.env. You only need to do this once. The setup command gives you the exact steps — create an app at the Spotify developer dashboard, copy the Client ID and Secret, paste them in.
Your app will be in development mode, which has a rate limit based on a rolling 30-second window. This is fine for personal use — streamd's caching means you only hit the API once per unique track, ever.
2. Get your Spotify data export
Spotify requires you to request your data through their website:
- Go to spotify.com/account/privacy
- Scroll to Download your data
- Request your Extended streaming history (the basic "Account data" package works too, but has less history)
- Wait for the email (usually takes a few days)
- Download and unzip the archive — you'll get a folder with
StreamingHistory_music_*.jsonfiles
3. Run
streamd albums ~/path/to/spotify-export
Usage
# Basic — rank albums from plays since Jan 1, 2026
streamd albums ~/path/to/spotify-export
# Custom cutoff date
streamd albums ~/path/to/spotify-export --since 2025-06-01
# Adjust minimum play duration (default: 20s) and output file
streamd albums ~/path/to/spotify-export --min-ms 30000 --output results.txt
# Verbose mode — see API calls, cache hits, rate limiter activity
streamd -v albums ~/path/to/spotify-export
# Custom log file location
streamd --log-file ./debug.log albums ~/path/to/spotify-export
Options
| Flag | Description | Default |
|---|---|---|
-v, --verbose |
Print debug log lines to stderr | off |
--log-file PATH |
Log file location | ~/.streamd/run.log |
albums subcommand
| Argument | Description | Default |
|---|---|---|
folder |
Path to unzipped Spotify export folder | (required) |
--since DATE |
Only count plays after this date (YYYY-MM-DD) | 2026-01-01 |
--min-ms MS |
Ignore plays shorter than this (milliseconds) | 20000 |
--output FILE |
Output file path | albums_since_output.txt |
Rate limits and caching
Spotify's API rate limit is a rolling 30-second window. In development mode (the only option for personal apps), the limit is relatively low — you'll hit 429s if you blast too many requests at once.
streamd handles this automatically:
- Caching: Every track-to-album lookup is cached in
~/.streamd/cache/track_albums.json. Once a track is looked up, it never needs to be fetched again. After the cache is populated, runs are instant with zero API calls. - Partial saves: If you get rate-limited mid-run, all progress so far is saved. The next run picks up where it left off.
- Adaptive rate limiting: Starts conservative (2 req/s, 1 concurrent request) and ramps up. On any 429 response, it backs off automatically and respects the
Retry-Afterheader.
A first run with a large export (2,000–5,000 unique tracks) may take a couple of runs to fully populate the cache, depending on how aggressively Spotify throttles you. After that, it's free.
Advanced tuning
These optional environment variables can be set to tweak API behavior:
SPOTIFY_WORKERS=2 SPOTIFY_RPS=1 streamd albums ~/path/to/export
| Variable | Description | Default |
|---|---|---|
SPOTIFY_WORKERS |
Max concurrent API requests | 4 |
SPOTIFY_RPS |
Initial requests/sec (adapts automatically) | 2 |
SPOTIFY_MAX_RETRY_AFTER |
Abort if Retry-After exceeds this (seconds) | 3600 |
File locations
| Path | Purpose |
|---|---|
~/.streamd/.env |
Spotify API credentials (created by streamd setup) |
~/.streamd/cache/track_albums.json |
Track-to-album lookup cache |
~/.streamd/run.log |
Debug log (last run) |
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file spotify_streamd-1.0.0.tar.gz.
File metadata
- Download URL: spotify_streamd-1.0.0.tar.gz
- Upload date:
- Size: 14.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc282eab274af1cd1ce7388b321b724c63e9a0f94663557168e6b747ae9bc92f
|
|
| MD5 |
23df35a748a1af4e95b9cc743ef76868
|
|
| BLAKE2b-256 |
c1d09e201c54a01cffb7368e95edaf0a1b6a915a2243133a4ff5dc15ded91653
|
File details
Details for the file spotify_streamd-1.0.0-py3-none-any.whl.
File metadata
- Download URL: spotify_streamd-1.0.0-py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf5c3f1d423959bfa8ba04233c0a9f2be94e6386a94354edb50ae9b2c21ab404
|
|
| MD5 |
eebf4b7c50ef2b273d0fdb33bf30985c
|
|
| BLAKE2b-256 |
98a2886dea11b86106ea88e973e02c5a09b204abe588a49281ea162d47aa91b8
|