#spotify #fetch #top #artists #tool #profile #track

app spotifetch

A simple and beautiful fetch tool for spotify, now rusty :)

4 releases

0.1.3 Feb 14, 2024
0.1.2 Feb 13, 2024
0.1.1 Feb 13, 2024
0.1.0 Feb 11, 2024

#168 in Audio

Download history 74/week @ 2024-02-09 28/week @ 2024-02-16 6/week @ 2024-02-23 1/week @ 2024-03-08 1/week @ 2024-03-15 89/week @ 2024-03-22 36/week @ 2024-03-29

127 downloads per month

MIT license

27KB
357 lines

━━━━━━ ❖ ━━━━━━



❖ Information

SpotiFetch.rs is a simple fetch tool to display info about your Spotify profile using the spotify API. It's a rewrite of the original spotifetch

spotifetch gif

❖ Requirements

Register an app on the Spotify developer dashboard here

Edit the app settings and set http://127.0.0.1:9090 as the redirect URI

Take a note of your Client ID and Client Secret

Put the following in your .bashrc or .zshrc or the equivalent for your shell

export RSPOTIFY_CLIENT_ID='insert-your-spotify-client-id-here'
export RSPOTIFY_CLIENT_SECRET='insert-your-spotify-client-secret-here'
export RSPOTIFY_REDIRECT_URI='http://127.0.0.1:9090'

❖ Installation

Shell

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/dotzenith/SpotiFetch.rs/releases/latest/download/spotifetch-installer.sh | sh

Brew

brew tap dotzenith/tap
brew install spotifetch

Powershell

irm https://github.com/dotzenith/SpotiFetch.rs/releases/latest/download/spotifetch-installer.ps1 | iex

Cargo

cargo install spotifetch

Binaries

Pre-Compiled binaries for linux, mac, and windows are available in Releases

Source

  • First, install rust
git clone https://github.com/dotzenith/SpotiFetch.rs.git
cd SpotiFetch.rs
cargo build --release
./target/release/spotifetch

❖ Usage

If the instructions in the Requirements section are followed properly, SpotiFetch will ask you to log in and give permissions to fetch stats the first time it's used. Login is not required after the first use.

Usage: spotifetch [OPTIONS] <COMMAND>

Commands:
  profile      Fetch general information about user profile
  top-tracks   Fetch the top tracks for a given term
  top-artists  Fetch the top artists for a given term
  help         Print this message or the help of the given subcommand(s)

Options:
  -c, --colorscheme <STR>  See the readme for available colorschemes [default: "catppuccin mocha"]
  -t, --term <STR>         The timeline for the top tracks/artists; short, mid, long [default: mid]
  -a, --art                Use cover art for album or artist to generate a colorscheme
  -r, --random             Use a random color as the outline
  -h, --help               Print help
  -V, --version            Print version

SpotiFetch can be used like any other fetch tool

$ spotifetch profile      # fetches profile stats
$ spotifetch top-artists  # fetches your top five artists
$ spotifetch top-tracks   # fetches your top five songs

The top artists and tracks depends on the time-frame. By default, SpotiFetch fetches your top artists in the short term, but mid term, and long term are also available using the --term/-t option.

$ spotifetch top-artists -t short # fetches top artists in the short term
$ spotifetch top-artists -t mid   # fetches top artists in the mid term
$ spotifetch top-artists -t long  # fetches top artists in the long term

SpotiFetch supports --random/-r option to print the spotify ascii art with a random colored outline instead of the usual green

$ spotifetch profile                # prints green spotify art
$ spotifetch profile --random       # prints spotify art with random color

SpotiFetch can be used with a variety of different colorschemes.

SpotiFetch uses catppuccin mocha as it's default color scheme, but a different one can be specified using the --colorscheme/c option

For example:

$ spotifetch profile                # uses catppuccin mocha
$ spotifetch profile -c nord        # uses nord

The list of all available colorschemes can be found here

SpotiFetch also supports dynamically generated colorschemes using the --art/a option

$ spotifetch profile --art      # Generates colorscheme based on the cover art of the recently played song
$ spotifetch top-artists --art  # Generates colorscheme based on the profile image of the top artist
$ spotifetch top-tracks --art   # Generates colorscheme based on the cover art of the top track 

❖ About SpotiFetch.rs

SpotiFetch.rs is the direct result of browsing too many unix subreddits and general interest in cli tools. This is a rewrite of the original spotifetch because I don't feel like maintaining old python projects.


❖ What's New?

0.1.3 - Move away from openssl


Dependencies

~38–54MB
~778K SLoC