All Projects → watsonbox → Exportify

watsonbox / Exportify

Licence: mit
Export/Backup Spotify playlists using the Web API

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
SCSS
7915 projects
HTML
75241 projects

Projects that are alternatives of or similar to Exportify

remixr
Discover new music based on the Spotify playlists you know and love!
Stars: ✭ 37 (-97.7%)
Mutual labels:  playlists, spotify, spotify-api, spotify-web-api
spotify-release-list
📅 Display list of Spotify releases from artists you follow
Stars: ✭ 142 (-91.19%)
Mutual labels:  spotify, spotify-api, spotify-web-api
spotipy2
The next generation Spotify Web API wrapper for Python 3.7+
Stars: ✭ 25 (-98.45%)
Mutual labels:  spotify, spotify-api, spotify-web-api
laravel-spotify
Laravel-Spotify is a simple wrapper around the Spotify Web API that makes working with its endpoints a breeze!
Stars: ✭ 141 (-91.25%)
Mutual labels:  spotify, spotify-api, spotify-web-api
spotify-vibe-check
Spotify Vibe Checker Web App to vibe check your Spotify Playlists! (currently broken due to CORS)
Stars: ✭ 24 (-98.51%)
Mutual labels:  spotify, spotify-api, spotify-web-api
SpotMusicGen
A Program that creates a Spotify playlist from a YouTube Playlist
Stars: ✭ 47 (-97.08%)
Mutual labels:  spotify, spotify-api, spotify-web-api
SpotifyWebApi
A .net core wrapper for the Spotify Web API
Stars: ✭ 19 (-98.82%)
Mutual labels:  spotify, spotify-api, spotify-web-api
spotify-true-random
🔀 An application for unbiased truly random playlist and library shuffling with Spotify.
Stars: ✭ 51 (-96.83%)
Mutual labels:  spotify, spotify-api, spotify-web-api
react-redux-spotify
React + Redux + Spotify web api boilerplate project
Stars: ✭ 14 (-99.13%)
Mutual labels:  spotify, spotify-api, spotify-web-api
Smd
Spotify Music Downloader
Stars: ✭ 822 (-48.98%)
Mutual labels:  spotify-api, spotify
Alfred Spotify Mini Player
🎵🎩 Alfred workflow to control your Spotify library at your fingertips
Stars: ✭ 823 (-48.91%)
Mutual labels:  spotify-api, spotify
Exportify
Export Spotify playlists using the Web API. Analyze them in the Jupyter notebook.
Stars: ✭ 80 (-95.03%)
Mutual labels:  spotify-api, spotify
Spotify Web Api Kotlin
Spotify Web API wrapper for Kotlin/JVM, Kotlin/Android, Kotlin/JS, and Kotlin/Native. Includes a Spotify Web Playback SDK wrapper for Kotlin/JS, and a spotify-auth wrapper for Kotlin/Android
Stars: ✭ 86 (-94.66%)
Mutual labels:  spotify-api, spotify
Spotify Downloader
Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found).
Stars: ✭ 6,957 (+331.84%)
Mutual labels:  spotify, playlists
Spotifyapi Net
🔉 A Client for the Spotify Web API, written in C#/.NET
Stars: ✭ 887 (-44.94%)
Mutual labels:  spotify-api, spotify
Pyspotify
Python bindings for libspotify
Stars: ✭ 502 (-68.84%)
Mutual labels:  spotify-api, spotify
Spotify Bot
Spotify Messenger Bot
Stars: ✭ 12 (-99.26%)
Mutual labels:  spotify-api, spotify
Spotty Features
Show trends about your music listening habits over time. Create playlists from a given seed and specified audio features.
Stars: ✭ 20 (-98.76%)
Mutual labels:  spotify-api, spotify
Vue Spotify
Spotify client built with vue.js / vuex
Stars: ✭ 407 (-74.74%)
Mutual labels:  spotify-api, spotify
Listentogether
Grab some friends, connect your Spotify account, and listen to music in sync with each other.
Stars: ✭ 19 (-98.82%)
Mutual labels:  spotify-api, spotify

Build Status

Export your Spotify playlists to CSV by clicking on the link below:

https://watsonbox.github.io/exportify/

As many users have noted, there is no way to export/archive/backup playlists from the Spotify client for safekeeping. This application provides a simple interface for doing that using the Spotify Web API.

No data will be saved - the entire application runs in the browser.

Usage

  1. Fire up the app
  2. Click 'Get Started'
  3. Grant Exportify read-only access to your playlists
  4. Click the 'Export' button to export a playlist

Click 'Export All' to save a zip file containing a CSV file for each playlist in your account. This may take a while when many playlists exist and/or they are large.

Re-importing Playlists

Once playlists are saved, it's also pretty straightforward to re-import them into Spotify. Open up the CSV file in Excel, for example, select and copy the spotify:track:xxx URIs, then simply create a playlist in Spotify and paste them in.

Export Format

Track data is exported in CSV format with the following fields from the Spotify track object:

  • Track URI
  • Track Name
  • Artist URI(s)
  • Artist Name(s)
  • Album URI
  • Album Name
  • Album Artist URI(s)
  • Album Artist Name(s)
  • Album Release Date
  • Album Image URL (typically 640x640px jpeg)
  • Disc Number
  • Track Number
  • Track Duration (ms)
  • Track Preview URL (mp3)
  • Explicit?
  • Popularity
  • Added By
  • Added At

By clicking on the cog, additional data can be exported.

By selecting "Include artists data", the following fields will be added from the Spotify artist object:

  • Artist Genres

And by selecting "Include audio features data", the following fields will be added from the Spotify audio features object:

  • Danceability
  • Energy
  • Key
  • Loudness
  • Mode
  • Speechiness
  • Acousticness
  • Instrumentalness
  • Liveness
  • Valence
  • Tempo
  • Time Signature

Additionally, by selecting "Include album data", the following fields will be added from the Spotify album object (full)

  • Album Genres
  • Label
  • Copyrights

Note that the more data being exported, the longer the export will take.

Playlist Search

If you're searching for a specific playlist to export, you can use the search facility to find it quickly by name:

Please be aware that if you have a very large number of playlists, there may be a small delay before the first search results appear since the Spotify API itself doesn't allow for searching directly, so all playlists are retrieved first.

Searching is case-insensitive.

Development

This project was bootstrapped with Create React App.

In the project directory, first run yarn install to set up dependencies, then you can run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

yarn test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

yarn build

Builds the app for production to the build folder.

Stack

In addition to Create React App, the application is built using the following tools/libraries:

Notes

  • According to Spotify's documentation:

    Folders are not returned through the Web API at the moment, nor can be created using it".

    Unfortunately that's just how it is.

  • I've gone to some lengths to try to eliminate errors resulting from excessively high usage of the Spotify API. Nonetheless, exporting data in bulk is a fairly request-intensive process, so please do try to use this tool responsibly. If you do require more throughput, please consider creating your own Spotify application which you can use with Exportify directly.

  • Disclaimer: It should be clear, but this project is not affiliated with Spotify in any way. It's just an app using their API like any other, with a cheeky name and logo 😇.

  • In case you don't see the playlists you were expecting to see and realize you've accidentally deleted them, it's actually possible to recover them.

Error Monitoring

Error monitoring provided by Bugsnag.

Contributing

  1. Fork it ( https://github.com/watsonbox/exportify/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].