Crates.io | sortify |
lib.rs | sortify |
version | 1.0.3 |
source | src |
created_at | 2024-08-08 00:14:40.056748 |
updated_at | 2024-10-12 09:48:10.108269 |
description | A command line application to organize Spotify playlists |
homepage | https://github.com/franciscunha/sortify/tree/main |
repository | https://github.com/franciscunha/sortify/tree/main |
max_upload_size | |
id | 1328917 |
size | 249,878 |
A command line application to organize Spotify playlists.
Using Sortify, you can choose a playlist as the source playlist, and then have the option to sort each track in it. When sorting, you choose destination playlists to add that track to. When sorted, tracks are added to the other playlists, removed from the source, and added to your liked songs.
This is mostly a personal project to help in the very specific way I use Spotify:
So if you'd like to adhere to this Spoti-flow, this app should help out!
On first usage, the app should redirect you to log into Spotify. If that doesn't happen, follow the link shown. After logging in, paste the URL Spotify redirected you to into the app, and you should be logged in. Subsequent usages shouldn't need the same process.
After the initial log in, the app should be self-explanatory.
Sortify uses rodio to play audio, so it shares its dependencies on Linux.
[Install the]
libasound2-dev
package on Debian and Ubuntu distributions andalsa-lib-devel
on Fedora.
Rodio has an issue that discusses this further.
You must have Rust and Cargo installed.
# Install binary from crates.io
cargo install sortify
# Run the application
sortify
# (if this doesn't work, your shell might not know to look for the binary in ~/.cargo/bin/)
You must have Rust and Cargo installed.
# Clone the repository
git clone https://github.com/franciscunha/sortify
# Navigate to the project directory
cd sortify
# Build the project
cargo build --release
# Run the application
./target/release/sortify
Will be added in the future.
I wrote this over a week to learn the basics of Rust. There are likely many improvements to be made to the codebase, but since it's just a personal project I'm not setting up a robust contributing system. Let me know if you'd like to contribute to it and we can set something up!