Friday, 16 November 2018

Privileged access to spotify web api or database export?

I'm working on my bachelor thesis which is a spotify app that uses my webservice for music recommendation based on tags (lastfm). To build a webservice that responds in realtime i need to precompute the similarities between tracks/artists/albums and store them locally. Unfortunately the spotify web api allows only 10 requests per second which really slows down the whole data aquisition process.




Therefore I'm asking if there is a way to get a privileged access to the web api or to get some kind of database export in the form of a *.csv file that contains spotify-ids and titles/names?

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...