mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 01:15:55 +03:00
[GH-ISSUE #725] Provide full album (including metadata such as label) via CLI #1363
Labels
No labels
bug
documentation
enhancement
good first issue
help wanted
pull-request
question
third-party
third-party
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-player#1363
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sandersantema on GitHub (May 15, 2025).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/725
Is your feature already implemented in the latest
master?No.
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Spotify search is unfortunately as fuzzy as it can get. Therefore a search using a query such as
label:Music-Manyields a whole bunch of unrelated results. It for instance matches everything withlabel:Music-Manager, yeah, not so good.Luckily if you wrap the api with a script, you can filter search results based on an albums label. This is done by obtaining the so called full album, via get request to the
albumsendpoint, i.e.https://api.spotify.com/v1/albums/<album-id>.I'd like to simplify my script using spotify-player, but it seems there is currently no way to obtain a full album, or at least label metadata, using it.
Describe the solution you'd like
Neither
spotify_player get item album --id <id>norspotify_player search 'label:<label>'contain this field. I wouldn't expect thesearchsubcommand to, but it would be nice if thegetsubcommand did get the full album info, or for instance optionally provide it given some flag, like--full.Describe alternatives you've considered
Scripting it myself.