Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spotify Tui | 14,576 | 4 days ago | 24 | August 24, 2021 | 266 | mit | Rust | |||
Spotify for the terminal written in Rust 🚀 | ||||||||||
Exportify | 2,357 | 23 days ago | 25 | mit | JavaScript | |||||
Export/Backup Spotify playlists using the Web API | ||||||||||
Spotify Web Api Js | 1,749 | 222 | 10 | a month ago | 30 | October 12, 2021 | 23 | mit | TypeScript | |
A client-side JS wrapper for the Spotify Web API | ||||||||||
Spotifyapi Net | 1,272 | 12 | 2 | 9 days ago | 34 | September 28, 2021 | 14 | mit | C# | |
:sound: A Client for the Spotify Web API, written in C#/.NET | ||||||||||
React Spotify | 1,234 | 2 months ago | 29 | mit | JavaScript | |||||
Spotify React / Redux 🎤🎺🎸🎷 | ||||||||||
Alfred Spotify Mini Player | 1,054 | 2 months ago | 1 | gpl-3.0 | PHP | |||||
🎵🎩 Alfred workflow to control your Spotify library at your fingertips | ||||||||||
Savify | 776 | a month ago | 26 | January 29, 2021 | 30 | mit | Python | |||
Download Spotify songs to mp3 with full metadata and cover art! | ||||||||||
Smd | 749 | 2 years ago | 69 | mit | Python | |||||
Spotify Music Downloader | ||||||||||
Freyr Js | 713 | a day ago | 3 | June 09, 2022 | 50 | apache-2.0 | JavaScript | |||
A tool for downloading songs from music streaming services like Spotify and Apple Music. | ||||||||||
Spotify Qt | 700 | 3 days ago | 28 | gpl-3.0 | C++ | |||||
Lightweight Spotify client using Qt |
pyspotify is a Python wrapper around the libspotify C library, and thus depends on libspotify for everything it does.
In May 2015, libspotify was deprecated by Spotify and active maintenance stopped. At this point, libspotify had been the main way to integrate with Spotify for six years, and was part of numerous open source projects and commercial applications, including many receivers and even cars. It remained the only API for playback outside Android and iOS.
In February 2016, server side changes to the Spotify API caused the search functionality to stop working, without Spotify ever acknowledging it. Users of pyspotify could work around this by using the Spotify web API for searches and pyspotify for playback.
In April 2022, Spotify announced that they would sunset the libspotify API one month later.
In May 2022, new libspotify connections to Spotify started failing. With libspotify dead, pyspotify was dead too.
After two years in development from May 2013 to May 2015, and seven years of loyal service this project has reached its end.
There will be no further updates to pyspotify.
Hopefully, the pyspotify source code can still serve as a complete example of how to successfully wrap a large C library in Python using CFFI.
pyspotify provides a Python interface to Spotify's online music streaming service.
With pyspotify you can access music metadata, search in Spotify's library of 20+ million tracks, manage your Spotify playlists, and play music from Spotify. All from your own Python applications.
pyspotify uses CFFI to make a pure Python wrapper around the official libspotify library. It works on CPython 2.7 and 3.5+, as well as PyPy 2.7 and 3.5+. It is known to work on Linux and macOS. Windows support should be possible, but is awaiting a contributor with the interest and knowledge to maintain it.