Skip to content

Instantly share code, notes, and snippets.

@joshmn
Created June 29, 2015 17:45
Show Gist options
  • Save joshmn/2cd5607c6aa730897d46 to your computer and use it in GitHub Desktop.
Save joshmn/2cd5607c6aa730897d46 to your computer and use it in GitHub Desktop.
Import Artists from List to Spotify
require 'rspotify'
RSpotify::authenticate("key", "secret")
artists_list = ["12th Planet", "3LAU", "4B", "A-lusion", "Aaron Jackson", "Above & Beyond", "AC Slater", "Adrenalize", "Adventure Club", "Afrojack", "Alesso", "Alex Kidd", "Alison Wonderland", "Aly & Fila", "Amine Edge & DANCE", "Andrew Rayel", "Andy C", "Armanni Reign", "Armin van Buuren", "Art Department", "Arterial", "Arty", "Astrix", "Astronomar", "ATB", "Audien", "Audiotricz", "Avicii", "AWE", "Baggi Begovic", "Barrels", "Bassnectar", "Baumer", "Benny Benassi", "Bingo Players", "Bixel Boys", "Black Sun Empire", "Blaise James", "Blasterjaxx", "Bones", "Brandon Elliot", "Breach", "Breathe Carolina", "Brennan Heart", "Brillz", "Burn Unit", "Calvin Harris", "Camo & Krooked", "Carl Cox", "Carnage", "Chevy Chase", "Chris Liebing", "Chris Lorenzo", "Chuckie", "Chus & Ceballos", "Cookie Monsta", "Coone", "Cosmic Gate", "Crisis Era", "Crizzly", "CSTNZA", "D-Block & S-te-Fan", "Da Tweekaz", "Dada Life", "Dannic", "Danny Avila", "Darksiderz", "Darren Styles", "Dash Berlin", "Datsik", "Definitive", "Deorro", "Dieselboy", "Dimitri From Paris", "Dimitri Vegas & Like Mike", "Disclosure (DJ Set)", "DJ Dan", "DJ EZ", "DJ Jazzy Jeff", "DJ Snake", "Dom Dolla", "Dosem", "Dr. Fresch", "Dubfire", "Duke Dumont (Live)", "Durante", "Dusky", "Dyro", "Dzeko & Torres", "Eats Everything", "Ed Rush & Optical", "EDX", "Eelke Kleijn", "Enei", "Eptic", "Eric Prydz", "Excision", "Fallen", "Fatboy Slim", "Ferry Corsten", "Fester", "Firebeatz", "Flosstradamus", "Flume", "Flux Pavilion", "Foreign Concept", "Freedom Fighters", "Friction", "FuntCase", "Gaia", "Galantis", "Get Real (Green Velvet & Claude VonStroke)", "Getter", "Gladiator", "Graff", "Graham Funke", "Grandtheft", "Habstrakt", "Hardwell", "Harry Romero", "Hook N Sling", "Hotel Garuda", "Human Life", "Ilan Bluestone", "Isaac", "Jack Beats", "Jackal", "Jason Bentley", "Javi Row", "Joaquin Bamaca", "John Digweed", "Jon Rundell", "Juliet Fox", "Justin Martin", "Kaskade", "Kasra", "Kastle", "Kayzo", "Kennedy Jones", "Keys N Krates", "Kicks N Licks", "Kidnap Kid", "Kiesza", "Kove", "Krewella", "Kry Wolf", "Lady Faith", "Laidback Luke", "Laxx", "Leiel", "Light Year", "LNY TNZ", "Loco Dice", "Lookas", "Loudpvck", "Louis B", "Low Steppa", "Mako", "Mark Knight", "Markus Schulz", "Martin Garrix", "Martin Solveig", "MC Dino", "Metrik", "MitiS", "Moby", "Motez", "MOTi", "Myon & Shane 54", "Neelix", "NGHTMRE", "Nicky Romero", "Noisia", "Oliver Heldens", "Ookay", "Orjan Nilsen", "Out of Hand", "Pan-Pot", "Party Favor", "Petey Clicks", "Popeska", "Posso", "Pretty Lights", "Prok & Fitch", "Protohype", "Psyko Punkz", "Pulsatorz", "Ran-D", "ROYL (Live)", "Saeed Younan", "Sander van Doorn", "Sasha", "Seven Lions", "Showtek", "Sigma", "Sinden", "SKisM", "Slander", "Snails", "Soul Clap", "Speaker of the House", "State of Mind", "Steve Angello", "Sunnery James & Ryan Marciano", "TC", "Technobabble", "Technoboy", "The Interns", "The Upbeats", "Thee Cool Cats", "Thee Mike B", "Thomas Gold", "Tiësto", "TNT", "Tokimonsta", "Tommy Trash", "Trent Cantrelle", "TrollPhace", "Troy Kurtz", "Tuneboy", "Umek", "Ummet Ozcan", "Vena Cava", "Victor Calderone", "Wilkinson", "Wiseman", "Wiwek", "Wuki", "Yellow Claw", "Z-Trip"]
artists_list.each do |artist_search|
artists = RSpotify::Artist.search(artist_search)
artist = artists.first
puts "working on #{artist.name}"
albums = artist.albums
albums.each do |album|
tracks_str = album.tracks.map { |track| track.uri }.join(",")
puts `curl -X POST "https://api.spotify.com/v1/users/1250709410/playlists/5DDB6x5dW32EQ9D5xWUW06/tracks?position=0&uris=#{tracks_str}"` # ... etc from https://developer.spotify.com/web-api/console/post-playlist-tracks/
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment