Socket
Socket
Sign inDemoInstall

easy-spotify

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    easy-spotify

Simple access the Spotify WEB API for general requests about artists, albums or songs


Maintainers
1

Readme

Spotify-Wrapper

Easy-Spotify is a python Wrapper for the Spotify Web API. It was conceived with ease of use in mind. It allows you to retrieve data from Spotify such as track or artist information, images, related artists, top tracks, and more.

Documentation

Install the package as usual.

pip install easy-spotify

To be able to access Spotify Web API you need to provide easy-spotify with your client_id and client_secret which you can obtain here.

from easy_spotify import Spotify

spotify = Spotify(MY_CLIENT_ID, MY_CLIENT_SECRET)
Get Artist or Track ID

Search for an artist or track in Spotify's catalogue and get back the top results.

my_artist_id = spotify.get_artist_id("Adele", only_id=False)

my_track_id = spotify.get_track_id("Starboy")
multiple_tracks_id = spotify.get_multiple_track_id(["Starboy"], ["Hello"], ["Cake By The Ocean"])
artist_info_name = spotify.get_artist_info_from_name("Adele")
artist_info_id = spotify.get_artist_info_from_id("ARTIST_ID")

my_albums_name = spotify.get_albums_from_name("Adele")
my_albums_id = spotify.get_albums_from_id("ARTIST_ID")

top_tracks_name = spotify.get_artist_top_tracks_from_name("Adele", just_id_and_name=False)
top_tracks_id = spotify.get_artist_top_tracks_from_id("ARTIST_ID", just_id_and_name=True)

related_artists = spotify.get_related_artists("ARTIST_ID")
track_features = spotify.get_track_audio_features("TRACK_ID")
multiple_track_features = spotify.get_multiple_tracks_audio_features(["TRACK_ID", "TRACK_ID", "TRACK_ID"])

track_info = spotify.get_track_info("TRACK_ID")
multiple_track_info = spotify.get_multiple_tracks_info(["TRACK_ID", "TRACK_ID", "TRACK_ID"])

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc