Tsjippy
Tsjippy
I have the same problem. I have a png image and the base64 string of it. This is what I tried and is not working: ``` sg.set_options(icon=base64.b64encode(open("D:/library/pictures/logo.png", 'rb').read())) sg.set_options(icon=base64.b64encode(open(r'D:/library/pictures/logo.png', 'rb').read()))...
> I'm a little confused by `base64` being an argument. It appears that in the example it's the package named `base64` that was attempted to be passed in. > >...
Same issue here!
can you try I think I fiex the error
That’s how I did it as well. how do you reload it? I store the memberships in the db and then compare. Is there an easier way
I would like this too!
I would like to have this. Any idea of the timeframe of implementation?
So can we add the spotify controller again?
This is how you get spotify. ``` import spotipy from spotipy.oauth2 import SpotifyOAuth clientid = 'SOME ID' clientsecret = 'SOME SECRET' scope = "app-remote-control,playlist-modify-private,playlist-read-private,user-library-read,user-modify-playback-state,user-read-currently-playing,user-read-playback-position,user-read-playback-state" oauth=SpotifyOAuth(scope=scope,client_id=clientid,client_secret=clientsecret,redirect_uri='http://localhost:9999',open_browser=False) oauth.get_access_token()['access_token'] ``` But apart from...
I have no plans nor time for this, but feel free to give it a go yourself!