[GH-ISSUE #10] Support for albums? #63

Closed
opened 2026-03-13 22:57:32 +03:00 by kerem · 7 comments
Owner

Originally created by @Maple-Elter on GitHub (Aug 15, 2021).
Original GitHub issue: https://github.com/AliAkhtari78/SpotifyScraper/issues/10

Would support for albums be possible rather than just individual songs and playlists?

Originally created by @Maple-Elter on GitHub (Aug 15, 2021). Original GitHub issue: https://github.com/AliAkhtari78/SpotifyScraper/issues/10 Would support for albums be possible rather than just individual songs and playlists?
kerem 2026-03-13 22:57:32 +03:00
Author
Owner

@Maple-Elter commented on GitHub (Oct 10, 2021):

Its mostly the metadata retrieval that I'm worried about not the audio

<!-- gh-comment-id:939398953 --> @Maple-Elter commented on GitHub (Oct 10, 2021): Its mostly the metadata retrieval that I'm worried about not the audio
Author
Owner

@Maple-Elter commented on GitHub (Oct 10, 2021):

Python would be nice, but it doesn't have to be

<!-- gh-comment-id:939399450 --> @Maple-Elter commented on GitHub (Oct 10, 2021): Python would be nice, but it doesn't have to be
Author
Owner

@Maple-Elter commented on GitHub (Oct 10, 2021):

Ok cool, what language?

<!-- gh-comment-id:939402811 --> @Maple-Elter commented on GitHub (Oct 10, 2021): Ok cool, what language?
Author
Owner

@Maple-Elter commented on GitHub (Oct 10, 2021):

Ik nothing about go, I literally just installed it, I'm getting

package command-line-arguments is not a main package 
<!-- gh-comment-id:939541011 --> @Maple-Elter commented on GitHub (Oct 10, 2021): Ik nothing about go, I literally just installed it, I'm getting ``` package command-line-arguments is not a main package ```
Author
Owner

@github-actions[bot] commented on GitHub (May 24, 2025):

This issue has been automatically marked as stale because it has not had recent activity.
It will be closed in 14 days if no further activity occurs.
Thank you for your contributions.

<!-- gh-comment-id:2906077276 --> @github-actions[bot] commented on GitHub (May 24, 2025): This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
Author
Owner

@AliAkhtari78 commented on GitHub (May 25, 2025):

Great news! Album support has been fully implemented in version 2.0.0.

You can now extract album data using:

from spotify_scraper import SpotifyClient

client = SpotifyClient()
album = client.get_album_info('https://open.spotify.com/album/...')
print(album['name'])
print(album['artists'])
print(album['tracks'])  # List of all tracks in the album

Features include:

  • Complete track listings
  • Album metadata (release date, label, etc.)
  • Cover art download
  • All tracks data in one call

Please update to the latest version to use this feature. Let me know if you have any questions!

<!-- gh-comment-id:2907733373 --> @AliAkhtari78 commented on GitHub (May 25, 2025): Great news\! Album support has been fully implemented in version 2.0.0. You can now extract album data using: ```python from spotify_scraper import SpotifyClient client = SpotifyClient() album = client.get_album_info('https://open.spotify.com/album/...') print(album['name']) print(album['artists']) print(album['tracks']) # List of all tracks in the album ``` Features include: - Complete track listings - Album metadata (release date, label, etc.) - Cover art download - All tracks data in one call Please update to the latest version to use this feature. Let me know if you have any questions\!
Author
Owner

@AliAkhtari78 commented on GitHub (May 25, 2025):

Closing as this feature has been implemented in v2.0.0. Feel free to reopen if you encounter any issues with album support.

<!-- gh-comment-id:2907733566 --> @AliAkhtari78 commented on GitHub (May 25, 2025): Closing as this feature has been implemented in v2.0.0. Feel free to reopen if you encounter any issues with album support.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SpotifyScraper#63
No description provided.