This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Requirements: | |
# pip install spotipy | |
# Create a Spotify Developer App: | |
# https://developer.spotify.com/dashboard/ | |
# Export these environment variables first: | |
# export SPOTIPY_CLIENT_ID="your_client_id" | |
# export SPOTIPY_CLIENT_SECRET="your_client_secret" | |
# export SPOTIPY_REDIRECT_URI="http://127.0.0.1:8888/callback" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
├── books | |
│ ├── handlers.go | |
│ └── models.go | |
├── config | |
│ └── db.go | |
└── main.go |