Socket
Socket
Sign inDemoInstall

spotipy-anon

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    spotipy-anon

An extension to Spotipy for anonymous access to the Spotify Web API


Maintainers
1

Readme

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.

FAQs


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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc