Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 659 Bytes

README.md

File metadata and controls

26 lines (15 loc) · 659 Bytes

SpotifyAdBypass

  • How to use SpotifyAdBypass

  • $ pip install spotifybypassv2
      pip install pywin32
    

    if git clone, use

    $ pip install pywin32
    

    Usage

    Make sure to keep Spotify closed as the program will auto open Spotify application.

    Note : Use the Spotify .exe installer do not use the Spotify's microsoft application

    from spotifyadbypassv2 import spotifyBypassv2 as spfy
    
    def printSong(artistTitle):
        print(artistTitle["artist"].encode('utf-8'), '-', artistTitle["title"].encode('utf-8'), )
    
    #instantiate with a printSong callback
    
    byPass = spfy.SpotifyBypass(printSong)