No description
Find a file
2024-04-27 13:05:36 +02:00
.github/workflows Create dotnet.yml 2024-04-26 16:13:02 +02:00
.gitignore Basic spotify authentication class with async/await 2024-04-26 14:58:55 +02:00
Program.cs Rewrite to use different auth method with longer lasting tokens 2024-04-27 13:05:36 +02:00
readme.md Add extra setup and how it works docs 2024-04-26 16:27:39 +02:00
SpotifyAuth.cs Rewrite to use different auth method with longer lasting tokens 2024-04-27 13:05:36 +02:00
SpotifyAutoLike.csproj Make dotnet build single exe 2024-04-26 16:17:55 +02:00
SpotifyAutoLike.sln Basic spotify authentication class with async/await 2024-04-26 14:58:55 +02:00

SpotifyAutoLike

This is a simple program that automatically likes fully played songs on Spotify.

I made this primarily for cycling, as I skip songs I don't like, and if I fully play a song, it means I like it.

How to use

  1. Download the latest exe from the releases page
  2. Run the exe
  3. Complete the authorization flow

How it works

The program checks every second for current track progress. When the track switches, it checks if the previous track was fully played (> 95% progress). If it was, it likes the track.

How to build

dotnet publish -c Release -r win-x64