Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/machow/tidyspotify
A python port of spotifyr
https://github.com/machow/tidyspotify
Last synced: about 1 month ago
JSON representation
A python port of spotifyr
- Host: GitHub
- URL: https://github.com/machow/tidyspotify
- Owner: machow
- License: mit
- Created: 2018-06-29T16:17:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-19T05:26:18.000Z (about 4 years ago)
- Last Synced: 2024-11-16T18:09:43.030Z (about 2 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 1.81 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
tidyspotify
===========[![Build Status](https://travis-ci.org/machow/tidyspotify.svg?branch=master)](https://travis-ci.org/machow/tidyspotify)
This library is a port of https://github.com/charlie86/spotifyr to python.
It implements the spotify API as a tidy interface, that returns pandas DataFrames.Installing
----------```
pip install tidyspotify
```Examples
-------```
import os
os.environ['SPOTIPY_CLIENT_ID'] = <>
os.environ['SPOTIPY_CLIENT_SECRET'] = <>from tidyspotify import get_artist_audio_features
get_artist_audio_features('The Beatles')
```Note: you currently need to set the client id and secret as environment variables **before** importing tidyspotify.