{"library":"spotixplore","title":"Spotixplore","type":"library","description":"A Python library to explore Spotify tracks features and recommendations from a given playlist. Version 0.2.0, pre-release, unmaintained since 2023.","language":"python","status":"deprecated","last_verified":"Sat May 09","install":{"commands":["pip install spotixplore==0.2.0"],"cli":null},"imports":["from spotixplore import Spotixplore"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/AdriaPadilla/spotixplore","docs":null,"changelog":null,"pypi":"https://pypi.org/project/spotixplore/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"import spotipy\nfrom spotixplore import Spotixplore\nfrom spotipy.oauth2 import SpotifyClientCredentials\n\nclient_id = os.environ.get('SPOTIPY_CLIENT_ID', '')\nclient_secret = os.environ.get('SPOTIPY_CLIENT_SECRET', '')\nauth_manager = SpotifyClientCredentials(client_id=client_id, client_secret=client_secret)\nsp = spotipy.Spotify(auth_manager=auth_manager)\n\npl = Spotixplore(sp)\n# Replace with a valid playlist ID\ndf = pl.get_playlist_features('37i9dQZF1DXcBWIGoYBM5M')\nprint(df.head())","lang":"python","description":"Initialize with authenticated Spotify client and fetch features for a playlist.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}