
Product
Introducing Socket MCP for Claude Desktop
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Spotify Web API implementation that is fully asynchronous and object-oriented.
.. image:: https://img.shields.io/pypi/v/asyncspotify.svg :target: https://python.pypi.org/project/asyncspotify/ :alt: PyPI version info
.. image:: https://readthedocs.org/projects/asyncspotify/badge/?version=latest :target: https://asyncspotify.readthedocs.io/en/latest/ :alt: RTD Documentation
asyncspotify is an asynchronous, object-oriented python wrapper for the Spotify Web API.
Simply install the library from PyPI:
.. code:: sh
python -m pip install asyncspotify
The documentation can be found at readthedocs <https://asyncspotify.readthedocs.io/>
_.
To get going quickly, read the quickstart <https://asyncspotify.readthedocs.io/en/latest/quickstart.html>
_.
For complete examples, please check the documentation. Here's some snippets:
Authenticating using the Client Credentials flow, and getting a playlist:
.. code:: py
from asyncspotify import Client, ClientCredentialsFlow
auth = ClientCredentialsFlow( client_id='your client id', client_secret='your client secret', )
async with Client(auth) as sp: playlist = await sp.get_playlist('1MG01HhbCvVhH9NmXhd9GC') async for track in playlist: print(track.name)
Searching for and getting tracks:
.. code:: py
results = await sp.search_tracks(q='involvers', limit=2)
track = await sp.get_track('0hqAWKZDhuOfFb6aK002Ph')
Fetching and creating playlists:
.. code:: py
playlist = await sp.get_playlist('1wPvaRtuI8mt10CpP2KnlO')
for track in playlist.tracks: print(track)
me = await sp.get_me()
my_playlist = await me.create_playlist(name='My playlist!')
await my_playlist.add_tracks(*playlist.tracks)
Please report issues here at GitHub <https://github.com/Run1e/asyncspotify/issues>
_.
FAQs
Spotify Web API implementation that is fully asynchronous and object-oriented.
We found that asyncspotify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.