Skip to main content

A complete wrapper for the Search API provided by Spotify written in Python.

Project description

SpotifySearch

A complete wrapper for the Search API provided by Spotify written in Python.

It has built-in classes that helps you access the data returned by Spotify, alongside with useful methods for exporting data.

Check the documentation for more information on classes and methods.

What you can do

  • Get Spotify catalog information about albums, artists or tracks that match a keyword string.
  • Easily access the information provided by Spotify using specific class attributes and methods, such as name, id, url and many more.
  • Access and export audio and image files, such as album covers for example.

Installation

SpotifySearch depends on requests. You can easily install it by using PIP

python -m pip install requests

Then, you can safely install SpotifySearch using the following command:

python -m pip install spotifysearch

Testing your installation

You can test your installation using python interactive shell

>>> import spotifysearch

Getting access to the API

To get access to Spotify Search API, you need to have a Spotify account to get an access token, which is required by the API itself.
You can register an account if you don't have one.

Then, you need to login into your account in Spotify for Developers. Once you have successfully logged in, go to your Dashboard, and create a new application.
You should see something like this: create application form

Once you've created your application, you'll receive a client ID and a client secret. These are your credentials, you should store them in a safe environment.

Be careful to not accidentally share your credentials. They are the keys to access the API and are linked to your account.

Making your first call

So now that you have your credentials, you can start making your calls to the API.

Open your editor and run the following code:

# First, we import our Client class from spotifysearch.client
from spotifysearch.client import Client


# Then, we create an instance of that class passing our credentials as arguments.
# Do not upload your code with your credentials. You should use Environment Variables instead.
myclient = Client("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET")


# Now we can call the method search() from our client and store the results in a variable called results as well
results = myclient.search("Never gonna give you up")


# Then we call the method get_tracks() from our results object, which returns a list of tracks
tracks = results.get_tracks()


# Now, let's access the first track in our list by using index 0
track = tracks[0]


# Finally, we can access some information contained in our track.
print(track.name, "-", track.artists[0].name)
print(track.url)

This should be your result:

Never Gonna Give You Up Rick - Rick Astley
https://open.spotify.com/track/4cOdK2wGLETKBW3PvgPWqT?si=12872781c22c49f9

That seems to be a lot of code, but it's actually not. Let's remove all comments and and see what our code looks like.

from spotifysearch.client import Client

myclient = Client("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET")
results = myclient.search("Never gonna give you up")
tracks = results.get_tracks()
track = tracks[0]
print(track.name, "-", track.artists[0].name)

In a few lines of code, we got access to the API, retrieved and displayed some useful information.

There are a lot of class attributes and methods that you can use to retrieve the information you need, you can check them out in the documentation.

License

This project is under the terms of the MIT license.

Project details


Download files

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

Source Distribution

spotifysearch-0.0.1.tar.gz (7.7 kB view hashes)

Uploaded Source

Built Distribution

spotifysearch-0.0.1-py3-none-any.whl (7.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page