Socket
Socket
Sign inDemoInstall

anpu

Package Overview
Dependencies
1
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    anpu

A small library to search Spotify music.


Maintainers
1

Readme

Anpu (暗譜) - memorize or play a song from memory.

A small library to search Spotify music.

python -m pip install anpu

Features

  • Cleans up Spotify Links into API calls (tracks, albums and playlists only).
  • Query search.

Both of these are handled by a single function.

Requirements

  • requests

Config

Anpu requires the use of a config file to store the Access Token. The config file can also be used to store your App's credentials.
It is automatically created in these directories respectively:

  • GNU/Linux: HOME/.config/anpu/config.json
  • macOS: HOME/Library/Preferences/anpu/config.json
  • Windows: %APPDATA%/anpu/config.json

Example

import anpu

client = anpu.client()
# alternatively
client = anpu.client(
    id = "app_id",
    secret = "app_secret"
)

# search query
print(client.send_request(
    {
        "q": "very intresting query",
        "type": "track",
        "limit": 5
    }
))

# get by link
print(client.send_request(
    "https://open.spotify.com/track/veryrealtrackid"
))

Keywords

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