A light weight Python library for the Spotify Web API
Find a file
Fabian Wunsch 351d4223d0
Reduce artist_album limit (#1232)
Reduces the limit so that a query called without explicit limit is valid
with the new changes to the spotify API.
2026-03-11 22:07:45 +01:00
.github Update skipLabel to skipLabels in workflow 2025-12-23 18:43:11 +01:00
docs Update sphinx-rtd-theme requirement from ~=3.0.2 to ~=3.1.0 (#1226) 2026-02-16 20:28:54 +01:00
examples@c610a79705 Add back submodule 2025-01-22 23:51:45 +00:00
spotipy Reduce artist_album limit (#1232) 2026-03-11 22:07:45 +01:00
tests Changed cache_handler.py to utilize Python's Context Management Protocol (#991) 2025-01-22 23:36:37 +00:00
.gitignore Update recommendations doc, fixes #290 2020-02-22 13:08:26 +00:00
.gitmodules Move examples to spotipy-dev/spotipy-examples, add as submodule 2025-01-19 17:21:18 +00:00
.readthedocs.yaml RTD theme fix (#1122) 2024-05-28 09:08:23 +01:00
CHANGELOG.md Fix: Web API Changes of February 2026 (#1228) 2026-03-03 17:30:58 +01:00
CODE_OF_CONDUCT.md Add CODE_OF_CONDUCT.md (#897) 2022-12-10 14:22:45 +00:00
CONTRIBUTING.md Fix lint workflow 2025-11-27 07:33:35 +00:00
FAQ.md Move examples to spotipy-dev/spotipy-examples, add as submodule 2025-01-19 17:21:18 +00:00
LICENSE.md Bump to 2.19.0 2021-08-12 11:27:26 +01:00
MANIFEST.in Release with CHANGELOG + LICENSE, solves #454 2020-03-18 20:34:22 +00:00
README.md Fix README "examples" link. (#1195) (#1196) 2025-04-26 13:11:03 +02:00
setup.py Fix: Web API Changes of February 2026 (#1228) 2026-03-03 17:30:58 +01:00
tox.ini Fix lint workflow 2025-11-27 07:33:35 +00:00
TUTORIAL.md Fixed Spotify's deprecation of http and localhost (#1187) 2025-02-19 06:31:42 +00:00

Spotipy

Spotipy is a lightweight Python library for the Spotify Web API. With Spotipy you get full access to all of the music data provided by the Spotify platform.

Integration tests Documentation Status Discord server

Table of Contents

Features

Spotipy supports all of the features of the Spotify Web API including access to all end points, and support for user authorization. For details on the capabilities you are encouraged to review the Spotify Web API documentation.

Installation

pip install spotipy

alternatively, for Windows users

py -m pip install spotipy

or upgrade

pip install spotipy --upgrade

Quick Start

A full set of examples can be found in the online documentation and in the Spotipy examples directory.

To get started, install spotipy, create a new account or log in on https://developers.spotify.com/. Go to the dashboard, create an app and add your new ID and SECRET (ID and SECRET can be found on an app setting) to your environment:

Example without user authentication

import spotipy
from spotipy.oauth2 import SpotifyClientCredentials

sp = spotipy.Spotify(auth_manager=SpotifyClientCredentials(client_id="YOUR_APP_CLIENT_ID",
                                                           client_secret="YOUR_APP_CLIENT_SECRET"))

results = sp.search(q='weezer', limit=20)
for idx, track in enumerate(results['tracks']['items']):
    print(idx, track['name'])

Expected result:

0 Island In The Sun
1 Say It Ain't So
2 Buddy Holly
.
.
.
18 Troublemaker
19 Feels Like Summer

Example with user authentication

A redirect URI must be added to your application at My Dashboard to access user authenticated features.

import spotipy
from spotipy.oauth2 import SpotifyOAuth

sp = spotipy.Spotify(auth_manager=SpotifyOAuth(client_id="YOUR_APP_CLIENT_ID",
                                               client_secret="YOUR_APP_CLIENT_SECRET",
                                               redirect_uri="YOUR_APP_REDIRECT_URI",
                                               scope="user-library-read"))

results = sp.current_user_saved_tracks()
for idx, item in enumerate(results['items']):
    track = item['track']
    print(idx, track['artists'][0]['name'], "  ", track['name'])

Expected result will be the list of music that you liked. For example if you liked Red and Sunflower, the result will be:

0 Post Malone    Sunflower - Spider-Man: Into the Spider-Verse
1 Taylor Swift    Red

Reporting Issues

For common questions please check our FAQ.

You can ask questions about Spotipy on Stack Overflow. Dont forget to add the Spotipy tag, and any other relevant tags as well, before posting.

If you have suggestions, bugs or other issues specific to this library, file them here. Or just send a pull request.

Contributing

If you are a developer with Python experience, and you would like to contribute to Spotipy, please be sure to follow the guidelines listed on documentation page

Visit the guideline