A light weight Python library for the Spotify Web API
Project description
Spotipy
A light weight Python library for the Spotify Web API
Documentation
Spotipy's full documentation is online at Spotipy Documentation.
Installation
pip install spotipy
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 and create an app on https://developers.spotify.com/. Add your new ID and SECRET to your environment:
export SPOTIPY_CLIENT_ID=client_id_here
export SPOTIPY_CLIENT_SECRET=client_secret_here
// on Windows, use `SET` instead of `export`
Then, create a Spotify object and call methods:
import spotipy
from spotipy.oauth2 import SpotifyClientCredentials
sp = spotipy.Spotify(client_credentials_manager=SpotifyClientCredentials())
results = sp.search(q='weezer', limit=20)
for idx, track in enumerate(results['tracks']['items']):
print(idx, track['name'])
Reporting Issues
If you have suggestions, bugs or other issues specific to this library, file them here. Or just send me a pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file spotipy-2.11.2.tar.gz.
File metadata
- Download URL: spotipy-2.11.2.tar.gz
- Upload date:
- Size: 20.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.38.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d5ca9f600bbceb6c86d66e819e2a1446db819cfca349a2f55c3fdda11b606af
|
|
| MD5 |
69677e10f369a41a1450775131da1c6c
|
|
| BLAKE2b-256 |
b2ae81b2d541e56551178cefc5faf0e6f917f1f63b739d798636b17fbddb07d4
|
File details
Details for the file spotipy-2.11.2-py3-none-any.whl.
File metadata
- Download URL: spotipy-2.11.2-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.38.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
293a070de156345359620e17945a379762488b0e00f01a25530ab7af1abea4ab
|
|
| MD5 |
13ec66bf83cf60349838864bf47d6a4d
|
|
| BLAKE2b-256 |
308a321fe8abc54d5e3ee423985d1aed4e9da4de0de9cf5ed23d4b8bdffbe2c3
|
File details
Details for the file spotipy-2.11.2-py2-none-any.whl.
File metadata
- Download URL: spotipy-2.11.2-py2-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.38.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a90dbadeb899763a6789dabbf9a57ec8874f1e72c38161669661c0714654acaf
|
|
| MD5 |
d33178053696180c0fa6fffd26a3ccf8
|
|
| BLAKE2b-256 |
e71e32ae853fc58c3b8e7c5421c4e486fe7e71c21b30054b6c900754eb883e4a
|