https://github.com/verekia/spotify-export
https://github.com/verekia/spotify-export
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/verekia/spotify-export
- Owner: verekia
- License: mit
- Created: 2020-09-18T23:04:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-31T22:54:52.000Z (almost 5 years ago)
- Last Synced: 2025-03-18T14:07:01.796Z (7 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spotify Playlist Export
## Setup
Create a **.env** file containing:
```env
SPOTIFY_CLIENT_ID='YOUR_ID'
SPOTIFY_CLIENT_SECRET='YOUR_SECRET'
```
You need to create a Spotify app to get those.Create a **spotify-export.config.json** file containing your playlist names and the export file destinations:
```json
{
"playlists": [
["1234567890", "data/my-playlist.json"]
]
}
```Run:
```
npx spotify-export
```Only works on public playlists.