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
If you already have Python on your system you can install the library simply by downloading the distribution, unpack it and install in the usual fashion:
python setup.py install
You can also install it using a popular package manager with
pip install spotipy
or
easy_install spotipy
Dependencies
- Requests - spotipy requires the requests package to be installed
Quick Start
A full set of examples can be found in the online documentation and in the Spotipy examples directory. Here are two basic examples.
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='your-spotify-client-id'
export SPOTIPY_CLIENT_SECRET='your-spotify-client-secret'
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 i, t in enumerate(results['tracks']['items']):
print(' ', i, t['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 Distribution
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.6.2.tar.gz.
File metadata
- Download URL: spotipy-2.6.2.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.38.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a00b62b92653841ba455387d9df1be354560abf97b30f6ca323592a44edd843
|
|
| MD5 |
b5ee98c411385fe3f1501862ce7da771
|
|
| BLAKE2b-256 |
e242e2c707ba8495509e42e92ad2e2a396bc76dbe2bd68e0dd2feed7fde98695
|
File details
Details for the file spotipy-2.6.2-py3-none-any.whl.
File metadata
- Download URL: spotipy-2.6.2-py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/41.6.0 requests-toolbelt/0.8.0 tqdm/4.38.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ffb26f8807dbaf048f9f686302055886086e47921a7bad7ac126bf2bc0c979d
|
|
| MD5 |
74a52acca7099e466f08f7036ce04bf8
|
|
| BLAKE2b-256 |
e5040348c60679c055520f65a8a46f53aca36dbb143125c503e85d57fa25c5e4
|