{"library":"spotifytracker","title":"SpotifyTracker","type":"library","description":"Track your Spotify play history by fetching recently played tracks and storing them locally. Version 0.0.18 is in early development; releases are sporadic.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install spotifytracker"],"cli":{"name":"spotifytracker","version":"Usage:"}},"imports":["from spotifytracker import SpotifyTracker"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"http://github.com/eriktaubeneck/spotifytracker","docs":null,"changelog":null,"pypi":"https://pypi.org/project/spotifytracker/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"from spotifytracker import SpotifyTracker\nimport os\n\nclient_id = os.environ.get('SPOTIFY_CLIENT_ID', '')\nclient_secret = os.environ.get('SPOTIFY_CLIENT_SECRET', '')\n\nif not client_id or not client_secret:\n    raise ValueError(\"Set SPOTIFY_CLIENT_ID and SPOTIFY_CLIENT_SECRET environment variables\")\n\ntracker = SpotifyTracker(client_id, client_secret)\ntracker.run()","lang":"python","description":"Minimal example: authenticate and start tracking play history.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}