An extension to Spotipy for anonymous access to the Spotify Web API
Project description
SpotipyAnon
Anonymous access to the Spotify API
Installation
pip install spotipy-anon
alternatively, for Windows users
py -m pip install spotipy-anon
or upgrade
pip install spotipy-anon --upgrade
Quick Start
To get started, install spotipy with spotipy-anon to create a script like this:
import spotipy
from spotipy_anon import SpotifyAnon
sp = spotipy.Spotify(auth_manager=SpotifyAnon())
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 a pull request.
Disclaimer
Yes, this README is heavily inspired by the spotipy library, as I want to create a similar experience when working with this extension module.
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
spotipy_anon-1.3.tar.gz
(3.7 kB
view details)
File details
Details for the file spotipy_anon-1.3.tar.gz
.
File metadata
- Download URL: spotipy_anon-1.3.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 093266a7d7142d6eb4c5c366b1695873f6774619c04a7f27df4168ada57d610b |
|
MD5 | 0e4f9bf335c29761022d904202076200 |
|
BLAKE2b-256 | 7c9b8b1aa8bdf7f2ae20728cafff4f44bf1d1141a0b065af3048ca3ca81443f1 |