Socket
Socket
Sign inDemoInstall

hausgemachtspotipy

Package Overview
Dependencies
3
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hausgemachtspotipy

Access artist, album, and tracks details via Spotify Web API endpoints


Maintainers
1

Readme

hausgemachtSpotiPy

hausgemachtspotipy is a Python package that access music artists, albums, and tracks, directly from the Spotify Data Catalogue via Spotify Web API endpoints.

Inspired by the SpotiPy <https://pypi.org/project/spotipy/>__ Python package, the hausgemachtspotipy package focuses on easily querying music artists, albums, and tracks from Spotify.

Installation

To install

.. code:: python

pip install hausgemachtspotipy

To upgrade

.. code:: python

pip install hausgemachtspotipy --upgrade

Quick Start

Import Libraries

::

import hausgemachtspotipy as haussp
import pandas as pd
import datetime
import math

Define credentials

::

client_id = "cd1845f23d914228b14f6bed139ee594"
client_secret = <insert secret key>

Details on obtaining Spotify API credentials, head to

Create Spotify API token

::

sp = haussp.SpotifyAPI(client_id, client_secret)

Find Artist's details

::

artists = sp.search(query="Justin Timberlake")
print(artists)

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