Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nelsongillo/mergify
tool to merge playlists in spotify
https://github.com/nelsongillo/mergify
rust-lang spotify spotify-playlist
Last synced: 5 days ago
JSON representation
tool to merge playlists in spotify
- Host: GitHub
- URL: https://github.com/nelsongillo/mergify
- Owner: nelsongillo
- Created: 2019-08-09T13:06:32.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-13T19:33:43.000Z (over 5 years ago)
- Last Synced: 2024-11-20T16:50:31.855Z (about 2 months ago)
- Topics: rust-lang, spotify, spotify-playlist
- Language: Rust
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mergify
Command line tool to merge mutliple (up to ten) Spotify playlists. You can choose between three merge pattern:
* Appending the tracks
* Alternating between each playlist
* Random merge### Build
To correctly use this crate you need a spotify developer account and create a new project. Then enter your `client-id` and `secret-client-id` in `main.rs`. Otherwise the program is not going to work.\
Example:
```Rust
const CLIENT_ID: &'static str = "fbf4964d9dfd419d939068372f4ee";
const CLIENT_SECRET: &'static str = "fa297e5629724ffb80da296b18214";
```To build, you need Rust v1.37+
```bash
cargo build --release
```